In [ ]:
import datetime as dt
import pandas as pd
import yfinance as yf
import numpy as np
import warnings

from bivariate_engle_granger import BivariateEngleGranger
from vector_autoregressive_model import VectorAutoRegressiveModel

warnings.filterwarnings('ignore')
In [2]:
""" 
Toggle batch procedure 

Running the batch procedure for the first time requires run_locally=True for run_batch_procedure() in Notebook Reference 2.0

"""

run_batch = True
In [3]:
""" Notebook Reference 1.0 """

# Create Bivariate Engle Granger class 
EG = BivariateEngleGranger()

# Initialise first pair based on economic reasoning for cointegration to exist (Visa on Mastercard)
ticker_a = "V"
ticker_b = "MA"
start_date = "2020-01-01"
end_date = "2024-11-29"
benchmark = "^SPX"

EG.initialise_single_procedure(ticker_a, ticker_b, start_date, end_date, benchmark=benchmark)

# Get close prices from yfinance
EG.get_close_prices_timeseries()

# Normalise timeseries
EG.normalise_bivariate_timeseries()
In [4]:
""" Notebook Reference 1.1 """

# Naive regression of timeseries
EG.regress_timeseries(include_constant=True)
Out[4]:
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist)
0 V Constant 0.161250 0.005852 27.554876 0.0
1 V MA 0.840386 0.004655 180.553333 0.0
In [5]:
""" Notebook Reference 1.2 """

# Plots
EG.plot_timeseries()
No description has been provided for this image
In [6]:
""" Notebook Reference 1.3 """

# Check for stationarity of residual using Cointegrated Augmented Dickey-Fuller test
EG.is_residual_stationary(cadf_include_constant=True)
Out[6]:
Regressand Regressor t-statistic Significance Level Critical Value Is Stationary
0 ΔResidual (Lag 1, Residual) -4.274682 1% -3.905337 True
1 ΔResidual (Lag 1, Residual) -4.274682 5% -3.341086 True
2 ΔResidual (Lag 1, Residual) -4.274682 10% -3.047889 True
In [7]:
""" Notebook Reference 1.4 """

# Fit error correction model and confirm significance of reversion speed term
EG.check_error_correction_model_mean_reversion()
Out[7]:
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist) Significant at 5%
0 ΔV ΔMA 0.795029 0.011609 68.481590 0.000000 True
1 ΔV (Lag 1, Residuals) -0.033085 0.007332 -4.512337 0.000007 True
In [8]:
""" Notebook Reference 1.5 """

# Check "wrong way round" residual 
EG.check_error_correction_model_mean_reversion(reverse_regression=True)
Out[8]:
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist) Significant at 5%
0 ΔMA ΔV 0.995963 0.014544 68.48159 0.000000 True
1 ΔMA (Lag 1, Residuals) 0.036322 0.008209 4.42450 0.000011 True
In [9]:
""" Notebook Reference 1.6 """

# Re-estimate the other way round (MA on V) and follow same procedure
EG_reverse = BivariateEngleGranger()

EG_reverse.initialise_single_procedure(ticker_b, ticker_a, start_date, end_date, benchmark=benchmark)

EG_reverse.get_close_prices_timeseries()

EG_reverse.normalise_bivariate_timeseries()

print("Price regression summary")
display(EG_reverse.regress_timeseries(include_constant=True))

print("\n\nTimeseries plots")
EG_reverse.plot_timeseries()

print("\n\nCointegrated Augmented Dickey-Fuller test")
display(EG_reverse.is_residual_stationary(cadf_include_constant=True))

print("\n\nError Correction Model fitting")
display(EG_reverse.check_error_correction_model_mean_reversion())

print("\n\nError Correction Model reverse fitting")
display(EG_reverse.check_error_correction_model_mean_reversion(reverse_regression=True))

print("\n\nCADF stationarity test has a stronger t-statistic for MA on V (-4.305842 vs -4.274683)")
Price regression summary
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist)
0 MA Constant -0.139631 0.007724 -18.076519 0.0
1 MA V 1.146530 0.006350 180.553333 0.0

Timeseries plots
No description has been provided for this image

Cointegrated Augmented Dickey-Fuller test
Regressand Regressor t-statistic Significance Level Critical Value Is Stationary
0 ΔResidual (Lag 1, Residual) -4.305841 1% -3.905337 True
1 ΔResidual (Lag 1, Residual) -4.305841 5% -3.341086 True
2 ΔResidual (Lag 1, Residual) -4.305841 10% -3.047889 True

Error Correction Model fitting
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist) Significant at 5%
0 ΔMA ΔV 0.995669 0.014539 68.480862 0.000000 True
1 ΔMA (Lag 1, Residuals) -0.031325 0.007024 -4.459395 0.000009 True

Error Correction Model reverse fitting
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist) Significant at 5%
0 ΔV ΔMA 0.795260 0.011613 68.480862 0.000000 True
1 ΔV (Lag 1, Residuals) 0.028031 0.006278 4.465156 0.000009 True

CADF stationarity test has a stronger t-statistic for MA on V (-4.305842 vs -4.274683)
In [10]:
""" Notebook Reference 1.7 """

# Fit residual to Ornstein Uhlenbeck stochastic differential equation
EG_reverse.fit_to_ornstein_uhlenbeck_sde()
Theta: 8.6090

Half-life in years: 0.0805 years
Half-life in working days: 20.2897 days

Equilibrium level μ_e: -0.0001038765575221601
Equilibirum level μ_e can be compared to the AR(1) fitting intercept: -3.4887531918119824e-06

Sum Squared Errors: 0.12443626173446265

Annualised Variance: 0.0004937946894224708
Diffusion in Ornstein-Uhlenbeck SDE (sigma_ou): 0.35879760722510784
Diffusion in equilibrium to dictate entry trade signals (sigma_eq): 0.08646878008234421

Diffusion of sample residuals (note the difference): 0.010037833763695287
In [11]:
""" Notebook Reference 1.8 """

# Create backtest for z=0.7
backtest = EG_reverse.create_backtest_for_z(0.7)

# Plot residual and trading bounds
EG_reverse.plot_backtest(backtest, trade_markers=False)
No description has been provided for this image
In [12]:
""" Notebook Reference 1.9 """

# Plot residual and trading bounds
EG_reverse.plot_backtest(backtest, trade_markers=True)
No description has been provided for this image
In [13]:
""" Notebook Reference 1.10 """

# Find optimal Z
z_table, df_trades = EG_reverse.optimise_trading_strategy()

z_table
Maximum return occurs with Z=0.3
Out[13]:
Z Total Trades Total Return
0 0.30 27 1.510598
1 0.35 23 1.464461
2 0.40 20 1.313973
3 0.45 18 1.210178
4 0.50 15 1.094540
5 0.55 13 0.887960
6 0.60 12 0.850667
7 0.65 10 0.689996
8 0.70 9 0.664534
9 0.75 8 0.636523
10 0.80 6 0.503287
11 0.85 5 0.420749
12 0.90 4 0.368845
13 0.95 3 0.276968
14 1.00 3 0.276968
15 1.05 2 0.183244
16 1.10 2 0.183244
17 1.15 2 0.204228
18 1.20 1 0.089929
19 1.25 1 0.089929
20 1.30 1 0.089929
21 1.35 1 0.089929
22 1.40 1 0.089929
In [14]:
""" Notebook Reference 1.11 """

# Plot trades realised from strategy with optimal Z
EG_reverse.plot_backtest(df_trades, trade_markers=True)
No description has been provided for this image
In [15]:
""" Notebook Reference 1.12 """

# Initialise VAR class
VAR = VectorAutoRegressiveModel()

# Get dataframe of ticker close prices
close_pxs = {}
var_tickers = ["^SPX", "MA", "V"]

for ticker in var_tickers:
    close_pxs[ticker] = (yf.Ticker(ticker)
                            .history(start=start_date, end=end_date)
                            .Close)

# Merge into one dataframe
df_var = pd.DataFrame(close_pxs)
df_var.columns = var_tickers

df_var = (np.log(df_var)
          .diff()
          .dropna())

# Fit to VAR model
VAR.fit(df_var, lags=1)

# Retrieve VAR fitting summary
output_var = VAR.summary()

print("VAR(1) fitting summary")
output_var
VAR(1) fitting summary
Out[15]:
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist)
0 ^SPX Constant 0.000591 0.000379 1.559996 0.119018
1 ^SPX (Lag 1, ^SPX) -0.176497 0.046671 -3.781730 0.000163
2 ^SPX (Lag 1, MA) 0.143042 0.047971 2.981816 0.002922
3 ^SPX (Lag 1, V) -0.165601 0.052667 -3.144324 0.001705
4 MA Constant 0.000569 0.000554 1.028173 0.304070
5 MA (Lag 1, ^SPX) -0.157131 0.068212 -2.303552 0.021414
6 MA (Lag 1, MA) 0.165192 0.070113 2.356087 0.018625
7 MA (Lag 1, V) -0.195118 0.076975 -2.534817 0.011374
8 V Constant 0.000535 0.000495 1.080189 0.280270
9 V (Lag 1, ^SPX) -0.208923 0.061003 -3.424797 0.000636
10 V (Lag 1, MA) 0.238125 0.062703 3.797688 0.000153
11 V (Lag 1, V) -0.245236 0.068840 -3.562419 0.000382
In [16]:
""" Notebook Reference 1.13 """

# Retrieve Criterion values for lag selection
VAR.get_optimal_lag(df_var, 10)
Out[16]:
AIC BIC
1 -10057.958206 -9996.532291
2 -10046.911620 -9939.416269
3 -10031.025787 -9877.460999
4 -10025.882087 -9826.247863
5 -10016.613911 -9770.910251
6 -10020.954070 -9729.180973
7 -10022.952978 -9685.110445
8 -10018.282920 -9634.370952
9 -10010.387120 -9580.405715
10 -9997.144244 -9521.093403
Optimal Lag 1.000000 1.000000
In [17]:
""" Notebook Reference 2.0 """

# Run the S&P 500 batch procedure 
# If run_locally=False then a large request is made to yfinance and then stored in a database
#   The yfinance batch call and data dump into the database takes around 3 minutes
# If run_locally=True then no large calls to yfinance are made and data is extracted from the database
# The batch stationarity analysis takes around 5 minutes
# Total run will therefore be around 8 minutes if run_locally=False
# Total run will be shorter if run_locally=True
if run_batch:
    EG_batch = BivariateEngleGranger()
    df_batch = EG_batch.run_batch_procedure(run_locally=True, corr_threshold=0.9) 
Pair: MMM-HAS, Correlation: 0.9056491257543222
Pair: MMM-IFF, Correlation: 0.9482645708907532
Pair: MMM-LUV, Correlation: 0.9298984564644212
Pair: MMM-VLTO, Correlation: 0.921893697907051
Pair: AOS-ACN, Correlation: 0.92628997805821
Pair: AOS-LNT, Correlation: 0.9225719939492791
Pair: AOS-ALL, Correlation: 0.9411753892894854
Pair: AOS-GOOGL, Correlation: 0.923323703051507
Pair: AOS-GOOG, Correlation: 0.9206896258228965
Pair: AOS-MO, Correlation: 0.9007096202826479
Pair: AOS-AEE, Correlation: 0.9050104458023119
Pair: AOS-AEP, Correlation: 0.9113208028432963
Pair: AOS-AME, Correlation: 0.9256761205223335
Pair: AOS-AMGN, Correlation: 0.9359673471327487
Pair: AOS-APH, Correlation: 0.920035230148881
Pair: AOS-ADI, Correlation: 0.9285154858492153
Pair: AOS-AON, Correlation: 0.9168801006029262
Pair: AOS-AIZ, Correlation: 0.9352283353554127
Pair: AOS-ATO, Correlation: 0.9328981427896281
Pair: AOS-ADP, Correlation: 0.92112392364237
Pair: AOS-AVB, Correlation: 0.905984385114098
Pair: AOS-AVY, Correlation: 0.9398970055938725
Pair: AOS-BAC, Correlation: 0.9164195364290395
Pair: AOS-BDX, Correlation: 0.9178702330822784
Pair: AOS-BLK, Correlation: 0.9418175984307315
Pair: AOS-BK, Correlation: 0.9338261919563335
Pair: AOS-BKNG, Correlation: 0.9447794675835548
Pair: AOS-BSX, Correlation: 0.9265642732059889
Pair: AOS-BR, Correlation: 0.9448437805945055
Pair: AOS-COF, Correlation: 0.9070650233512474
Pair: AOS-CARR, Correlation: 0.9006229586421207
Pair: AOS-CBOE, Correlation: 0.9467113227045638
Pair: AOS-CBRE, Correlation: 0.9031085283691075
Pair: AOS-CDW, Correlation: 0.9012490236724662
Pair: AOS-CE, Correlation: 0.9419131581871801
Pair: AOS-CNC, Correlation: 0.9113835426892585
Pair: AOS-SCHW, Correlation: 0.9263247367803394
Pair: AOS-CB, Correlation: 0.9394656624016763
Pair: AOS-CHD, Correlation: 0.9256970190799377
Pair: AOS-CI, Correlation: 0.9443711167730068
Pair: AOS-CINF, Correlation: 0.9299703870122256
Pair: AOS-CSCO, Correlation: 0.918676023972286
Pair: AOS-CME, Correlation: 0.9289391367110531
Pair: AOS-CMS, Correlation: 0.9196415198180871
Pair: AOS-KO, Correlation: 0.9183595018269388
Pair: AOS-CTSH, Correlation: 0.9126189447463166
Pair: AOS-CL, Correlation: 0.9365128120704038
Pair: AOS-CMCSA, Correlation: 0.9084027291767975
Pair: AOS-ED, Correlation: 0.9238073651890336
Pair: AOS-STZ, Correlation: 0.9672728660293236
Pair: AOS-COO, Correlation: 0.9305700152054582
Pair: AOS-GLW, Correlation: 0.9191375087165436
Pair: AOS-CSX, Correlation: 0.9248811656327867
Pair: AOS-CMI, Correlation: 0.9057667011468433
Pair: AOS-DRI, Correlation: 0.9349711700421046
Pair: AOS-DLR, Correlation: 0.9205633763770004
Pair: AOS-DFS, Correlation: 0.9230135096129172
Pair: AOS-DPZ, Correlation: 0.9282375417981537
Pair: AOS-DOV, Correlation: 0.9127606987814778
Pair: AOS-DTE, Correlation: 0.9352485539227317
Pair: AOS-DUK, Correlation: 0.9311464615542999
Pair: AOS-EMN, Correlation: 0.9076188557033754
Pair: AOS-EBAY, Correlation: 0.905703003895891
Pair: AOS-ECL, Correlation: 0.9108708001187478
Pair: AOS-EIX, Correlation: 0.9120734911019819
Pair: AOS-EA, Correlation: 0.9473741352957663
Pair: AOS-ELV, Correlation: 0.9136575828838115
Pair: AOS-EMR, Correlation: 0.9066258178197207
Pair: AOS-EFX, Correlation: 0.9482320703514223
Pair: AOS-EQIX, Correlation: 0.9310884125099093
Pair: AOS-EG, Correlation: 0.9450680667507554
Pair: AOS-EVRG, Correlation: 0.9106991481454361
Pair: AOS-EXPD, Correlation: 0.9085659893973503
Pair: AOS-EXR, Correlation: 0.9109391470022076
Pair: AOS-FDS, Correlation: 0.9057811076437758
Pair: AOS-FDX, Correlation: 0.9407125530545103
Pair: AOS-FITB, Correlation: 0.9203161330379367
Pair: AOS-FI, Correlation: 0.9245794554939186
Pair: AOS-GD, Correlation: 0.9573286931716217
Pair: AOS-GL, Correlation: 0.9264337180571809
Pair: AOS-GS, Correlation: 0.9000483436203258
Pair: AOS-HIG, Correlation: 0.9228787078051939
Pair: AOS-HCA, Correlation: 0.9026552795553888
Pair: AOS-HOLX, Correlation: 0.9222653963936616
Pair: AOS-HD, Correlation: 0.9449236385812638
Pair: AOS-HON, Correlation: 0.9449560929219475
Pair: AOS-HBAN, Correlation: 0.9297981106346977
Pair: AOS-HII, Correlation: 0.9213998974060218
Pair: AOS-IEX, Correlation: 0.9353404168275558
Pair: AOS-ITW, Correlation: 0.9583815636434009
Pair: AOS-ICE, Correlation: 0.9427542029658976
Pair: AOS-IPG, Correlation: 0.9289605414070584
Pair: AOS-INTU, Correlation: 0.9026047300383315
Pair: AOS-JBHT, Correlation: 0.9362856851435082
Pair: AOS-JKHY, Correlation: 0.9073779651220418
Pair: AOS-JNJ, Correlation: 0.9407632287132962
Pair: AOS-JCI, Correlation: 0.9054566894718913
Pair: AOS-JPM, Correlation: 0.9398189058114054
Pair: AOS-KMB, Correlation: 0.9066149185040354
Pair: AOS-LHX, Correlation: 0.9076499589622324
Pair: AOS-LH, Correlation: 0.9346028359776102
Pair: AOS-LII, Correlation: 0.9202613717070282
Pair: AOS-LYV, Correlation: 0.9092201924736959
Pair: AOS-LMT, Correlation: 0.9365198957682006
Pair: AOS-LOW, Correlation: 0.9223151643306433
Pair: AOS-LYB, Correlation: 0.9239506574924862
Pair: AOS-MAR, Correlation: 0.9442875247205375
Pair: AOS-MMC, Correlation: 0.9230932217119581
Pair: AOS-MLM, Correlation: 0.9350167625494623
Pair: AOS-MAS, Correlation: 0.9629326542695401
Pair: AOS-MA, Correlation: 0.9130213706798295
Pair: AOS-MCD, Correlation: 0.9217723033696746
Pair: AOS-MTD, Correlation: 0.9103761476147937
Pair: AOS-MGM, Correlation: 0.9343963926824552
Pair: AOS-MCHP, Correlation: 0.9413954905062412
Pair: AOS-MU, Correlation: 0.9078959911638066
Pair: AOS-MDLZ, Correlation: 0.9365797335410703
Pair: AOS-MNST, Correlation: 0.9471091287722543
Pair: AOS-MCO, Correlation: 0.923214687600273
Pair: AOS-MS, Correlation: 0.9029070890926093
Pair: AOS-NDAQ, Correlation: 0.9172070320914448
Pair: AOS-NI, Correlation: 0.9356924228563943
Pair: AOS-NDSN, Correlation: 0.936108435118629
Pair: AOS-NSC, Correlation: 0.9008576290954661
Pair: AOS-NOC, Correlation: 0.9369299127914344
Pair: AOS-NVR, Correlation: 0.9267360424741615
Pair: AOS-NXPI, Correlation: 0.9544935902998991
Pair: AOS-OMC, Correlation: 0.9050621768534097
Pair: AOS-OTIS, Correlation: 0.9269562222715634
Pair: AOS-PKG, Correlation: 0.9561226291645953
Pair: AOS-PAYX, Correlation: 0.9246007135491104
Pair: AOS-PEP, Correlation: 0.9264943489170386
Pair: AOS-PM, Correlation: 0.9128065325031486
Pair: AOS-PNC, Correlation: 0.9308960672942136
Pair: AOS-PPG, Correlation: 0.9175586198434424
Pair: AOS-PFG, Correlation: 0.9301542981151145
Pair: AOS-PRU, Correlation: 0.9380154350081917
Pair: AOS-PEG, Correlation: 0.9303547606447169
Pair: AOS-PTC, Correlation: 0.9305854322491552
Pair: AOS-PSA, Correlation: 0.918987335437212
Pair: AOS-DGX, Correlation: 0.9411195370190262
Pair: AOS-RJF, Correlation: 0.9177294430889921
Pair: AOS-RTX, Correlation: 0.9039862308407465
Pair: AOS-RF, Correlation: 0.9278302225494006
Pair: AOS-RSG, Correlation: 0.9067421479376968
Pair: AOS-ROK, Correlation: 0.938364166551561
Pair: AOS-ROL, Correlation: 0.9295893104495483
Pair: AOS-ROP, Correlation: 0.9394866034920651
Pair: AOS-ROST, Correlation: 0.9356851271499353
Pair: AOS-SPGI, Correlation: 0.9202524928275487
Pair: AOS-CRM, Correlation: 0.9091816122327206
Pair: AOS-SRE, Correlation: 0.9129495451803532
Pair: AOS-SHW, Correlation: 0.9318441177167387
Pair: AOS-SNA, Correlation: 0.9454257969018951
Pair: AOS-SBUX, Correlation: 0.9030779974756855
Pair: AOS-STE, Correlation: 0.9086579031523937
Pair: AOS-SYK, Correlation: 0.9443554620875009
Pair: AOS-SYY, Correlation: 0.921783302026933
Pair: AOS-TMUS, Correlation: 0.9081960580330847
Pair: AOS-TEL, Correlation: 0.9612564621941905
Pair: AOS-TXN, Correlation: 0.9302804349151863
Pair: AOS-TXT, Correlation: 0.9450798395408019
Pair: AOS-TJX, Correlation: 0.9205108710633829
Pair: AOS-TRV, Correlation: 0.9475600417266168
Pair: AOS-TYL, Correlation: 0.9240022715676854
Pair: AOS-ULTA, Correlation: 0.9212553895679496
Pair: AOS-UNP, Correlation: 0.9263644270029535
Pair: AOS-UNH, Correlation: 0.9137427092044009
Pair: AOS-VRSK, Correlation: 0.9118881697446607
Pair: AOS-V, Correlation: 0.9303490743321207
Pair: AOS-VMC, Correlation: 0.9612167384104574
Pair: AOS-WM, Correlation: 0.9219627795361296
Pair: AOS-WAT, Correlation: 0.9278319970373848
Pair: AOS-WY, Correlation: 0.9112929487967687
Pair: AOS-WTW, Correlation: 0.9252141627538059
Pair: AOS-XYL, Correlation: 0.935003783799956
Pair: AOS-YUM, Correlation: 0.9342371641480269
Pair: ABT-ACN, Correlation: 0.9766074949502905
Pair: ABT-ADBE, Correlation: 0.9684180482720389
Pair: ABT-AMD, Correlation: 0.9005312970593647
Pair: ABT-AES, Correlation: 0.9098418860620009
Pair: ABT-A, Correlation: 0.9739289493739464
Pair: ABT-APD, Correlation: 0.9740579749818068
Pair: ABT-AKAM, Correlation: 0.9275327237441089
Pair: ABT-ARE, Correlation: 0.9212856828652594
Pair: ABT-ALLE, Correlation: 0.9367858510885411
Pair: ABT-LNT, Correlation: 0.9606832346072952
Pair: ABT-ALL, Correlation: 0.9177638700057162
Pair: ABT-GOOGL, Correlation: 0.9412332406204202
Pair: ABT-GOOG, Correlation: 0.9410044970606243
Pair: ABT-AMZN, Correlation: 0.9629221411338527
Pair: ABT-AEE, Correlation: 0.9650094666679311
Pair: ABT-AEP, Correlation: 0.9422661060222997
Pair: ABT-AMT, Correlation: 0.9649830880073778
Pair: ABT-AWK, Correlation: 0.9790904957018268
Pair: ABT-AME, Correlation: 0.9552269430702842
Pair: ABT-AMGN, Correlation: 0.9292551265654883
Pair: ABT-APH, Correlation: 0.9007473527523461
Pair: ABT-ADI, Correlation: 0.9517984562213404
Pair: ABT-ANSS, Correlation: 0.9798475738930243
Pair: ABT-AON, Correlation: 0.9599300868269116
Pair: ABT-AAPL, Correlation: 0.9313145950870221
Pair: ABT-AIZ, Correlation: 0.9463102168415183
Pair: ABT-ATO, Correlation: 0.9194343554273366
Pair: ABT-ADSK, Correlation: 0.9694255154994269
Pair: ABT-ADP, Correlation: 0.9537984735353225
Pair: ABT-AVY, Correlation: 0.9651902946554078
Pair: ABT-BALL, Correlation: 0.9308802201983841
Pair: ABT-BAC, Correlation: 0.9303922501676013
Pair: ABT-BDX, Correlation: 0.9130845466837556
Pair: ABT-BBY, Correlation: 0.9474945459357094
Pair: ABT-TECH, Correlation: 0.9594047968871559
Pair: ABT-BLK, Correlation: 0.9603491154185521
Pair: ABT-BX, Correlation: 0.9082197090028497
Pair: ABT-BR, Correlation: 0.9592053486583759
Pair: ABT-BRO, Correlation: 0.9169163286784154
Pair: ABT-CHRW, Correlation: 0.9063569959540344
Pair: ABT-CPT, Correlation: 0.9394849226992046
Pair: ABT-CBRE, Correlation: 0.9428197638941621
Pair: ABT-CDW, Correlation: 0.9455639245371097
Pair: ABT-CE, Correlation: 0.9365519024049922
Pair: ABT-CNC, Correlation: 0.9271156866822592
Pair: ABT-CRL, Correlation: 0.9370757238290199
Pair: ABT-SCHW, Correlation: 0.9183890828083048
Pair: ABT-CHD, Correlation: 0.9720204836734868
Pair: ABT-CINF, Correlation: 0.9390187202327489
Pair: ABT-CSCO, Correlation: 0.9500325655692995
Pair: ABT-CME, Correlation: 0.9568355502213092
Pair: ABT-CMS, Correlation: 0.9522520837298898
Pair: ABT-KO, Correlation: 0.9410509566460159
Pair: ABT-CMCSA, Correlation: 0.9068025622379805
Pair: ABT-COO, Correlation: 0.9672279108044701
Pair: ABT-CPRT, Correlation: 0.9249941705293983
Pair: ABT-GLW, Correlation: 0.9220457516930115
Pair: ABT-CSGP, Correlation: 0.9757923098071857
Pair: ABT-CCI, Correlation: 0.9328463668219354
Pair: ABT-CSX, Correlation: 0.9783599812338828
Pair: ABT-CMI, Correlation: 0.9260665655015211
Pair: ABT-DHR, Correlation: 0.9794475786292349
Pair: ABT-DRI, Correlation: 0.9389871894457449
Pair: ABT-DE, Correlation: 0.9337453732300501
Pair: ABT-DXCM, Correlation: 0.943670468379351
Pair: ABT-DLR, Correlation: 0.9338620776295964
Pair: ABT-DFS, Correlation: 0.9060042588894517
Pair: ABT-DG, Correlation: 0.9104688660952251
Pair: ABT-DPZ, Correlation: 0.969554205779284
Pair: ABT-DOV, Correlation: 0.963559803208913
Pair: ABT-DTE, Correlation: 0.9513705805090767
Pair: ABT-DUK, Correlation: 0.9493572152203382
Pair: ABT-EBAY, Correlation: 0.9384465347933234
Pair: ABT-ECL, Correlation: 0.9327425542685948
Pair: ABT-EW, Correlation: 0.9637152630027603
Pair: ABT-ELV, Correlation: 0.9485593288312962
Pair: ABT-EMR, Correlation: 0.9206517667802655
Pair: ABT-ETR, Correlation: 0.9510483265683453
Pair: ABT-EFX, Correlation: 0.9425816684134575
Pair: ABT-EQIX, Correlation: 0.9699427290035125
Pair: ABT-EVRG, Correlation: 0.909733536373565
Pair: ABT-ES, Correlation: 0.9278470749405137
Pair: ABT-EXPD, Correlation: 0.9596032172196922
Pair: ABT-EXR, Correlation: 0.9543708661650304
Pair: ABT-FDS, Correlation: 0.9678135365683886
Pair: ABT-FAST, Correlation: 0.9359189612403712
Pair: ABT-FITB, Correlation: 0.9055944786964506
Pair: ABT-FI, Correlation: 0.9319702418804281
Pair: ABT-FTNT, Correlation: 0.9110363822508081
Pair: ABT-GRMN, Correlation: 0.9363317402641632
Pair: ABT-GEN, Correlation: 0.9284386012487232
Pair: ABT-GL, Correlation: 0.9021963058487293
Pair: ABT-HCA, Correlation: 0.9083146715012156
Pair: ABT-HSY, Correlation: 0.9235357072298204
Pair: ABT-HOLX, Correlation: 0.9654953676378034
Pair: ABT-HD, Correlation: 0.9771829724335339
Pair: ABT-HON, Correlation: 0.9701045949970721
Pair: ABT-HUM, Correlation: 0.9339343985359281
Pair: ABT-IEX, Correlation: 0.9773930728260926
Pair: ABT-IDXX, Correlation: 0.972248105315595
Pair: ABT-ITW, Correlation: 0.9627846185291978
Pair: ABT-PODD, Correlation: 0.9559377734372084
Pair: ABT-ICE, Correlation: 0.9678766312932472
Pair: ABT-IPG, Correlation: 0.9050381752752357
Pair: ABT-INTU, Correlation: 0.9535023841573049
Pair: ABT-ISRG, Correlation: 0.9344273969927706
Pair: ABT-INVH, Correlation: 0.9136505985952521
Pair: ABT-IQV, Correlation: 0.9773053036025148
Pair: ABT-JBHT, Correlation: 0.9524845041587163
Pair: ABT-JKHY, Correlation: 0.9507099205773848
Pair: ABT-J, Correlation: 0.9500863414575228
Pair: ABT-JNJ, Correlation: 0.9549091276238149
Pair: ABT-JCI, Correlation: 0.9081007742120746
Pair: ABT-JPM, Correlation: 0.9219942284455827
Pair: ABT-KDP, Correlation: 0.9774887373179725
Pair: ABT-KEYS, Correlation: 0.9691400860762337
Pair: ABT-LHX, Correlation: 0.9626666891290986
Pair: ABT-LH, Correlation: 0.9655167245125318
Pair: ABT-LDOS, Correlation: 0.9284655595164402
Pair: ABT-LIN, Correlation: 0.9151252213362686
Pair: ABT-LYV, Correlation: 0.962864979887193
Pair: ABT-LMT, Correlation: 0.9251087862453243
Pair: ABT-LOW, Correlation: 0.9630635237762267
Pair: ABT-LULU, Correlation: 0.9507658204398448
Pair: ABT-MMC, Correlation: 0.9341535945010998
Pair: ABT-MAS, Correlation: 0.9446583802345823
Pair: ABT-MA, Correlation: 0.9740674790730576
Pair: ABT-MKC, Correlation: 0.9555450400006544
Pair: ABT-MCD, Correlation: 0.9603368629104185
Pair: ABT-MTD, Correlation: 0.9744460876641418
Pair: ABT-MCHP, Correlation: 0.9540584693177652
Pair: ABT-MU, Correlation: 0.9113686300236739
Pair: ABT-MSFT, Correlation: 0.9340615242492843
Pair: ABT-MAA, Correlation: 0.9544553436582803
Pair: ABT-MOH, Correlation: 0.948820152101384
Pair: ABT-MDLZ, Correlation: 0.9462536492480274
Pair: ABT-MNST, Correlation: 0.9435067655391541
Pair: ABT-MCO, Correlation: 0.96938335006333
Pair: ABT-MS, Correlation: 0.9238111615316799
Pair: ABT-MSCI, Correlation: 0.9682619362024912
Pair: ABT-NDAQ, Correlation: 0.9677324635693882
Pair: ABT-NFLX, Correlation: 0.9119688915090989
Pair: ABT-NEE, Correlation: 0.9819229563291979
Pair: ABT-NKE, Correlation: 0.9484828495959589
Pair: ABT-NDSN, Correlation: 0.9721235116610618
Pair: ABT-NSC, Correlation: 0.9871486429931915
Pair: ABT-NOC, Correlation: 0.9220502910898336
Pair: ABT-NVR, Correlation: 0.9140625981210079
Pair: ABT-NXPI, Correlation: 0.917524012789264
Pair: ABT-ODFL, Correlation: 0.9239115555857147
Pair: ABT-PKG, Correlation: 0.9121800791164689
Pair: ABT-PAYX, Correlation: 0.9587099126432429
Pair: ABT-PEP, Correlation: 0.9539975438944093
Pair: ABT-PNC, Correlation: 0.9290539086778433
Pair: ABT-POOL, Correlation: 0.9778967604608919
Pair: ABT-PG, Correlation: 0.9658646143243437
Pair: ABT-PLD, Correlation: 0.9779907310204398
Pair: ABT-PEG, Correlation: 0.9400837178519283
Pair: ABT-PTC, Correlation: 0.9301956087389021
Pair: ABT-PSA, Correlation: 0.918124499911816
Pair: ABT-QCOM, Correlation: 0.9129261269033686
Pair: ABT-DGX, Correlation: 0.9566052865077291
Pair: ABT-RJF, Correlation: 0.9084923054222316
Pair: ABT-O, Correlation: 0.9107340857032639
Pair: ABT-RF, Correlation: 0.9159591171875432
Pair: ABT-RSG, Correlation: 0.9144999351129521
Pair: ABT-RMD, Correlation: 0.9780206066397208
Pair: ABT-RVTY, Correlation: 0.9609553394681611
Pair: ABT-ROK, Correlation: 0.9634113853121078
Pair: ABT-ROL, Correlation: 0.9576787055393833
Pair: ABT-ROP, Correlation: 0.973820872698801
Pair: ABT-ROST, Correlation: 0.9297052539869288
Pair: ABT-SPGI, Correlation: 0.9808657710219586
Pair: ABT-CRM, Correlation: 0.9597027838832554
Pair: ABT-SBAC, Correlation: 0.9515185861082236
Pair: ABT-STX, Correlation: 0.9123914636199061
Pair: ABT-SRE, Correlation: 0.9223571084075439
Pair: ABT-NOW, Correlation: 0.9411748516975366
Pair: ABT-SHW, Correlation: 0.9728146196094076
Pair: ABT-SO, Correlation: 0.9263945987070619
Pair: ABT-SBUX, Correlation: 0.9562788923263239
Pair: ABT-STE, Correlation: 0.9861458249303175
Pair: ABT-SYK, Correlation: 0.9510653438608724
Pair: ABT-SYY, Correlation: 0.9430769314765023
Pair: ABT-TMUS, Correlation: 0.9428796600809042
Pair: ABT-TROW, Correlation: 0.9303825488699551
Pair: ABT-TTWO, Correlation: 0.9401493765892297
Pair: ABT-TGT, Correlation: 0.9350669378439631
Pair: ABT-TEL, Correlation: 0.9603882440267616
Pair: ABT-TDY, Correlation: 0.9875272533781847
Pair: ABT-TER, Correlation: 0.9602413326701273
Pair: ABT-TXN, Correlation: 0.9786687880932727
Pair: ABT-TMO, Correlation: 0.9832064643151069
Pair: ABT-TJX, Correlation: 0.9106934715056517
Pair: ABT-TSCO, Correlation: 0.9112060748191266
Pair: ABT-TRMB, Correlation: 0.9121402450419795
Pair: ABT-TYL, Correlation: 0.9684228809014052
Pair: ABT-UDR, Correlation: 0.9156570049955083
Pair: ABT-UNP, Correlation: 0.9819162107537421
Pair: ABT-UPS, Correlation: 0.940884242216798
Pair: ABT-UNH, Correlation: 0.9521417293380854
Pair: ABT-VRSN, Correlation: 0.9546645165784456
Pair: ABT-VRSK, Correlation: 0.9618219680421994
Pair: ABT-V, Correlation: 0.9732180973900258
Pair: ABT-VMC, Correlation: 0.9046335280649584
Pair: ABT-WRB, Correlation: 0.9152698670040114
Pair: ABT-WMT, Correlation: 0.9244922591707755
Pair: ABT-WM, Correlation: 0.9440287929892128
Pair: ABT-WAT, Correlation: 0.9605827231121877
Pair: ABT-WEC, Correlation: 0.9619329966745875
Pair: ABT-WST, Correlation: 0.9584264783107111
Pair: ABT-WTW, Correlation: 0.9654523129651613
Pair: ABT-WDAY, Correlation: 0.9430299632851182
Pair: ABT-XEL, Correlation: 0.9620753888711306
Pair: ABT-XYL, Correlation: 0.9451346930043167
Pair: ABT-YUM, Correlation: 0.9643131819272276
Pair: ABT-ZBRA, Correlation: 0.9404859080222909
Pair: ABT-ZTS, Correlation: 0.987331388216705
Pair: ABBV-ACN, Correlation: 0.9293932174019033
Pair: ABBV-AMD, Correlation: 0.9118326811019865
Pair: ABBV-AFL, Correlation: 0.9492859433426939
Pair: ABBV-A, Correlation: 0.9015008019671458
Pair: ABBV-ALL, Correlation: 0.9468454057708721
Pair: ABBV-GOOGL, Correlation: 0.9340981186439499
Pair: ABBV-GOOG, Correlation: 0.9338315204419595
Pair: ABBV-AXP, Correlation: 0.9367955584245193
Pair: ABBV-AMP, Correlation: 0.9639326675505351
Pair: ABBV-AME, Correlation: 0.9546742082147442
Pair: ABBV-AMGN, Correlation: 0.94596419955625
Pair: ABBV-APH, Correlation: 0.9578034497050366
Pair: ABBV-ADI, Correlation: 0.9582117628424668
Pair: ABBV-AON, Correlation: 0.951728633529611
Pair: ABBV-APO, Correlation: 0.9322398200746684
Pair: ABBV-AAPL, Correlation: 0.956925826398961
Pair: ABBV-AMAT, Correlation: 0.9346643591887035
Pair: ABBV-ACGL, Correlation: 0.917549720689893
Pair: ABBV-ANET, Correlation: 0.9103966773473056
Pair: ABBV-AJG, Correlation: 0.9718704026654607
Pair: ABBV-AIZ, Correlation: 0.9152044237220307
Pair: ABBV-ADP, Correlation: 0.9588038329723021
Pair: ABBV-AZO, Correlation: 0.9648383787423138
Pair: ABBV-AVY, Correlation: 0.9273251895854085
Pair: ABBV-AXON, Correlation: 0.9067698774173129
Pair: ABBV-BLK, Correlation: 0.9140745897616778
Pair: ABBV-BX, Correlation: 0.9337222783620115
Pair: ABBV-BSX, Correlation: 0.9104822836619912
Pair: ABBV-AVGO, Correlation: 0.9089543849455795
Pair: ABBV-BR, Correlation: 0.9270225294433444
Pair: ABBV-BRO, Correlation: 0.9639912078111379
Pair: ABBV-BLDR, Correlation: 0.908180266710587
Pair: ABBV-CDNS, Correlation: 0.9522851106114053
Pair: ABBV-CAT, Correlation: 0.956717595420471
Pair: ABBV-CBOE, Correlation: 0.9252725474312083
Pair: ABBV-CBRE, Correlation: 0.917192560367569
Pair: ABBV-CDW, Correlation: 0.9404432383004583
Pair: ABBV-COR, Correlation: 0.9435748190504912
Pair: ABBV-CVX, Correlation: 0.9001572885346539
Pair: ABBV-CMG, Correlation: 0.9014790814558963
Pair: ABBV-CB, Correlation: 0.9691507372992207
Pair: ABBV-CI, Correlation: 0.9612323232756513
Pair: ABBV-CTAS, Correlation: 0.9603135426518987
Pair: ABBV-KO, Correlation: 0.9583476675107898
Pair: ABBV-CL, Correlation: 0.9076286167401366
Pair: ABBV-ED, Correlation: 0.9112277518456805
Pair: ABBV-CPRT, Correlation: 0.9400599116264485
Pair: ABBV-COST, Correlation: 0.9617536064853287
Pair: ABBV-CSX, Correlation: 0.9033647449243741
Pair: ABBV-CMI, Correlation: 0.9307369559996785
Pair: ABBV-DHR, Correlation: 0.9096527964857785
Pair: ABBV-DRI, Correlation: 0.9173316022392064
Pair: ABBV-DECK, Correlation: 0.9014015526541332
Pair: ABBV-DE, Correlation: 0.9431378566869122
Pair: ABBV-DFS, Correlation: 0.9066879375183304
Pair: ABBV-DOV, Correlation: 0.9292936643909864
Pair: ABBV-DHI, Correlation: 0.9386626991852577
Pair: ABBV-DUK, Correlation: 0.932024568387968
Pair: ABBV-ETN, Correlation: 0.921014003130222
Pair: ABBV-ELV, Correlation: 0.9619787997280103
Pair: ABBV-EMR, Correlation: 0.9377098441284195
Pair: ABBV-ETR, Correlation: 0.9076951350005311
Pair: ABBV-ERIE, Correlation: 0.9003576515852257
Pair: ABBV-EG, Correlation: 0.9406216395455435
Pair: ABBV-EXC, Correlation: 0.9197335781910402
Pair: ABBV-EXPD, Correlation: 0.9221858589894764
Pair: ABBV-FDS, Correlation: 0.9374501771892078
Pair: ABBV-FAST, Correlation: 0.9455522263379105
Pair: ABBV-FTNT, Correlation: 0.9427673274942653
Pair: ABBV-IT, Correlation: 0.9601400491282104
Pair: ABBV-GD, Correlation: 0.9307327587424371
Pair: ABBV-GPC, Correlation: 0.9185615039257791
Pair: ABBV-GS, Correlation: 0.9314673724981134
Pair: ABBV-HIG, Correlation: 0.9383860910977526
Pair: ABBV-HCA, Correlation: 0.9620165932015257
Pair: ABBV-HSY, Correlation: 0.9065355887946248
Pair: ABBV-HLT, Correlation: 0.9562938981335006
Pair: ABBV-HOLX, Correlation: 0.9001101460975293
Pair: ABBV-HD, Correlation: 0.9340709080575901
Pair: ABBV-HPQ, Correlation: 0.9366099300692751
Pair: ABBV-HUBB, Correlation: 0.9266559436401428
Pair: ABBV-ITW, Correlation: 0.9387035775412919
Pair: ABBV-IR, Correlation: 0.914629940514236
Pair: ABBV-ICE, Correlation: 0.9205790012054159
Pair: ABBV-INTU, Correlation: 0.928219194341848
Pair: ABBV-ISRG, Correlation: 0.9200933196184701
Pair: ABBV-IRM, Correlation: 0.9094352598726585
Pair: ABBV-JBHT, Correlation: 0.9305379728491981
Pair: ABBV-JBL, Correlation: 0.9160617479191782
Pair: ABBV-J, Correlation: 0.9187189065217419
Pair: ABBV-JNJ, Correlation: 0.90045441796031
Pair: ABBV-JPM, Correlation: 0.9250993268432722
Pair: ABBV-JNPR, Correlation: 0.908667381777697
Pair: ABBV-KKR, Correlation: 0.905666283242066
Pair: ABBV-KLAC, Correlation: 0.9443960051623119
Pair: ABBV-LRCX, Correlation: 0.9291307552020205
Pair: ABBV-LDOS, Correlation: 0.9093516630841202
Pair: ABBV-LEN, Correlation: 0.9211146604680646
Pair: ABBV-LLY, Correlation: 0.9058728753830164
Pair: ABBV-LIN, Correlation: 0.9650223648811671
Pair: ABBV-LMT, Correlation: 0.9336622625145603
Pair: ABBV-LOW, Correlation: 0.9509824593873284
Pair: ABBV-MPC, Correlation: 0.9066159901566797
Pair: ABBV-MAR, Correlation: 0.9398295922900433
Pair: ABBV-MMC, Correlation: 0.974956285340427
Pair: ABBV-MLM, Correlation: 0.9409316641395585
Pair: ABBV-MAS, Correlation: 0.9127805640762442
Pair: ABBV-MA, Correlation: 0.9234690503834073
Pair: ABBV-MCD, Correlation: 0.9402683658543377
Pair: ABBV-MRK, Correlation: 0.9376500732229369
Pair: ABBV-MET, Correlation: 0.9453355378980169
Pair: ABBV-MCHP, Correlation: 0.926327818316342
Pair: ABBV-MSFT, Correlation: 0.9502706430109994
Pair: ABBV-MOH, Correlation: 0.9471952194346581
Pair: ABBV-MDLZ, Correlation: 0.9333462209265765
Pair: ABBV-MPWR, Correlation: 0.9504748882865325
Pair: ABBV-MNST, Correlation: 0.9161058178916394
Pair: ABBV-MCO, Correlation: 0.9256777820377461
Pair: ABBV-MS, Correlation: 0.9469335756161331
Pair: ABBV-MSI, Correlation: 0.9560125889199149
Pair: ABBV-MSCI, Correlation: 0.9098264523322298
Pair: ABBV-NDAQ, Correlation: 0.9350629521188478
Pair: ABBV-NDSN, Correlation: 0.9303792006372293
Pair: ABBV-NOC, Correlation: 0.9361415968083825
Pair: ABBV-NUE, Correlation: 0.9359209504943579
Pair: ABBV-NVR, Correlation: 0.9458965124977297
Pair: ABBV-NXPI, Correlation: 0.9244019335811636
Pair: ABBV-ORLY, Correlation: 0.965113739916267
Pair: ABBV-ODFL, Correlation: 0.956046287223702
Pair: ABBV-ON, Correlation: 0.9372006455650861
Pair: ABBV-ORCL, Correlation: 0.9252808416076161
Pair: ABBV-PCAR, Correlation: 0.9241205201882321
Pair: ABBV-PKG, Correlation: 0.9542666812668433
Pair: ABBV-PANW, Correlation: 0.9464874767148969
Pair: ABBV-PH, Correlation: 0.9388118493031836
Pair: ABBV-PAYX, Correlation: 0.9552880613794748
Pair: ABBV-PEP, Correlation: 0.9444962835127424
Pair: ABBV-PM, Correlation: 0.9011833015846324
Pair: ABBV-PFG, Correlation: 0.9328781209612068
Pair: ABBV-PG, Correlation: 0.9334072702487037
Pair: ABBV-PGR, Correlation: 0.9588865737661209
Pair: ABBV-PLD, Correlation: 0.9023917781065176
Pair: ABBV-PEG, Correlation: 0.9279067812537856
Pair: ABBV-PTC, Correlation: 0.9359590956790508
Pair: ABBV-PSA, Correlation: 0.9144409435191899
Pair: ABBV-PWR, Correlation: 0.9287910683937908
Pair: ABBV-DGX, Correlation: 0.9151533646287555
Pair: ABBV-RJF, Correlation: 0.9674144952254081
Pair: ABBV-RTX, Correlation: 0.9090666490346915
Pair: ABBV-RF, Correlation: 0.9037429749509316
Pair: ABBV-RSG, Correlation: 0.9706740137989818
Pair: ABBV-ROL, Correlation: 0.9351631325123047
Pair: ABBV-ROP, Correlation: 0.9195942239538818
Pair: ABBV-SPGI, Correlation: 0.9151023327854783
Pair: ABBV-SRE, Correlation: 0.9256258899914571
Pair: ABBV-NOW, Correlation: 0.912149676541544
Pair: ABBV-SHW, Correlation: 0.9227760665166147
Pair: ABBV-SNA, Correlation: 0.9374947340426437
Pair: ABBV-SO, Correlation: 0.950539070127332
Pair: ABBV-STLD, Correlation: 0.9553520454683372
Pair: ABBV-STE, Correlation: 0.911079570721425
Pair: ABBV-SYK, Correlation: 0.9369353520413018
Pair: ABBV-SNPS, Correlation: 0.9528458591115023
Pair: ABBV-TMUS, Correlation: 0.9502836797939243
Pair: ABBV-TEL, Correlation: 0.9242237647483251
Pair: ABBV-TXN, Correlation: 0.9239386481029088
Pair: ABBV-TPL, Correlation: 0.9282689846562975
Pair: ABBV-TMO, Correlation: 0.9211775629805963
Pair: ABBV-TJX, Correlation: 0.9446652451347145
Pair: ABBV-TSCO, Correlation: 0.9580114938134923
Pair: ABBV-TT, Correlation: 0.9279255434437282
Pair: ABBV-TDG, Correlation: 0.9318853839259713
Pair: ABBV-TRV, Correlation: 0.9607538413668745
Pair: ABBV-UNP, Correlation: 0.9216324582893547
Pair: ABBV-URI, Correlation: 0.9340455268198535
Pair: ABBV-UNH, Correlation: 0.9698715806874376
Pair: ABBV-VLO, Correlation: 0.9239015152024915
Pair: ABBV-VRSK, Correlation: 0.9224935288160774
Pair: ABBV-VRTX, Correlation: 0.9412500268957805
Pair: ABBV-V, Correlation: 0.9154601989654206
Pair: ABBV-VMC, Correlation: 0.9283640038916698
Pair: ABBV-WRB, Correlation: 0.9716530248346401
Pair: ABBV-GWW, Correlation: 0.9335314209980415
Pair: ABBV-WMT, Correlation: 0.9332349203902673
Pair: ABBV-WM, Correlation: 0.962756064115455
Pair: ABBV-WTW, Correlation: 0.9280617866169147
Pair: ABBV-YUM, Correlation: 0.9229560066471965
Pair: ACN-ADBE, Correlation: 0.9658465353559437
Pair: ACN-AMD, Correlation: 0.9409222743826964
Pair: ACN-AFL, Correlation: 0.9110806840627643
Pair: ACN-A, Correlation: 0.9760329254691085
Pair: ACN-APD, Correlation: 0.9596930896417883
Pair: ACN-ALLE, Correlation: 0.9305470729663285
Pair: ACN-LNT, Correlation: 0.9480481818730675
Pair: ACN-ALL, Correlation: 0.9420323439149774
Pair: ACN-GOOGL, Correlation: 0.9775265759505747
Pair: ACN-GOOG, Correlation: 0.9771831101923303
Pair: ACN-AMZN, Correlation: 0.9523313212182946
Pair: ACN-AEE, Correlation: 0.9467364869916078
Pair: ACN-AEP, Correlation: 0.9276271680450707
Pair: ACN-AXP, Correlation: 0.9345385902394046
Pair: ACN-AMT, Correlation: 0.9235956498640019
Pair: ACN-AWK, Correlation: 0.9521609855161947
Pair: ACN-AMP, Correlation: 0.9349392639370728
Pair: ACN-AME, Correlation: 0.9791247767160218
Pair: ACN-AMGN, Correlation: 0.937775659531147
Pair: ACN-APH, Correlation: 0.9448627992332375
Pair: ACN-ADI, Correlation: 0.9768798784694276
Pair: ACN-ANSS, Correlation: 0.9576131649980083
Pair: ACN-AON, Correlation: 0.9812572910926256
Pair: ACN-APO, Correlation: 0.9078536561395821
Pair: ACN-AAPL, Correlation: 0.9666549945029049
Pair: ACN-AMAT, Correlation: 0.9405209206945028
Pair: ACN-AJG, Correlation: 0.9398470602575283
Pair: ACN-AIZ, Correlation: 0.9662861484891894
Pair: ACN-ATO, Correlation: 0.9242473477288785
Pair: ACN-ADSK, Correlation: 0.9439305487322909
Pair: ACN-ADP, Correlation: 0.9776250356578674
Pair: ACN-AZO, Correlation: 0.9333830625700934
Pair: ACN-AVY, Correlation: 0.9839518627562982
Pair: ACN-BAC, Correlation: 0.9333420394812406
Pair: ACN-BBY, Correlation: 0.9127694381358387
Pair: ACN-TECH, Correlation: 0.9370878648215939
Pair: ACN-BLK, Correlation: 0.9774254378784997
Pair: ACN-BX, Correlation: 0.9570138063938323
Pair: ACN-BSX, Correlation: 0.9217889123443195
Pair: ACN-BR, Correlation: 0.9772346811495709
Pair: ACN-BRO, Correlation: 0.9589743845647529
Pair: ACN-CHRW, Correlation: 0.9009948669932104
Pair: ACN-CDNS, Correlation: 0.9364164158436807
Pair: ACN-CPT, Correlation: 0.9359809691722873
Pair: ACN-COF, Correlation: 0.9145305063815506
Pair: ACN-CAT, Correlation: 0.9154529513601438
Pair: ACN-CBOE, Correlation: 0.9186628506542388
Pair: ACN-CBRE, Correlation: 0.9682703024782429
Pair: ACN-CDW, Correlation: 0.9781310509369182
Pair: ACN-CE, Correlation: 0.9400313049539865
Pair: ACN-CNC, Correlation: 0.9105866884923265
Pair: ACN-CRL, Correlation: 0.9139682373902871
Pair: ACN-SCHW, Correlation: 0.9343574570060147
Pair: ACN-CMG, Correlation: 0.9040790163204704
Pair: ACN-CB, Correlation: 0.9405648876578244
Pair: ACN-CHD, Correlation: 0.9677948209426803
Pair: ACN-CI, Correlation: 0.9257655316197232
Pair: ACN-CINF, Correlation: 0.9521291476589673
Pair: ACN-CTAS, Correlation: 0.9396431285403628
Pair: ACN-CSCO, Correlation: 0.9449219273924173
Pair: ACN-CME, Correlation: 0.9531979594211849
Pair: ACN-CMS, Correlation: 0.93544100974668
Pair: ACN-KO, Correlation: 0.9585735881918271
Pair: ACN-ED, Correlation: 0.912596765069633
Pair: ACN-COO, Correlation: 0.9457583555781398
Pair: ACN-CPRT, Correlation: 0.961906882005248
Pair: ACN-GLW, Correlation: 0.9179310669009877
Pair: ACN-CSGP, Correlation: 0.9496595514744388
Pair: ACN-COST, Correlation: 0.9411832134763404
Pair: ACN-CSX, Correlation: 0.9765057636029282
Pair: ACN-CMI, Correlation: 0.9445966427611802
Pair: ACN-DHR, Correlation: 0.9845955418775483
Pair: ACN-DRI, Correlation: 0.9648489307681299
Pair: ACN-DE, Correlation: 0.9601326138561241
Pair: ACN-DXCM, Correlation: 0.9377792345883417
Pair: ACN-DLR, Correlation: 0.9321871697700378
Pair: ACN-DFS, Correlation: 0.9367957353268351
Pair: ACN-DPZ, Correlation: 0.9609079774870612
Pair: ACN-DOV, Correlation: 0.980172450284499
Pair: ACN-DHI, Correlation: 0.9285440473116019
Pair: ACN-DTE, Correlation: 0.946422666879428
Pair: ACN-DUK, Correlation: 0.9543502610594758
Pair: ACN-EBAY, Correlation: 0.9249324273187268
Pair: ACN-ECL, Correlation: 0.9103141288469853
Pair: ACN-EW, Correlation: 0.9362189659489419
Pair: ACN-ELV, Correlation: 0.9671452849951826
Pair: ACN-EMR, Correlation: 0.9544148327114517
Pair: ACN-ETR, Correlation: 0.9502277395591502
Pair: ACN-EFX, Correlation: 0.9700148970885326
Pair: ACN-EQIX, Correlation: 0.9721127091548961
Pair: ACN-EG, Correlation: 0.9201474611526491
Pair: ACN-EXC, Correlation: 0.9207938423261374
Pair: ACN-EXPD, Correlation: 0.9816132589713872
Pair: ACN-EXR, Correlation: 0.9674840306905901
Pair: ACN-FDS, Correlation: 0.9855322642006534
Pair: ACN-FAST, Correlation: 0.9692042726095719
Pair: ACN-FITB, Correlation: 0.9278846109216347
Pair: ACN-FI, Correlation: 0.9368875052937925
Pair: ACN-FTNT, Correlation: 0.9540997003584241
Pair: ACN-GRMN, Correlation: 0.9459405894001253
Pair: ACN-IT, Correlation: 0.937431845708546
Pair: ACN-GEN, Correlation: 0.9385501098433647
Pair: ACN-GPC, Correlation: 0.9153316812784353
Pair: ACN-GL, Correlation: 0.9049282504584557
Pair: ACN-GS, Correlation: 0.9240519638256579
Pair: ACN-HIG, Correlation: 0.9099357242752005
Pair: ACN-HCA, Correlation: 0.9534519327731331
Pair: ACN-HSY, Correlation: 0.9346801295745075
Pair: ACN-HLT, Correlation: 0.9313321042965956
Pair: ACN-HOLX, Correlation: 0.9639373405024805
Pair: ACN-HD, Correlation: 0.9908732545689353
Pair: ACN-HON, Correlation: 0.9626381456551794
Pair: ACN-HPQ, Correlation: 0.9180285926464606
Pair: ACN-HUM, Correlation: 0.9137714471474973
Pair: ACN-IEX, Correlation: 0.9709483080422072
Pair: ACN-IDXX, Correlation: 0.9686659111474448
Pair: ACN-ITW, Correlation: 0.9799482442247115
Pair: ACN-PODD, Correlation: 0.9182908238996331
Pair: ACN-ICE, Correlation: 0.9776735510216936
Pair: ACN-IPG, Correlation: 0.9396613299716092
Pair: ACN-INTU, Correlation: 0.9846599959025144
Pair: ACN-ISRG, Correlation: 0.9596112031966367
Pair: ACN-INVH, Correlation: 0.9479670729286014
Pair: ACN-IQV, Correlation: 0.9792048205485189
Pair: ACN-JBHT, Correlation: 0.9750543993228624
Pair: ACN-JKHY, Correlation: 0.9294815894235889
Pair: ACN-J, Correlation: 0.9707356101745698
Pair: ACN-JNJ, Correlation: 0.9467078865104896
Pair: ACN-JCI, Correlation: 0.9388959507533398
Pair: ACN-JPM, Correlation: 0.9527013128190379
Pair: ACN-KDP, Correlation: 0.9611991796419075
Pair: ACN-KEYS, Correlation: 0.9549163019485107
Pair: ACN-KLAC, Correlation: 0.9051287292357431
Pair: ACN-LHX, Correlation: 0.9492440482496024
Pair: ACN-LH, Correlation: 0.9800649666605457
Pair: ACN-LRCX, Correlation: 0.9369180837949208
Pair: ACN-LDOS, Correlation: 0.9357334355546508
Pair: ACN-LEN, Correlation: 0.9130996632293576
Pair: ACN-LII, Correlation: 0.9151426200791289
Pair: ACN-LIN, Correlation: 0.9580222954749674
Pair: ACN-LYV, Correlation: 0.971104345766874
Pair: ACN-LMT, Correlation: 0.9345861931281437
Pair: ACN-LOW, Correlation: 0.9881959638505868
Pair: ACN-LULU, Correlation: 0.9491490444695966
Pair: ACN-MAR, Correlation: 0.9316099178753473
Pair: ACN-MMC, Correlation: 0.9745021282267717
Pair: ACN-MLM, Correlation: 0.9523530050261575
Pair: ACN-MAS, Correlation: 0.9639991133449276
Pair: ACN-MA, Correlation: 0.9759215898289888
Pair: ACN-MKC, Correlation: 0.9088288216133538
Pair: ACN-MCD, Correlation: 0.977252958477298
Pair: ACN-MRK, Correlation: 0.9222965264487355
Pair: ACN-MET, Correlation: 0.9249469691526885
Pair: ACN-MTD, Correlation: 0.9738333548892227
Pair: ACN-MCHP, Correlation: 0.9753759744154478
Pair: ACN-MU, Correlation: 0.9210583896233555
Pair: ACN-MSFT, Correlation: 0.9706015292229149
Pair: ACN-MAA, Correlation: 0.9578691655686489
Pair: ACN-MOH, Correlation: 0.9726442346227806
Pair: ACN-MDLZ, Correlation: 0.96158933015941
Pair: ACN-MPWR, Correlation: 0.9353001251296746
Pair: ACN-MNST, Correlation: 0.9556855498193075
Pair: ACN-MCO, Correlation: 0.9826928485169204
Pair: ACN-MS, Correlation: 0.9602107638872789
Pair: ACN-MSI, Correlation: 0.9416695273699868
Pair: ACN-MSCI, Correlation: 0.9820109602775556
Pair: ACN-NDAQ, Correlation: 0.9845024107740808
Pair: ACN-NFLX, Correlation: 0.9029786567741162
Pair: ACN-NEE, Correlation: 0.958925805031023
Pair: ACN-NKE, Correlation: 0.9074068226271229
Pair: ACN-NDSN, Correlation: 0.9861237758647693
Pair: ACN-NSC, Correlation: 0.9710382780026661
Pair: ACN-NOC, Correlation: 0.9406713042101513
Pair: ACN-NVR, Correlation: 0.9529883909360412
Pair: ACN-NXPI, Correlation: 0.9545306232917656
Pair: ACN-ORLY, Correlation: 0.9440322791347273
Pair: ACN-ODFL, Correlation: 0.9682203954340413
Pair: ACN-ON, Correlation: 0.9064203506673552
Pair: ACN-ORCL, Correlation: 0.906733985171629
Pair: ACN-PKG, Correlation: 0.9444982677766689
Pair: ACN-PH, Correlation: 0.9099501929523398
Pair: ACN-PAYX, Correlation: 0.9854070734458552
Pair: ACN-PEP, Correlation: 0.9687875177360233
Pair: ACN-PNC, Correlation: 0.9349351306150199
Pair: ACN-POOL, Correlation: 0.9763676351743273
Pair: ACN-PFG, Correlation: 0.9062864821143435
Pair: ACN-PG, Correlation: 0.9759874201808288
Pair: ACN-PGR, Correlation: 0.9129891601690467
Pair: ACN-PLD, Correlation: 0.985391467387505
Pair: ACN-PEG, Correlation: 0.9524353458360258
Pair: ACN-PTC, Correlation: 0.9566319985452219
Pair: ACN-PSA, Correlation: 0.9495179135962855
Pair: ACN-QCOM, Correlation: 0.9301886747506027
Pair: ACN-DGX, Correlation: 0.9690972910412617
Pair: ACN-RJF, Correlation: 0.9560735379323572
Pair: ACN-RF, Correlation: 0.9357800440714608
Pair: ACN-RSG, Correlation: 0.9597848535078776
Pair: ACN-RMD, Correlation: 0.9591462832845247
Pair: ACN-RVTY, Correlation: 0.9299209839992407
Pair: ACN-ROK, Correlation: 0.9756121437796965
Pair: ACN-ROL, Correlation: 0.9648546594723545
Pair: ACN-ROP, Correlation: 0.9798270511740423
Pair: ACN-ROST, Correlation: 0.9307254230908091
Pair: ACN-SPGI, Correlation: 0.9879352338645573
Pair: ACN-CRM, Correlation: 0.9563690876000175
Pair: ACN-STX, Correlation: 0.9347824816493059
Pair: ACN-SRE, Correlation: 0.9238811355637674
Pair: ACN-NOW, Correlation: 0.9642944093875278
Pair: ACN-SHW, Correlation: 0.9866289542552469
Pair: ACN-SNA, Correlation: 0.9278947762936329
Pair: ACN-SO, Correlation: 0.9534370760804861
Pair: ACN-SBUX, Correlation: 0.9389793753237735
Pair: ACN-STE, Correlation: 0.9869188874586463
Pair: ACN-SYK, Correlation: 0.9705426088593065
Pair: ACN-SNPS, Correlation: 0.9374080831382656
Pair: ACN-SYY, Correlation: 0.9372272712188336
Pair: ACN-TMUS, Correlation: 0.9620381116953983
Pair: ACN-TTWO, Correlation: 0.9113533736796109
Pair: ACN-TGT, Correlation: 0.9154512300048129
Pair: ACN-TEL, Correlation: 0.9777548410318445
Pair: ACN-TDY, Correlation: 0.9729756629419033
Pair: ACN-TER, Correlation: 0.9582198499445793
Pair: ACN-TSLA, Correlation: 0.9132007517711361
Pair: ACN-TXN, Correlation: 0.981882506401132
Pair: ACN-TMO, Correlation: 0.9847678345153417
Pair: ACN-TJX, Correlation: 0.9444906911531562
Pair: ACN-TSCO, Correlation: 0.9504922131685782
Pair: ACN-TT, Correlation: 0.9112615411890528
Pair: ACN-TDG, Correlation: 0.9180561997073288
Pair: ACN-TRV, Correlation: 0.9357236488022069
Pair: ACN-TYL, Correlation: 0.9690196899125192
Pair: ACN-UDR, Correlation: 0.9035954296395846
Pair: ACN-ULTA, Correlation: 0.9099139842424846
Pair: ACN-UNP, Correlation: 0.9801726672554226
Pair: ACN-UPS, Correlation: 0.9394983137565001
Pair: ACN-UNH, Correlation: 0.9777727230011318
Pair: ACN-VRSN, Correlation: 0.9160849646515843
Pair: ACN-VRSK, Correlation: 0.976020392133401
Pair: ACN-VRTX, Correlation: 0.9073176082109442
Pair: ACN-V, Correlation: 0.9736964225691093
Pair: ACN-VMC, Correlation: 0.9514178231906477
Pair: ACN-WRB, Correlation: 0.9517674848855391
Pair: ACN-WMT, Correlation: 0.9423971230043633
Pair: ACN-WM, Correlation: 0.9746989687086399
Pair: ACN-WAT, Correlation: 0.9670529916265126
Pair: ACN-WEC, Correlation: 0.9354057191452746
Pair: ACN-WST, Correlation: 0.9716177472263887
Pair: ACN-WTW, Correlation: 0.9706996581364233
Pair: ACN-WDAY, Correlation: 0.9254614286577235
Pair: ACN-XEL, Correlation: 0.9325836633556761
Pair: ACN-XYL, Correlation: 0.9588562345853574
Pair: ACN-YUM, Correlation: 0.9725824285058471
Pair: ACN-ZBRA, Correlation: 0.9050835003044005
Pair: ACN-ZTS, Correlation: 0.9781569328598537
Pair: ADBE-AMD, Correlation: 0.9174092285888763
Pair: ADBE-A, Correlation: 0.9480357888317056
Pair: ADBE-APD, Correlation: 0.950056549575564
Pair: ADBE-AKAM, Correlation: 0.9256862647065083
Pair: ADBE-ALLE, Correlation: 0.9303331344487945
Pair: ADBE-LNT, Correlation: 0.923055826815436
Pair: ADBE-GOOGL, Correlation: 0.9457610327863377
Pair: ADBE-GOOG, Correlation: 0.9461912689853026
Pair: ADBE-AMZN, Correlation: 0.9776584787245585
Pair: ADBE-AEE, Correlation: 0.9217553583453059
Pair: ADBE-AMT, Correlation: 0.9378902603018829
Pair: ADBE-AWK, Correlation: 0.9488920480805602
Pair: ADBE-AME, Correlation: 0.9376852390757713
Pair: ADBE-AMGN, Correlation: 0.9035245829340438
Pair: ADBE-ADI, Correlation: 0.9376303763294277
Pair: ADBE-ANSS, Correlation: 0.9812148401388585
Pair: ADBE-AON, Correlation: 0.9310422070944475
Pair: ADBE-AAPL, Correlation: 0.9222865317461602
Pair: ADBE-AIZ, Correlation: 0.9277982091844532
Pair: ADBE-ADSK, Correlation: 0.9745548417005914
Pair: ADBE-ADP, Correlation: 0.9226712040875164
Pair: ADBE-AVY, Correlation: 0.9542973476806167
Pair: ADBE-BALL, Correlation: 0.9076472644791554
Pair: ADBE-BAC, Correlation: 0.9091274432848433
Pair: ADBE-BBY, Correlation: 0.9496456526316369
Pair: ADBE-TECH, Correlation: 0.9384356351830566
Pair: ADBE-BLK, Correlation: 0.952266848951674
Pair: ADBE-BR, Correlation: 0.9592882100304984
Pair: ADBE-BRO, Correlation: 0.9074167015342376
Pair: ADBE-CBRE, Correlation: 0.9192126821948777
Pair: ADBE-CDW, Correlation: 0.9277444885855728
Pair: ADBE-CE, Correlation: 0.9348087629535267
Pair: ADBE-CRL, Correlation: 0.9340192602279145
Pair: ADBE-CHD, Correlation: 0.9475500679896707
Pair: ADBE-CINF, Correlation: 0.9019213605986093
Pair: ADBE-CSCO, Correlation: 0.9361945681320124
Pair: ADBE-CME, Correlation: 0.938970751670149
Pair: ADBE-CMS, Correlation: 0.911839572235322
Pair: ADBE-COO, Correlation: 0.9427071298870433
Pair: ADBE-CPRT, Correlation: 0.9348112782942454
Pair: ADBE-GLW, Correlation: 0.9012721980879382
Pair: ADBE-CSGP, Correlation: 0.9674152206938866
Pair: ADBE-CSX, Correlation: 0.9576589173271834
Pair: ADBE-CMI, Correlation: 0.9027574527839453
Pair: ADBE-DHR, Correlation: 0.9610016259463164
Pair: ADBE-DRI, Correlation: 0.9209385682091122
Pair: ADBE-DE, Correlation: 0.902271985582054
Pair: ADBE-DXCM, Correlation: 0.935410735428942
Pair: ADBE-DLR, Correlation: 0.9440983062640437
Pair: ADBE-DPZ, Correlation: 0.9705034296532407
Pair: ADBE-DOV, Correlation: 0.9464786484177139
Pair: ADBE-DTE, Correlation: 0.9044178269627411
Pair: ADBE-DUK, Correlation: 0.9041820920617009
Pair: ADBE-EBAY, Correlation: 0.9320177380964825
Pair: ADBE-ECL, Correlation: 0.9268838399896098
Pair: ADBE-EW, Correlation: 0.9383339651719304
Pair: ADBE-ELV, Correlation: 0.910326101396794
Pair: ADBE-EMR, Correlation: 0.9083320888251343
Pair: ADBE-ETR, Correlation: 0.9124934890788787
Pair: ADBE-EFX, Correlation: 0.9341290824901541
Pair: ADBE-EQIX, Correlation: 0.9664314023827989
Pair: ADBE-EXPD, Correlation: 0.9614279527268016
Pair: ADBE-EXR, Correlation: 0.9078738976176554
Pair: ADBE-FDS, Correlation: 0.9434465614381436
Pair: ADBE-FAST, Correlation: 0.9267232131197152
Pair: ADBE-FI, Correlation: 0.9199367654099512
Pair: ADBE-GRMN, Correlation: 0.9442059769571325
Pair: ADBE-GEN, Correlation: 0.9114940542033392
Pair: ADBE-HOLX, Correlation: 0.9305722945715494
Pair: ADBE-HD, Correlation: 0.9599176026562288
Pair: ADBE-HON, Correlation: 0.9437138914984305
Pair: ADBE-IEX, Correlation: 0.9498881180836877
Pair: ADBE-IDXX, Correlation: 0.9760423260700422
Pair: ADBE-ITW, Correlation: 0.9496687165019531
Pair: ADBE-PODD, Correlation: 0.9132524361350399
Pair: ADBE-ICE, Correlation: 0.9567894702289041
Pair: ADBE-INTU, Correlation: 0.9601348214768144
Pair: ADBE-ISRG, Correlation: 0.9430223480549496
Pair: ADBE-IQV, Correlation: 0.9485839100538989
Pair: ADBE-JBHT, Correlation: 0.9242201423361733
Pair: ADBE-JKHY, Correlation: 0.9146906017095322
Pair: ADBE-J, Correlation: 0.9356994022736415
Pair: ADBE-JNJ, Correlation: 0.9138898463912208
Pair: ADBE-JPM, Correlation: 0.9204717940941852
Pair: ADBE-KDP, Correlation: 0.9371233941957107
Pair: ADBE-LHX, Correlation: 0.9282316820492804
Pair: ADBE-LH, Correlation: 0.9530289992821228
Pair: ADBE-LRCX, Correlation: 0.9056336620118902
Pair: ADBE-LDOS, Correlation: 0.9173265969617441
Pair: ADBE-LIN, Correlation: 0.90730431530518
Pair: ADBE-LYV, Correlation: 0.9341632456456664
Pair: ADBE-LOW, Correlation: 0.9404372836863967
Pair: ADBE-LULU, Correlation: 0.95534621638077
Pair: ADBE-MMC, Correlation: 0.9191219372423819
Pair: ADBE-MAS, Correlation: 0.9401923564654613
Pair: ADBE-MA, Correlation: 0.9606232751170681
Pair: ADBE-MKC, Correlation: 0.9124465589993186
Pair: ADBE-MCD, Correlation: 0.9345737411691297
Pair: ADBE-MTD, Correlation: 0.9410051974054577
Pair: ADBE-MCHP, Correlation: 0.946951700459758
Pair: ADBE-MU, Correlation: 0.9079866613305362
Pair: ADBE-MSFT, Correlation: 0.9395244056721826
Pair: ADBE-MAA, Correlation: 0.9128956616900101
Pair: ADBE-MOH, Correlation: 0.9226896780967497
Pair: ADBE-MDLZ, Correlation: 0.9146477863284849
Pair: ADBE-MNST, Correlation: 0.9190230110481467
Pair: ADBE-MCO, Correlation: 0.9675189430586348
Pair: ADBE-MS, Correlation: 0.9023987933584205
Pair: ADBE-MSCI, Correlation: 0.9634744794073755
Pair: ADBE-NDAQ, Correlation: 0.9423435575032957
Pair: ADBE-NFLX, Correlation: 0.9431292631321113
Pair: ADBE-NEE, Correlation: 0.9389033859319608
Pair: ADBE-NKE, Correlation: 0.9268331234369258
Pair: ADBE-NDSN, Correlation: 0.9561164007320068
Pair: ADBE-NSC, Correlation: 0.9556216867252252
Pair: ADBE-NVR, Correlation: 0.9150327795946447
Pair: ADBE-NXPI, Correlation: 0.9124274358965745
Pair: ADBE-ODFL, Correlation: 0.9206192319532895
Pair: ADBE-PAYX, Correlation: 0.928317743421553
Pair: ADBE-PEP, Correlation: 0.9141932647240906
Pair: ADBE-POOL, Correlation: 0.9669891560572411
Pair: ADBE-PG, Correlation: 0.938188162003942
Pair: ADBE-PLD, Correlation: 0.9520640748737742
Pair: ADBE-PEG, Correlation: 0.9095061702311493
Pair: ADBE-PTC, Correlation: 0.9306201491566035
Pair: ADBE-DGX, Correlation: 0.9336724350712953
Pair: ADBE-RSG, Correlation: 0.9031195842963047
Pair: ADBE-RMD, Correlation: 0.9440495354425388
Pair: ADBE-RVTY, Correlation: 0.9225612486581376
Pair: ADBE-ROK, Correlation: 0.9567412273250396
Pair: ADBE-ROL, Correlation: 0.9454180318969918
Pair: ADBE-ROP, Correlation: 0.9669580712860297
Pair: ADBE-ROST, Correlation: 0.9242146235546557
Pair: ADBE-SPGI, Correlation: 0.9767038947927769
Pair: ADBE-CRM, Correlation: 0.9761183373905234
Pair: ADBE-SBAC, Correlation: 0.9088654828290463
Pair: ADBE-NOW, Correlation: 0.9486920239268782
Pair: ADBE-SHW, Correlation: 0.9637132012118844
Pair: ADBE-SBUX, Correlation: 0.9273221332417024
Pair: ADBE-STE, Correlation: 0.9683522367573401
Pair: ADBE-SYK, Correlation: 0.9421193050310661
Pair: ADBE-SYY, Correlation: 0.9019801839530258
Pair: ADBE-TMUS, Correlation: 0.9250766069072898
Pair: ADBE-TROW, Correlation: 0.928616614993314
Pair: ADBE-TTWO, Correlation: 0.9489160102886167
Pair: ADBE-TGT, Correlation: 0.9104574856134361
Pair: ADBE-TEL, Correlation: 0.9429769232172738
Pair: ADBE-TDY, Correlation: 0.9617740994671441
Pair: ADBE-TER, Correlation: 0.9540296441135099
Pair: ADBE-TXN, Correlation: 0.9580977416183319
Pair: ADBE-TMO, Correlation: 0.952888214504254
Pair: ADBE-TYL, Correlation: 0.9644379400408608
Pair: ADBE-UNP, Correlation: 0.9544318682962247
Pair: ADBE-UPS, Correlation: 0.9000434837802247
Pair: ADBE-UNH, Correlation: 0.9225398515756591
Pair: ADBE-VRSN, Correlation: 0.9343244599442695
Pair: ADBE-VRSK, Correlation: 0.958246886742166
Pair: ADBE-V, Correlation: 0.9612316920206116
Pair: ADBE-WMT, Correlation: 0.9102147080881922
Pair: ADBE-WM, Correlation: 0.9244327831954503
Pair: ADBE-WAT, Correlation: 0.9300262141960607
Pair: ADBE-WEC, Correlation: 0.9173054981065848
Pair: ADBE-WST, Correlation: 0.9610031436854847
Pair: ADBE-WTW, Correlation: 0.9401974906184879
Pair: ADBE-WDAY, Correlation: 0.9602896255170194
Pair: ADBE-XEL, Correlation: 0.9186060905449419
Pair: ADBE-XYL, Correlation: 0.9425739274622282
Pair: ADBE-YUM, Correlation: 0.9342381841121395
Pair: ADBE-ZBRA, Correlation: 0.9263861344166017
Pair: ADBE-ZTS, Correlation: 0.9728649754606311
Pair: AMD-A, Correlation: 0.9121780445780162
Pair: AMD-GOOGL, Correlation: 0.9562095917534642
Pair: AMD-GOOG, Correlation: 0.9574065643609105
Pair: AMD-AMZN, Correlation: 0.910799786009688
Pair: AMD-AXP, Correlation: 0.9196390139834472
Pair: AMD-AMP, Correlation: 0.9292010994184629
Pair: AMD-AME, Correlation: 0.9382402469423375
Pair: AMD-APH, Correlation: 0.9367074561968317
Pair: AMD-ADI, Correlation: 0.9422481553299337
Pair: AMD-ANSS, Correlation: 0.9039702408745258
Pair: AMD-AON, Correlation: 0.9099011617139802
Pair: AMD-APO, Correlation: 0.9396502901958811
Pair: AMD-AAPL, Correlation: 0.9642950415065163
Pair: AMD-AMAT, Correlation: 0.9672606937267324
Pair: AMD-AJG, Correlation: 0.941494229988213
Pair: AMD-ADP, Correlation: 0.906531000339572
Pair: AMD-AZO, Correlation: 0.9202004670135487
Pair: AMD-AVY, Correlation: 0.9240826102123895
Pair: AMD-AXON, Correlation: 0.9145294164139806
Pair: AMD-BLK, Correlation: 0.9150577703046738
Pair: AMD-BX, Correlation: 0.9552632352472163
Pair: AMD-AVGO, Correlation: 0.9087505243586681
Pair: AMD-BR, Correlation: 0.9157541383828814
Pair: AMD-BRO, Correlation: 0.9578349304696199
Pair: AMD-BLDR, Correlation: 0.9115199553704413
Pair: AMD-CDNS, Correlation: 0.9671225634368739
Pair: AMD-CAT, Correlation: 0.9337637734721067
Pair: AMD-CBRE, Correlation: 0.9138359279429386
Pair: AMD-CDW, Correlation: 0.9500806905973823
Pair: AMD-CMG, Correlation: 0.9514863254886177
Pair: AMD-CTAS, Correlation: 0.9475426008104431
Pair: AMD-CPRT, Correlation: 0.968863587743856
Pair: AMD-COST, Correlation: 0.9549190093576398
Pair: AMD-CSX, Correlation: 0.9016917057699635
Pair: AMD-CMI, Correlation: 0.9124153638749922
Pair: AMD-DHR, Correlation: 0.9345278910902174
Pair: AMD-DECK, Correlation: 0.9241679180465704
Pair: AMD-DE, Correlation: 0.9231934826739359
Pair: AMD-DXCM, Correlation: 0.9104157551818693
Pair: AMD-DOV, Correlation: 0.9434272591501933
Pair: AMD-DHI, Correlation: 0.9458540135871288
Pair: AMD-ETN, Correlation: 0.9312456270212649
Pair: AMD-ELV, Correlation: 0.9020210981489367
Pair: AMD-EMR, Correlation: 0.9233457695315941
Pair: AMD-EFX, Correlation: 0.9041303873389208
Pair: AMD-EQIX, Correlation: 0.9009045597152744
Pair: AMD-EXPD, Correlation: 0.9399448307131396
Pair: AMD-FDS, Correlation: 0.9248413284332774
Pair: AMD-FAST, Correlation: 0.9686340107461822
Pair: AMD-FTNT, Correlation: 0.9464174604885164
Pair: AMD-GRMN, Correlation: 0.9344985427905891
Pair: AMD-IT, Correlation: 0.9295712610554435
Pair: AMD-GS, Correlation: 0.9043642729473267
Pair: AMD-HCA, Correlation: 0.9376450802782912
Pair: AMD-HLT, Correlation: 0.9417464641439935
Pair: AMD-HD, Correlation: 0.9235894579603268
Pair: AMD-HUBB, Correlation: 0.9088473819146263
Pair: AMD-IDXX, Correlation: 0.9168711214135045
Pair: AMD-ITW, Correlation: 0.9096062344311109
Pair: AMD-IR, Correlation: 0.9088128085004145
Pair: AMD-ICE, Correlation: 0.9196605429388731
Pair: AMD-INTU, Correlation: 0.9698161219617627
Pair: AMD-ISRG, Correlation: 0.9485707241696849
Pair: AMD-IQV, Correlation: 0.9150783884428683
Pair: AMD-JBL, Correlation: 0.9157694496134334
Pair: AMD-J, Correlation: 0.9456125701244197
Pair: AMD-JPM, Correlation: 0.9137784131468881
Pair: AMD-KKR, Correlation: 0.9340668920340452
Pair: AMD-KLAC, Correlation: 0.9570284585675771
Pair: AMD-LRCX, Correlation: 0.9811586714528969
Pair: AMD-LDOS, Correlation: 0.9001811809424975
Pair: AMD-LEN, Correlation: 0.9251769128528027
Pair: AMD-LIN, Correlation: 0.9632646053807548
Pair: AMD-LOW, Correlation: 0.9434309177449524
Pair: AMD-LULU, Correlation: 0.9158770158161652
Pair: AMD-MMC, Correlation: 0.9367118387340307
Pair: AMD-MLM, Correlation: 0.9374847768847675
Pair: AMD-MAS, Correlation: 0.9053000653507876
Pair: AMD-MA, Correlation: 0.9250624099140239
Pair: AMD-MCD, Correlation: 0.9051344107988701
Pair: AMD-MTD, Correlation: 0.9013789041713848
Pair: AMD-MCHP, Correlation: 0.9277234648174477
Pair: AMD-MU, Correlation: 0.908184670482391
Pair: AMD-MSFT, Correlation: 0.9806679422859347
Pair: AMD-MOH, Correlation: 0.9372620253160507
Pair: AMD-MPWR, Correlation: 0.9691585502634958
Pair: AMD-MCO, Correlation: 0.941118605731311
Pair: AMD-MS, Correlation: 0.9230567236328975
Pair: AMD-MSI, Correlation: 0.938767740363483
Pair: AMD-MSCI, Correlation: 0.9481436219344488
Pair: AMD-NDAQ, Correlation: 0.9196824782919568
Pair: AMD-NDSN, Correlation: 0.9202613265563652
Pair: AMD-NVR, Correlation: 0.9356381472866832
Pair: AMD-NXPI, Correlation: 0.9172726267322968
Pair: AMD-ORLY, Correlation: 0.9245808706420398
Pair: AMD-ODFL, Correlation: 0.9596125278923818
Pair: AMD-ORCL, Correlation: 0.9199726729883934
Pair: AMD-PCAR, Correlation: 0.9224965360742602
Pair: AMD-PANW, Correlation: 0.9274843683691729
Pair: AMD-PH, Correlation: 0.9335625570438656
Pair: AMD-PAYX, Correlation: 0.9164130266842843
Pair: AMD-POOL, Correlation: 0.9191806508717036
Pair: AMD-PG, Correlation: 0.9352227582485122
Pair: AMD-PGR, Correlation: 0.9287766674139073
Pair: AMD-PLD, Correlation: 0.919737364477627
Pair: AMD-PTC, Correlation: 0.921530309654815
Pair: AMD-PHM, Correlation: 0.9096843292603446
Pair: AMD-PWR, Correlation: 0.9046481360251682
Pair: AMD-QCOM, Correlation: 0.9573832291537985
Pair: AMD-RJF, Correlation: 0.9052804392370246
Pair: AMD-RSG, Correlation: 0.9456793048037032
Pair: AMD-ROL, Correlation: 0.9127295004346491
Pair: AMD-ROP, Correlation: 0.9111029594693103
Pair: AMD-SPGI, Correlation: 0.9367483986509854
Pair: AMD-CRM, Correlation: 0.9138046665368518
Pair: AMD-STX, Correlation: 0.9061088208651479
Pair: AMD-NOW, Correlation: 0.9740100104722912
Pair: AMD-SHW, Correlation: 0.93757245607115
Pair: AMD-SO, Correlation: 0.9071478419092797
Pair: AMD-STE, Correlation: 0.9244748176786631
Pair: AMD-SYK, Correlation: 0.9219435019003457
Pair: AMD-SNPS, Correlation: 0.9679309623873809
Pair: AMD-TMUS, Correlation: 0.9224478145211144
Pair: AMD-TEL, Correlation: 0.9004173047991284
Pair: AMD-TER, Correlation: 0.9368330498564804
Pair: AMD-TXN, Correlation: 0.9134353750173146
Pair: AMD-TMO, Correlation: 0.9301818574871933
Pair: AMD-TJX, Correlation: 0.9068932998125335
Pair: AMD-TSCO, Correlation: 0.9447584059595907
Pair: AMD-TT, Correlation: 0.9417558783944074
Pair: AMD-TDG, Correlation: 0.9354898040249477
Pair: AMD-TYL, Correlation: 0.9081669899511451
Pair: AMD-UNP, Correlation: 0.9052971023731933
Pair: AMD-URI, Correlation: 0.9230695641943785
Pair: AMD-UNH, Correlation: 0.9121712776854689
Pair: AMD-VRSK, Correlation: 0.9351972309737551
Pair: AMD-V, Correlation: 0.9057941378818424
Pair: AMD-VMC, Correlation: 0.9014498631883413
Pair: AMD-WRB, Correlation: 0.9154616459970979
Pair: AMD-GWW, Correlation: 0.9141285120278251
Pair: AMD-WMT, Correlation: 0.9284172131617835
Pair: AMD-WM, Correlation: 0.9369525234299327
Pair: AMD-WST, Correlation: 0.9369942205877431
Pair: AMD-WTW, Correlation: 0.9077284627836816
Pair: AMD-XYL, Correlation: 0.9126165398214999
Pair: AMD-ZTS, Correlation: 0.9232637427927303
Pair: AES-A, Correlation: 0.9275697019828664
Pair: AES-TECH, Correlation: 0.9294056677388232
Pair: AES-DHR, Correlation: 0.9105589153177762
Pair: AES-DE, Correlation: 0.9060209753320271
Pair: AES-DG, Correlation: 0.912100228344598
Pair: AES-ENPH, Correlation: 0.9202840687186981
Pair: AES-IDXX, Correlation: 0.9019740071195309
Pair: AES-PODD, Correlation: 0.9466420101152494
Pair: AES-KDP, Correlation: 0.9023869124599228
Pair: AES-KEYS, Correlation: 0.9281150389429093
Pair: AES-MTD, Correlation: 0.9209156759892207
Pair: AES-NEE, Correlation: 0.923174402354869
Pair: AES-NSC, Correlation: 0.9152495388277162
Pair: AES-POOL, Correlation: 0.9055513336041324
Pair: AES-RMD, Correlation: 0.9201284045312237
Pair: AES-RVTY, Correlation: 0.909420443877936
Pair: AES-TGT, Correlation: 0.9146957060687488
Pair: AES-TDY, Correlation: 0.9076631420168176
Pair: AES-TMO, Correlation: 0.9146647087912894
Pair: AES-UPS, Correlation: 0.9134105137824023
Pair: AFL-ALL, Correlation: 0.9549237206906377
Pair: AFL-GOOGL, Correlation: 0.9314122090565682
Pair: AFL-GOOG, Correlation: 0.931259217182059
Pair: AFL-AXP, Correlation: 0.9650682414113351
Pair: AFL-AMP, Correlation: 0.9723565205588465
Pair: AFL-AME, Correlation: 0.9462775924434599
Pair: AFL-AMGN, Correlation: 0.9220525081983512
Pair: AFL-APH, Correlation: 0.9747514555784066
Pair: AFL-ADI, Correlation: 0.9517427009218048
Pair: AFL-AON, Correlation: 0.9364347542181164
Pair: AFL-APO, Correlation: 0.9625257133039551
Pair: AFL-AAPL, Correlation: 0.9276930353938796
Pair: AFL-AMAT, Correlation: 0.9346669178560344
Pair: AFL-ACGL, Correlation: 0.9759397816639461
Pair: AFL-ANET, Correlation: 0.9624843158804187
Pair: AFL-AJG, Correlation: 0.9722215809965012
Pair: AFL-AIZ, Correlation: 0.914565337948053
Pair: AFL-ATO, Correlation: 0.9048636751421772
Pair: AFL-ADP, Correlation: 0.9520974706335507
Pair: AFL-AZO, Correlation: 0.9574296923444526
Pair: AFL-AVY, Correlation: 0.9155641123655912
Pair: AFL-AXON, Correlation: 0.9439914472845886
Pair: AFL-BLK, Correlation: 0.9059168921709716
Pair: AFL-BX, Correlation: 0.9335637757462194
Pair: AFL-BKNG, Correlation: 0.9444869653359453
Pair: AFL-BSX, Correlation: 0.9608683543913998
Pair: AFL-AVGO, Correlation: 0.9530969907090902
Pair: AFL-BR, Correlation: 0.9343868507365687
Pair: AFL-BRO, Correlation: 0.9652606814512663
Pair: AFL-BLDR, Correlation: 0.9281221966646512
Pair: AFL-CDNS, Correlation: 0.9437423417107594
Pair: AFL-CAT, Correlation: 0.9631752047052915
Pair: AFL-CBOE, Correlation: 0.9574970179013351
Pair: AFL-CBRE, Correlation: 0.9246237669845161
Pair: AFL-CDW, Correlation: 0.9093297603204665
Pair: AFL-COR, Correlation: 0.9488783922483071
Pair: AFL-CVX, Correlation: 0.9021681524921621
Pair: AFL-CMG, Correlation: 0.9153114674800916
Pair: AFL-CB, Correlation: 0.9722583689908845
Pair: AFL-CI, Correlation: 0.9349792348435371
Pair: AFL-CINF, Correlation: 0.9160301556849387
Pair: AFL-CTAS, Correlation: 0.9763379726320341
Pair: AFL-KO, Correlation: 0.9357370347880477
Pair: AFL-ED, Correlation: 0.9127180536559469
Pair: AFL-CEG, Correlation: 0.925393597427002
Pair: AFL-CPRT, Correlation: 0.9465434336177193
Pair: AFL-COST, Correlation: 0.9672831086294749
Pair: AFL-CMI, Correlation: 0.934918708741073
Pair: AFL-DRI, Correlation: 0.9360923928762164
Pair: AFL-DECK, Correlation: 0.9265537255067317
Pair: AFL-DE, Correlation: 0.9047365963185536
Pair: AFL-DELL, Correlation: 0.9020969973635916
Pair: AFL-DFS, Correlation: 0.922714429961541
Pair: AFL-DOV, Correlation: 0.9294878492837546
Pair: AFL-DHI, Correlation: 0.962013467413462
Pair: AFL-DUK, Correlation: 0.9098530258896742
Pair: AFL-ETN, Correlation: 0.9572167390391558
Pair: AFL-ELV, Correlation: 0.9276709716575008
Pair: AFL-EMR, Correlation: 0.943001859748714
Pair: AFL-ETR, Correlation: 0.9202657607453069
Pair: AFL-ERIE, Correlation: 0.954143141719826
Pair: AFL-EG, Correlation: 0.9484900577413654
Pair: AFL-EXPD, Correlation: 0.9069074416370867
Pair: AFL-FDS, Correlation: 0.9114388240204891
Pair: AFL-FICO, Correlation: 0.9442152815928124
Pair: AFL-FAST, Correlation: 0.9323046780192795
Pair: AFL-FI, Correlation: 0.9262402452013117
Pair: AFL-FTNT, Correlation: 0.9071385068795432
Pair: AFL-GRMN, Correlation: 0.9027586735545177
Pair: AFL-IT, Correlation: 0.976351405339648
Pair: AFL-GD, Correlation: 0.9346089414961503
Pair: AFL-GS, Correlation: 0.9464338792082181
Pair: AFL-HIG, Correlation: 0.9762569992227059
Pair: AFL-HCA, Correlation: 0.9658511226628359
Pair: AFL-HLT, Correlation: 0.9691477167146982
Pair: AFL-HD, Correlation: 0.9178573483640274
Pair: AFL-HWM, Correlation: 0.940187395924399
Pair: AFL-HUBB, Correlation: 0.963404351521795
Pair: AFL-ITW, Correlation: 0.9212954971430862
Pair: AFL-IR, Correlation: 0.941225987230633
Pair: AFL-ICE, Correlation: 0.92636189990307
Pair: AFL-INTU, Correlation: 0.9264924462079157
Pair: AFL-ISRG, Correlation: 0.9381939691450218
Pair: AFL-IRM, Correlation: 0.9582746747511073
Pair: AFL-JBL, Correlation: 0.9328230384031532
Pair: AFL-J, Correlation: 0.9145896708582135
Pair: AFL-JPM, Correlation: 0.9598065876704328
Pair: AFL-KKR, Correlation: 0.9397598139900533
Pair: AFL-KLAC, Correlation: 0.9513765684150903
Pair: AFL-LRCX, Correlation: 0.9169121960748163
Pair: AFL-LDOS, Correlation: 0.9272642548272307
Pair: AFL-LEN, Correlation: 0.9498342025898092
Pair: AFL-LII, Correlation: 0.9549854219884747
Pair: AFL-LLY, Correlation: 0.9373807649372248
Pair: AFL-LIN, Correlation: 0.9592333335472898
Pair: AFL-LMT, Correlation: 0.9244080997912866
Pair: AFL-L, Correlation: 0.95022708834672
Pair: AFL-LOW, Correlation: 0.9275271008223636
Pair: AFL-MPC, Correlation: 0.9381004585068498
Pair: AFL-MAR, Correlation: 0.9656682039134419
Pair: AFL-MMC, Correlation: 0.9657746347131064
Pair: AFL-MLM, Correlation: 0.9604685592948695
Pair: AFL-MAS, Correlation: 0.9144632911695868
Pair: AFL-MA, Correlation: 0.924894915058521
Pair: AFL-MCD, Correlation: 0.9301241190881498
Pair: AFL-MCK, Correlation: 0.9075144278424098
Pair: AFL-MRK, Correlation: 0.9429094552987868
Pair: AFL-MET, Correlation: 0.9486956915643528
Pair: AFL-MCHP, Correlation: 0.9098625578213264
Pair: AFL-MSFT, Correlation: 0.9390143330291831
Pair: AFL-MOH, Correlation: 0.9076182646753446
Pair: AFL-MDLZ, Correlation: 0.9108110019053819
Pair: AFL-MPWR, Correlation: 0.9433534662954959
Pair: AFL-MCO, Correlation: 0.9254127589404029
Pair: AFL-MS, Correlation: 0.9299736650551672
Pair: AFL-MSI, Correlation: 0.9804877432610684
Pair: AFL-NDAQ, Correlation: 0.915509497391057
Pair: AFL-NTAP, Correlation: 0.9194297935409227
Pair: AFL-NDSN, Correlation: 0.9044252085005261
Pair: AFL-NOC, Correlation: 0.9154528508287487
Pair: AFL-NUE, Correlation: 0.917897353762862
Pair: AFL-NVR, Correlation: 0.9676622004335984
Pair: AFL-NXPI, Correlation: 0.9141487160080637
Pair: AFL-ORLY, Correlation: 0.9685815080079806
Pair: AFL-ODFL, Correlation: 0.9315772019711627
Pair: AFL-ON, Correlation: 0.9035122577118344
Pair: AFL-OKE, Correlation: 0.9551415226850966
Pair: AFL-ORCL, Correlation: 0.9682269133115601
Pair: AFL-PCAR, Correlation: 0.9543964849397111
Pair: AFL-PKG, Correlation: 0.9539318588644657
Pair: AFL-PANW, Correlation: 0.958782387982882
Pair: AFL-PH, Correlation: 0.9710623363167247
Pair: AFL-PAYX, Correlation: 0.9407644891141764
Pair: AFL-PEP, Correlation: 0.9141433686557504
Pair: AFL-PSX, Correlation: 0.9087911401204088
Pair: AFL-PFG, Correlation: 0.9298422283467689
Pair: AFL-PG, Correlation: 0.9225476027364443
Pair: AFL-PGR, Correlation: 0.9756899288108125
Pair: AFL-PRU, Correlation: 0.9077594708134555
Pair: AFL-PEG, Correlation: 0.9457924981683257
Pair: AFL-PTC, Correlation: 0.9451672535704349
Pair: AFL-PHM, Correlation: 0.9537823385928514
Pair: AFL-PWR, Correlation: 0.9393496029102493
Pair: AFL-RJF, Correlation: 0.9582813890611911
Pair: AFL-RTX, Correlation: 0.9331042566671949
Pair: AFL-RF, Correlation: 0.9032782242277677
Pair: AFL-RSG, Correlation: 0.9743243430508244
Pair: AFL-ROL, Correlation: 0.9225288153867407
Pair: AFL-ROP, Correlation: 0.9164590540214077
Pair: AFL-ROST, Correlation: 0.9004329721898313
Pair: AFL-SPGI, Correlation: 0.9073766415534508
Pair: AFL-SRE, Correlation: 0.902962691435319
Pair: AFL-NOW, Correlation: 0.9015706037379085
Pair: AFL-SHW, Correlation: 0.9191766147445782
Pair: AFL-SNA, Correlation: 0.9394208777137797
Pair: AFL-SO, Correlation: 0.948779604486091
Pair: AFL-STLD, Correlation: 0.9513305059403978
Pair: AFL-SYK, Correlation: 0.9498195015094809
Pair: AFL-SNPS, Correlation: 0.9429574614498039
Pair: AFL-TMUS, Correlation: 0.9409253843659743
Pair: AFL-TEL, Correlation: 0.9080111597041028
Pair: AFL-TXN, Correlation: 0.9083397783663871
Pair: AFL-TPL, Correlation: 0.9440343880732679
Pair: AFL-TXT, Correlation: 0.911338510779587
Pair: AFL-TJX, Correlation: 0.9706607005222874
Pair: AFL-TSCO, Correlation: 0.9414494121137056
Pair: AFL-TT, Correlation: 0.964018694886607
Pair: AFL-TDG, Correlation: 0.972914171337325
Pair: AFL-TRV, Correlation: 0.9627407767760757
Pair: AFL-UNP, Correlation: 0.9020472935932176
Pair: AFL-URI, Correlation: 0.9614832616456448
Pair: AFL-UNH, Correlation: 0.9355205844255047
Pair: AFL-VLO, Correlation: 0.9410653078382063
Pair: AFL-VRSK, Correlation: 0.9292246500521241
Pair: AFL-VRTX, Correlation: 0.9453502346706459
Pair: AFL-V, Correlation: 0.9168328211098679
Pair: AFL-VMC, Correlation: 0.9490330368159735
Pair: AFL-WRB, Correlation: 0.9685811440672951
Pair: AFL-GWW, Correlation: 0.9578168086194567
Pair: AFL-WMT, Correlation: 0.9508740750633344
Pair: AFL-WM, Correlation: 0.9597290885208234
Pair: AFL-WELL, Correlation: 0.9398351724665239
Pair: AFL-WTW, Correlation: 0.929388513416097
Pair: AFL-XYL, Correlation: 0.9024272052362706
Pair: AFL-YUM, Correlation: 0.9222920531668337
Pair: A-APD, Correlation: 0.9558481609113147
Pair: A-ALLE, Correlation: 0.9176802723558618
Pair: A-LNT, Correlation: 0.9361772463835385
Pair: A-ALL, Correlation: 0.9198470162214052
Pair: A-GOOGL, Correlation: 0.9529884911059701
Pair: A-GOOG, Correlation: 0.9532942830196569
Pair: A-AMZN, Correlation: 0.9352666788264378
Pair: A-AMCR, Correlation: 0.9004926579578286
Pair: A-AEE, Correlation: 0.94009400203601
Pair: A-AEP, Correlation: 0.9151171503505807
Pair: A-AXP, Correlation: 0.9089399361542462
Pair: A-AMT, Correlation: 0.9271363234620523
Pair: A-AWK, Correlation: 0.9583199353827697
Pair: A-AMP, Correlation: 0.908814931547127
Pair: A-AME, Correlation: 0.9599144172760269
Pair: A-AMGN, Correlation: 0.9121045152936985
Pair: A-APH, Correlation: 0.9172499510125636
Pair: A-ADI, Correlation: 0.9622921460596776
Pair: A-ANSS, Correlation: 0.9528350082585633
Pair: A-AON, Correlation: 0.9621441147290528
Pair: A-AAPL, Correlation: 0.9442443990919609
Pair: A-AMAT, Correlation: 0.919644245493898
Pair: A-AJG, Correlation: 0.9080537613309434
Pair: A-AIZ, Correlation: 0.9379933947553168
Pair: A-ADSK, Correlation: 0.9505003274035494
Pair: A-ADP, Correlation: 0.9563271134274163
Pair: A-AZO, Correlation: 0.9025910822023783
Pair: A-AVY, Correlation: 0.9821300484480501
Pair: A-BAC, Correlation: 0.934212086835517
Pair: A-BBY, Correlation: 0.9255652544091156
Pair: A-TECH, Correlation: 0.9615872700558619
Pair: A-BLK, Correlation: 0.9714931026875211
Pair: A-BX, Correlation: 0.9286413111287838
Pair: A-BR, Correlation: 0.9476173890364342
Pair: A-BRO, Correlation: 0.92467635363505
Pair: A-CHRW, Correlation: 0.9001973585181138
Pair: A-CDNS, Correlation: 0.9041480527826844
Pair: A-CPT, Correlation: 0.9328427403389091
Pair: A-COF, Correlation: 0.9024183665710171
Pair: A-CBRE, Correlation: 0.9551971257779401
Pair: A-CDW, Correlation: 0.9554326862977361
Pair: A-CE, Correlation: 0.9304230840365675
Pair: A-CNC, Correlation: 0.9015067538813374
Pair: A-CRL, Correlation: 0.9445446507528485
Pair: A-SCHW, Correlation: 0.9447164681415504
Pair: A-CB, Correlation: 0.9097242188659043
Pair: A-CHD, Correlation: 0.9390713745616208
Pair: A-CI, Correlation: 0.9062978140731662
Pair: A-CINF, Correlation: 0.9304248653993197
Pair: A-CTAS, Correlation: 0.906090883309803
Pair: A-CSCO, Correlation: 0.9228306093641994
Pair: A-CME, Correlation: 0.924766219340189
Pair: A-CMS, Correlation: 0.9191867485863463
Pair: A-KO, Correlation: 0.9363850792636215
Pair: A-COO, Correlation: 0.9363924854441714
Pair: A-CPRT, Correlation: 0.9323387662174251
Pair: A-GLW, Correlation: 0.923847786362224
Pair: A-CSGP, Correlation: 0.9507019935852363
Pair: A-COST, Correlation: 0.904708369755627
Pair: A-CSX, Correlation: 0.9675353930837204
Pair: A-CMI, Correlation: 0.9419162568993223
Pair: A-DHR, Correlation: 0.9890903473445479
Pair: A-DRI, Correlation: 0.9441422651694362
Pair: A-DE, Correlation: 0.9654565984696204
Pair: A-DXCM, Correlation: 0.9481852999360344
Pair: A-DLR, Correlation: 0.9042191895218598
Pair: A-DFS, Correlation: 0.9234521731814976
Pair: A-DPZ, Correlation: 0.9539995730247867
Pair: A-DOV, Correlation: 0.9733591625253947
Pair: A-DTE, Correlation: 0.9337562551325891
Pair: A-DUK, Correlation: 0.9404218344093331
Pair: A-EBAY, Correlation: 0.930704264426647
Pair: A-EW, Correlation: 0.9402581240019681
Pair: A-ELV, Correlation: 0.9583202998905638
Pair: A-EMR, Correlation: 0.9465650438914031
Pair: A-ETR, Correlation: 0.9323350338089639
Pair: A-EFX, Correlation: 0.9522671129031154
Pair: A-EQIX, Correlation: 0.9522082161592966
Pair: A-EXC, Correlation: 0.9087576684600079
Pair: A-EXPD, Correlation: 0.9751273665325968
Pair: A-EXR, Correlation: 0.9582902105139247
Pair: A-FDS, Correlation: 0.9649046364871176
Pair: A-FAST, Correlation: 0.9420296325642508
Pair: A-FITB, Correlation: 0.9234633651068862
Pair: A-FI, Correlation: 0.9040469812751053
Pair: A-FTNT, Correlation: 0.9362735535349936
Pair: A-GRMN, Correlation: 0.9371477048401696
Pair: A-IT, Correlation: 0.9046394212031428
Pair: A-GEN, Correlation: 0.9414573893856197
Pair: A-GPC, Correlation: 0.9148064742789109
Pair: A-GS, Correlation: 0.9147822162061594
Pair: A-HCA, Correlation: 0.9279349577330805
Pair: A-HSY, Correlation: 0.9318934280008145
Pair: A-HOLX, Correlation: 0.9622502961037166
Pair: A-HD, Correlation: 0.9713956134538525
Pair: A-HON, Correlation: 0.960881506364536
Pair: A-HPQ, Correlation: 0.9106866851109106
Pair: A-HUM, Correlation: 0.9213588143104419
Pair: A-IEX, Correlation: 0.9721472966836692
Pair: A-IDXX, Correlation: 0.9768928259860614
Pair: A-ITW, Correlation: 0.9651143114364226
Pair: A-PODD, Correlation: 0.9508637149758755
Pair: A-ICE, Correlation: 0.9531567287837365
Pair: A-IPG, Correlation: 0.9335993524933497
Pair: A-INTU, Correlation: 0.9610312809212765
Pair: A-ISRG, Correlation: 0.9358109179493425
Pair: A-INVH, Correlation: 0.9155274489102537
Pair: A-IQV, Correlation: 0.977494418626225
Pair: A-JBHT, Correlation: 0.9608033415387572
Pair: A-JKHY, Correlation: 0.9204246333854028
Pair: A-J, Correlation: 0.9603154585308404
Pair: A-JNJ, Correlation: 0.9409802471949132
Pair: A-JCI, Correlation: 0.938983072387667
Pair: A-JPM, Correlation: 0.9273693648650807
Pair: A-KDP, Correlation: 0.9581855924702415
Pair: A-KEYS, Correlation: 0.9728660150329268
Pair: A-LHX, Correlation: 0.9419402818816851
Pair: A-LH, Correlation: 0.9751968858461838
Pair: A-LRCX, Correlation: 0.9150066433765583
Pair: A-LDOS, Correlation: 0.9175281514573829
Pair: A-LIN, Correlation: 0.9316753364824841
Pair: A-LYV, Correlation: 0.947109328477395
Pair: A-LMT, Correlation: 0.9114415338976508
Pair: A-LOW, Correlation: 0.9710185795125148
Pair: A-LULU, Correlation: 0.9402146078821652
Pair: A-MMC, Correlation: 0.9464509553222452
Pair: A-MLM, Correlation: 0.9157988282319818
Pair: A-MAS, Correlation: 0.9358061388347024
Pair: A-MA, Correlation: 0.9538563510746723
Pair: A-MKC, Correlation: 0.9018884628585019
Pair: A-MCD, Correlation: 0.9572771385998341
Pair: A-MET, Correlation: 0.9167959735215164
Pair: A-MTD, Correlation: 0.9917837835869852
Pair: A-MCHP, Correlation: 0.9705514915667299
Pair: A-MU, Correlation: 0.9091655001768335
Pair: A-MSFT, Correlation: 0.9416207216836201
Pair: A-MAA, Correlation: 0.9570617173756835
Pair: A-MOH, Correlation: 0.959244528505807
Pair: A-MDLZ, Correlation: 0.9342404835435679
Pair: A-MPWR, Correlation: 0.9110391974235713
Pair: A-MNST, Correlation: 0.9388019973407589
Pair: A-MCO, Correlation: 0.9621925682114018
Pair: A-MS, Correlation: 0.9604520056025804
Pair: A-MSI, Correlation: 0.9092749747230602
Pair: A-MSCI, Correlation: 0.9811136987151055
Pair: A-NDAQ, Correlation: 0.981928199752737
Pair: A-NEE, Correlation: 0.9704877372013163
Pair: A-NKE, Correlation: 0.9247987984294325
Pair: A-NDSN, Correlation: 0.9779382771586382
Pair: A-NSC, Correlation: 0.9730094736591153
Pair: A-NOC, Correlation: 0.9209622025615025
Pair: A-NVR, Correlation: 0.9183154443082334
Pair: A-NXPI, Correlation: 0.9351925943542713
Pair: A-ORLY, Correlation: 0.9074904428292218
Pair: A-ODFL, Correlation: 0.9439305890039272
Pair: A-PKG, Correlation: 0.9164561228259612
Pair: A-PAYX, Correlation: 0.9643804464312361
Pair: A-PEP, Correlation: 0.9539580254952092
Pair: A-PNC, Correlation: 0.933635134394418
Pair: A-POOL, Correlation: 0.9778953964432374
Pair: A-PG, Correlation: 0.9568043087297831
Pair: A-PLD, Correlation: 0.9751773448927076
Pair: A-PEG, Correlation: 0.9250580057608837
Pair: A-PTC, Correlation: 0.9393469304862061
Pair: A-PSA, Correlation: 0.9239734056002042
Pair: A-QCOM, Correlation: 0.9254759180728929
Pair: A-DGX, Correlation: 0.9662001319992166
Pair: A-RJF, Correlation: 0.9396776381782518
Pair: A-RF, Correlation: 0.9364905477646074
Pair: A-RSG, Correlation: 0.9274122427659401
Pair: A-RMD, Correlation: 0.9763886908982131
Pair: A-RVTY, Correlation: 0.9531612220946668
Pair: A-ROK, Correlation: 0.9733689406232479
Pair: A-ROL, Correlation: 0.9530677589640348
Pair: A-ROP, Correlation: 0.9566181779155343
Pair: A-ROST, Correlation: 0.9046159063424161
Pair: A-SPGI, Correlation: 0.9712168437776382
Pair: A-CRM, Correlation: 0.9326963703925965
Pair: A-SBAC, Correlation: 0.9123253194500717
Pair: A-STX, Correlation: 0.9105739453214473
Pair: A-SRE, Correlation: 0.9027398680172235
Pair: A-NOW, Correlation: 0.9290775613063914
Pair: A-SHW, Correlation: 0.9650441255797017
Pair: A-SO, Correlation: 0.9268210254076168
Pair: A-SBUX, Correlation: 0.9363462928440595
Pair: A-STE, Correlation: 0.9689881108932951
Pair: A-SYK, Correlation: 0.9456556872199077
Pair: A-SNPS, Correlation: 0.9053079471273517
Pair: A-SYY, Correlation: 0.9278994689111258
Pair: A-TMUS, Correlation: 0.9519359995704287
Pair: A-TROW, Correlation: 0.9185704124267495
Pair: A-TTWO, Correlation: 0.9001645559966318
Pair: A-TGT, Correlation: 0.9413118320392321
Pair: A-TEL, Correlation: 0.9681872747766065
Pair: A-TDY, Correlation: 0.9698397708602662
Pair: A-TER, Correlation: 0.9640132106641175
Pair: A-TSLA, Correlation: 0.9068021521045297
Pair: A-TXN, Correlation: 0.9813007978831371
Pair: A-TMO, Correlation: 0.987017820899365
Pair: A-TJX, Correlation: 0.9081427691151688
Pair: A-TSCO, Correlation: 0.9326581184643736
Pair: A-TRV, Correlation: 0.9058474131682974
Pair: A-TRMB, Correlation: 0.9256126823940714
Pair: A-TYL, Correlation: 0.950089487770877
Pair: A-UNP, Correlation: 0.9636312260279488
Pair: A-UPS, Correlation: 0.9553430371209195
Pair: A-UNH, Correlation: 0.9619830637181536
Pair: A-VRSN, Correlation: 0.9067176872089634
Pair: A-VRSK, Correlation: 0.9408172187255348
Pair: A-V, Correlation: 0.9520369351782247
Pair: A-VMC, Correlation: 0.9135930743224283
Pair: A-WRB, Correlation: 0.9243616267271533
Pair: A-WMT, Correlation: 0.9152624921810325
Pair: A-WM, Correlation: 0.9515526628999167
Pair: A-WAT, Correlation: 0.9792874208813349
Pair: A-WEC, Correlation: 0.9265445685337018
Pair: A-WST, Correlation: 0.9641381208335674
Pair: A-WTW, Correlation: 0.9582804089508701
Pair: A-WDAY, Correlation: 0.9002666386632587
Pair: A-XEL, Correlation: 0.9295245016569389
Pair: A-XYL, Correlation: 0.9621938691873909
Pair: A-YUM, Correlation: 0.9584589686996503
Pair: A-ZBRA, Correlation: 0.9302362204090342
Pair: A-ZTS, Correlation: 0.9640329516767167
Pair: APD-AKAM, Correlation: 0.9147981207802249
Pair: APD-ALLE, Correlation: 0.9231012929815349
Pair: APD-LNT, Correlation: 0.96321754459289
Pair: APD-ALL, Correlation: 0.9166994179423154
Pair: APD-GOOGL, Correlation: 0.9227713278024707
Pair: APD-GOOG, Correlation: 0.9224386134255355
Pair: APD-AMZN, Correlation: 0.9402615908796463
Pair: APD-AEE, Correlation: 0.9680095843068738
Pair: APD-AEP, Correlation: 0.9490917085227516
Pair: APD-AMT, Correlation: 0.9477205793021837
Pair: APD-AWK, Correlation: 0.9731143020568634
Pair: APD-AME, Correlation: 0.9534944404418617
Pair: APD-AMGN, Correlation: 0.944116813434091
Pair: APD-APH, Correlation: 0.9042700560651663
Pair: APD-ADI, Correlation: 0.9529635149644727
Pair: APD-ANSS, Correlation: 0.9628194369762978
Pair: APD-AON, Correlation: 0.9641780147617596
Pair: APD-AAPL, Correlation: 0.9255520902184793
Pair: APD-AIZ, Correlation: 0.9319332925891723
Pair: APD-ATO, Correlation: 0.9382443487934985
Pair: APD-ADSK, Correlation: 0.9537732629750373
Pair: APD-ADP, Correlation: 0.9556237140664889
Pair: APD-AVY, Correlation: 0.9540385778840202
Pair: APD-BAC, Correlation: 0.9042960904964846
Pair: APD-BDX, Correlation: 0.9207103172789731
Pair: APD-BBY, Correlation: 0.9357891579165027
Pair: APD-TECH, Correlation: 0.9180631973406574
Pair: APD-BLK, Correlation: 0.9528482955764127
Pair: APD-BSX, Correlation: 0.9111628069192873
Pair: APD-BR, Correlation: 0.957352050261274
Pair: APD-BRO, Correlation: 0.9130066247316269
Pair: APD-CHRW, Correlation: 0.9133059819474735
Pair: APD-CPT, Correlation: 0.9051347069719538
Pair: APD-CBRE, Correlation: 0.9233764613671956
Pair: APD-CDW, Correlation: 0.933876916530651
Pair: APD-CE, Correlation: 0.9073848654507632
Pair: APD-CNC, Correlation: 0.9120560165374401
Pair: APD-CHD, Correlation: 0.9676168465141499
Pair: APD-CI, Correlation: 0.9093944153565132
Pair: APD-CINF, Correlation: 0.9343337780020498
Pair: APD-CTAS, Correlation: 0.9015074796325674
Pair: APD-CSCO, Correlation: 0.9435895440585604
Pair: APD-CLX, Correlation: 0.9116878257523119
Pair: APD-CME, Correlation: 0.9451831654189059
Pair: APD-CMS, Correlation: 0.9565701737812708
Pair: APD-KO, Correlation: 0.9440367022483864
Pair: APD-CMCSA, Correlation: 0.9029894395256108
Pair: APD-ED, Correlation: 0.9120272001777162
Pair: APD-STZ, Correlation: 0.9011256034610629
Pair: APD-COO, Correlation: 0.9548573213288502
Pair: APD-CPRT, Correlation: 0.9249349791791109
Pair: APD-GLW, Correlation: 0.9205972136187547
Pair: APD-CSGP, Correlation: 0.9746409323158972
Pair: APD-CCI, Correlation: 0.900952867011949
Pair: APD-CSX, Correlation: 0.95921406201282
Pair: APD-CMI, Correlation: 0.9370623819531478
Pair: APD-DHR, Correlation: 0.9608327788704779
Pair: APD-DRI, Correlation: 0.9369364880270921
Pair: APD-DE, Correlation: 0.9235544327894349
Pair: APD-DXCM, Correlation: 0.9261371653990068
Pair: APD-DLR, Correlation: 0.9257072894399273
Pair: APD-DPZ, Correlation: 0.9529155484346434
Pair: APD-DOV, Correlation: 0.9507624461805898
Pair: APD-DTE, Correlation: 0.9474890954500237
Pair: APD-DUK, Correlation: 0.9464469478388463
Pair: APD-EBAY, Correlation: 0.9203453949207001
Pair: APD-ECL, Correlation: 0.9290955718314298
Pair: APD-EW, Correlation: 0.9282097348996452
Pair: APD-EA, Correlation: 0.9048951086027666
Pair: APD-ELV, Correlation: 0.93863651066211
Pair: APD-EMR, Correlation: 0.9090239355575496
Pair: APD-ETR, Correlation: 0.9558167602445014
Pair: APD-EFX, Correlation: 0.9348958185302336
Pair: APD-EQIX, Correlation: 0.9740361992707025
Pair: APD-EG, Correlation: 0.9059581616364063
Pair: APD-EVRG, Correlation: 0.9178838294290669
Pair: APD-ES, Correlation: 0.9222633334570078
Pair: APD-EXPD, Correlation: 0.9522677444375711
Pair: APD-EXR, Correlation: 0.9317763436908092
Pair: APD-FDS, Correlation: 0.966704765866219
Pair: APD-FAST, Correlation: 0.9232634636089277
Pair: APD-FI, Correlation: 0.9444389577479448
Pair: APD-GRMN, Correlation: 0.9193313262796234
Pair: APD-GEV, Correlation: 0.9166328588247913
Pair: APD-GEN, Correlation: 0.9163172837312833
Pair: APD-GPC, Correlation: 0.9013500025497241
Pair: APD-GL, Correlation: 0.9194408795317645
Pair: APD-HCA, Correlation: 0.9030433609331489
Pair: APD-HSY, Correlation: 0.930833309723743
Pair: APD-HOLX, Correlation: 0.9678927310286757
Pair: APD-HD, Correlation: 0.9711779795479147
Pair: APD-HON, Correlation: 0.970959110106042
Pair: APD-HUM, Correlation: 0.9437703239643651
Pair: APD-IEX, Correlation: 0.9767223462450219
Pair: APD-IDXX, Correlation: 0.9473980265600053
Pair: APD-ITW, Correlation: 0.9721422053193648
Pair: APD-PODD, Correlation: 0.9470277428866407
Pair: APD-ICE, Correlation: 0.9599636312463508
Pair: APD-IPG, Correlation: 0.9034608337274623
Pair: APD-INTU, Correlation: 0.9320739756210777
Pair: APD-ISRG, Correlation: 0.922594309507099
Pair: APD-IQV, Correlation: 0.9430499421815943
Pair: APD-JBHT, Correlation: 0.9398848624389189
Pair: APD-JKHY, Correlation: 0.9456397733010263
Pair: APD-J, Correlation: 0.9318344527620311
Pair: APD-JNJ, Correlation: 0.9544653124221087
Pair: APD-JCI, Correlation: 0.9078576263322085
Pair: APD-JPM, Correlation: 0.9196649539758136
Pair: APD-KDP, Correlation: 0.9679450882704368
Pair: APD-KEYS, Correlation: 0.9390158013508367
Pair: APD-KMB, Correlation: 0.9203263509075531
Pair: APD-LHX, Correlation: 0.9506044669749737
Pair: APD-LH, Correlation: 0.9464934394558789
Pair: APD-LDOS, Correlation: 0.9330225514454913
Pair: APD-LIN, Correlation: 0.9154202095188614
Pair: APD-LYV, Correlation: 0.9342556258080553
Pair: APD-LMT, Correlation: 0.950818259739465
Pair: APD-LOW, Correlation: 0.9566750476039168
Pair: APD-LULU, Correlation: 0.9316279754434221
Pair: APD-MMC, Correlation: 0.9408000274025978
Pair: APD-MAS, Correlation: 0.9459925895160758
Pair: APD-MA, Correlation: 0.972023021191803
Pair: APD-MKC, Correlation: 0.9474219974190361
Pair: APD-MCD, Correlation: 0.964279953387651
Pair: APD-MRK, Correlation: 0.9131806966996279
Pair: APD-MTD, Correlation: 0.9627150745041707
Pair: APD-MCHP, Correlation: 0.9509494641677562
Pair: APD-MSFT, Correlation: 0.9223076856791745
Pair: APD-MAA, Correlation: 0.9312128704466762
Pair: APD-MOH, Correlation: 0.9287936439674693
Pair: APD-MDLZ, Correlation: 0.9594880251902272
Pair: APD-MNST, Correlation: 0.9575818486345129
Pair: APD-MCO, Correlation: 0.9641458603776899
Pair: APD-MS, Correlation: 0.9166456550506445
Pair: APD-MSI, Correlation: 0.9022952464573469
Pair: APD-MSCI, Correlation: 0.9543816733313301
Pair: APD-NDAQ, Correlation: 0.9620860561151153
Pair: APD-NFLX, Correlation: 0.9037935964139053
Pair: APD-NEE, Correlation: 0.9749462504660495
Pair: APD-NKE, Correlation: 0.9227230573493552
Pair: APD-NDSN, Correlation: 0.9679080439189063
Pair: APD-NSC, Correlation: 0.9637673630494166
Pair: APD-NOC, Correlation: 0.9393842037240683
Pair: APD-NVR, Correlation: 0.9201441596555179
Pair: APD-NXPI, Correlation: 0.9169924637959567
Pair: APD-ORLY, Correlation: 0.9073021596495624
Pair: APD-ODFL, Correlation: 0.920758384646339
Pair: APD-PKG, Correlation: 0.9151111125799086
Pair: APD-PAYX, Correlation: 0.9526742396773188
Pair: APD-PEP, Correlation: 0.9639158172055803
Pair: APD-PNC, Correlation: 0.9041394901861971
Pair: APD-POOL, Correlation: 0.9486633005032835
Pair: APD-PG, Correlation: 0.9656091682699828
Pair: APD-PLD, Correlation: 0.9547313652321753
Pair: APD-PEG, Correlation: 0.9432853826725216
Pair: APD-PTC, Correlation: 0.9227203232373861
Pair: APD-PSA, Correlation: 0.9101307706728085
Pair: APD-DGX, Correlation: 0.961146087130063
Pair: APD-RJF, Correlation: 0.9041978861200611
Pair: APD-O, Correlation: 0.9150443661292982
Pair: APD-RF, Correlation: 0.9013325629060894
Pair: APD-RSG, Correlation: 0.9153708054452435
Pair: APD-RMD, Correlation: 0.9560730155785288
Pair: APD-RVTY, Correlation: 0.9256939611785806
Pair: APD-ROK, Correlation: 0.9627338659688985
Pair: APD-ROL, Correlation: 0.959975425478081
Pair: APD-ROP, Correlation: 0.9721100537016765
Pair: APD-ROST, Correlation: 0.9367807204695746
Pair: APD-SPGI, Correlation: 0.9727692795991824
Pair: APD-CRM, Correlation: 0.9421520147905659
Pair: APD-SBAC, Correlation: 0.9290852156019683
Pair: APD-SRE, Correlation: 0.9381910286256624
Pair: APD-NOW, Correlation: 0.9211361625974179
Pair: APD-SHW, Correlation: 0.9609876310132869
Pair: APD-SNA, Correlation: 0.9011330925030283
Pair: APD-SO, Correlation: 0.9346812030917234
Pair: APD-SBUX, Correlation: 0.9646485546949852
Pair: APD-STE, Correlation: 0.9703122399307114
Pair: APD-SYK, Correlation: 0.9516741191318976
Pair: APD-SYY, Correlation: 0.9327617976469944
Pair: APD-TMUS, Correlation: 0.9538298444016026
Pair: APD-TTWO, Correlation: 0.9265038555898473
Pair: APD-TEL, Correlation: 0.9505728763730226
Pair: APD-TDY, Correlation: 0.974287538051307
Pair: APD-TER, Correlation: 0.938460683115513
Pair: APD-TXN, Correlation: 0.9740085530585093
Pair: APD-TMO, Correlation: 0.9670343067593167
Pair: APD-TJX, Correlation: 0.9259023396039269
Pair: APD-TSCO, Correlation: 0.9084329649052192
Pair: APD-TRV, Correlation: 0.9043195955488773
Pair: APD-TYL, Correlation: 0.9581933435517558
Pair: APD-UNP, Correlation: 0.9647292380383763
Pair: APD-UPS, Correlation: 0.9254298400213621
Pair: APD-UNH, Correlation: 0.9497529602803058
Pair: APD-VRSN, Correlation: 0.9504562482409173
Pair: APD-VRSK, Correlation: 0.962977309668468
Pair: APD-VRTX, Correlation: 0.9001604409332163
Pair: APD-V, Correlation: 0.9729634024984275
Pair: APD-VMC, Correlation: 0.9166630970812241
Pair: APD-WRB, Correlation: 0.9166532686305459
Pair: APD-WMT, Correlation: 0.9300633206794471
Pair: APD-WM, Correlation: 0.9417955405535372
Pair: APD-WAT, Correlation: 0.9382050360477986
Pair: APD-WEC, Correlation: 0.9675179612482655
Pair: APD-WST, Correlation: 0.9338760199907392
Pair: APD-WTW, Correlation: 0.9679555903937888
Pair: APD-WDAY, Correlation: 0.9044883001013752
Pair: APD-XEL, Correlation: 0.966679211889898
Pair: APD-XYL, Correlation: 0.9401232814051874
Pair: APD-YUM, Correlation: 0.9611443708286918
Pair: APD-ZTS, Correlation: 0.9625933879411156
Pair: AKAM-AMZN, Correlation: 0.9126238990878888
Pair: AKAM-AMT, Correlation: 0.9182432395373726
Pair: AKAM-AWK, Correlation: 0.9132507592798274
Pair: AKAM-ANSS, Correlation: 0.9221346141813186
Pair: AKAM-ADSK, Correlation: 0.912138506683599
Pair: AKAM-BALL, Correlation: 0.9124882504699252
Pair: AKAM-CHD, Correlation: 0.9120483525835416
Pair: AKAM-CME, Correlation: 0.9044688729763594
Pair: AKAM-CMCSA, Correlation: 0.9035740261372736
Pair: AKAM-COO, Correlation: 0.9176773746254395
Pair: AKAM-CSGP, Correlation: 0.9262843413238567
Pair: AKAM-DPZ, Correlation: 0.9213013508597411
Pair: AKAM-ECL, Correlation: 0.9127985110409518
Pair: AKAM-EW, Correlation: 0.9012581524346548
Pair: AKAM-EQIX, Correlation: 0.9131185444712323
Pair: AKAM-HD, Correlation: 0.905295331012509
Pair: AKAM-HON, Correlation: 0.9048314261050007
Pair: AKAM-IEX, Correlation: 0.9051772261026454
Pair: AKAM-ICE, Correlation: 0.9025344922420708
Pair: AKAM-JKHY, Correlation: 0.9020867894280574
Pair: AKAM-KDP, Correlation: 0.9023428327647213
Pair: AKAM-MA, Correlation: 0.9036469384497529
Pair: AKAM-MKC, Correlation: 0.9061769936070241
Pair: AKAM-MCO, Correlation: 0.9054882511842725
Pair: AKAM-NKE, Correlation: 0.9101545670624345
Pair: AKAM-NSC, Correlation: 0.9105311945908267
Pair: AKAM-POOL, Correlation: 0.9047135296484466
Pair: AKAM-ROP, Correlation: 0.9147026507795056
Pair: AKAM-SPGI, Correlation: 0.9136403000075746
Pair: AKAM-CRM, Correlation: 0.9146670556325137
Pair: AKAM-SBAC, Correlation: 0.9195332184365488
Pair: AKAM-SHW, Correlation: 0.9052836213843841
Pair: AKAM-SBUX, Correlation: 0.9052186153360853
Pair: AKAM-STE, Correlation: 0.916957400242653
Pair: AKAM-TDY, Correlation: 0.9157189642980164
Pair: AKAM-TYL, Correlation: 0.9151261593906633
Pair: AKAM-UNP, Correlation: 0.923305400906302
Pair: AKAM-VRSN, Correlation: 0.9106296896625307
Pair: AKAM-V, Correlation: 0.9109136332162098
Pair: AKAM-WEC, Correlation: 0.9017215456887737
Pair: AKAM-ZTS, Correlation: 0.9095406297787666
Pair: ALB-ENPH, Correlation: 0.9096985322229627
Pair: ARE-ALGN, Correlation: 0.9088749401462325
Pair: ARE-LNT, Correlation: 0.9280620603739123
Pair: ARE-AEE, Correlation: 0.9253833306322428
Pair: ARE-AMT, Correlation: 0.9621049959091499
Pair: ARE-AWK, Correlation: 0.9542944751437985
Pair: ARE-ANSS, Correlation: 0.9114845872092792
Pair: ARE-ADSK, Correlation: 0.9255869838387903
Pair: ARE-BALL, Correlation: 0.9579118761399626
Pair: ARE-BDX, Correlation: 0.9105190769252841
Pair: ARE-BBY, Correlation: 0.929564516857247
Pair: ARE-TECH, Correlation: 0.9240549971431962
Pair: ARE-CPT, Correlation: 0.936113886799933
Pair: ARE-KMX, Correlation: 0.9186142502949561
Pair: ARE-CE, Correlation: 0.9089602492289954
Pair: ARE-CNC, Correlation: 0.9066189751144277
Pair: ARE-CRL, Correlation: 0.9285817704332229
Pair: ARE-CHTR, Correlation: 0.9526841324965338
Pair: ARE-CSCO, Correlation: 0.9023121067966877
Pair: ARE-CLX, Correlation: 0.9036867803268078
Pair: ARE-CME, Correlation: 0.9030441775797841
Pair: ARE-CMS, Correlation: 0.9183477168502372
Pair: ARE-CMCSA, Correlation: 0.9190781499294792
Pair: ARE-COO, Correlation: 0.9282411620525282
Pair: ARE-CSGP, Correlation: 0.9006146412810634
Pair: ARE-CCI, Correlation: 0.9750868402235038
Pair: ARE-CSX, Correlation: 0.9012828295911303
Pair: ARE-DLR, Correlation: 0.9074926680395246
Pair: ARE-DG, Correlation: 0.9227161077469217
Pair: ARE-DPZ, Correlation: 0.9236346391012706
Pair: ARE-DTE, Correlation: 0.9067379924932889
Pair: ARE-EBAY, Correlation: 0.9146943406937361
Pair: ARE-EW, Correlation: 0.9631164078895895
Pair: ARE-EPAM, Correlation: 0.9080824706559644
Pair: ARE-ESS, Correlation: 0.910523948213569
Pair: ARE-EL, Correlation: 0.9431756027289067
Pair: ARE-EVRG, Correlation: 0.919957343172139
Pair: ARE-ES, Correlation: 0.9603645738611557
Pair: ARE-GPN, Correlation: 0.9221279045011395
Pair: ARE-HON, Correlation: 0.9137458209835236
Pair: ARE-HRL, Correlation: 0.9124539768326277
Pair: ARE-IEX, Correlation: 0.9089008166231443
Pair: ARE-IDXX, Correlation: 0.9014217490029024
Pair: ARE-JKHY, Correlation: 0.9246650123423578
Pair: ARE-JNJ, Correlation: 0.9079991004692761
Pair: ARE-KDP, Correlation: 0.9168048665932078
Pair: ARE-LHX, Correlation: 0.9236687738646114
Pair: ARE-LH, Correlation: 0.9002715182287406
Pair: ARE-MKTX, Correlation: 0.9247152913266729
Pair: ARE-MKC, Correlation: 0.9423444998710653
Pair: ARE-MDT, Correlation: 0.9387235259987194
Pair: ARE-MTD, Correlation: 0.9012784924548713
Pair: ARE-MAA, Correlation: 0.9248299731274157
Pair: ARE-NEE, Correlation: 0.9236513230120255
Pair: ARE-NKE, Correlation: 0.9527760207280048
Pair: ARE-NSC, Correlation: 0.9253897548892652
Pair: ARE-NTRS, Correlation: 0.9258036279247946
Pair: ARE-PAYC, Correlation: 0.91931426563853
Pair: ARE-PNC, Correlation: 0.9061324301156026
Pair: ARE-POOL, Correlation: 0.9104227029253749
Pair: ARE-PLD, Correlation: 0.9017853411788092
Pair: ARE-O, Correlation: 0.915458249788973
Pair: ARE-RMD, Correlation: 0.9170637885807604
Pair: ARE-RVTY, Correlation: 0.9565101817862605
Pair: ARE-SBAC, Correlation: 0.9657543608008462
Pair: ARE-SWKS, Correlation: 0.9183033842914428
Pair: ARE-SBUX, Correlation: 0.9068239372885063
Pair: ARE-SYY, Correlation: 0.908945423067211
Pair: ARE-TROW, Correlation: 0.9379313617534608
Pair: ARE-TTWO, Correlation: 0.9229615004588175
Pair: ARE-TDY, Correlation: 0.9130629768156259
Pair: ARE-TFX, Correlation: 0.9398088984570563
Pair: ARE-TFC, Correlation: 0.9065255794854356
Pair: ARE-UDR, Correlation: 0.9402397766278986
Pair: ARE-VRSN, Correlation: 0.9390335760280806
Pair: ARE-WAT, Correlation: 0.9065455803536573
Pair: ARE-WEC, Correlation: 0.9249437859366996
Pair: ARE-XEL, Correlation: 0.9360343639991155
Pair: ARE-ZBRA, Correlation: 0.9246677197613308
Pair: ALGN-APTV, Correlation: 0.9336560970254394
Pair: ALGN-ADSK, Correlation: 0.9053555598640963
Pair: ALGN-BBY, Correlation: 0.9118265782859107
Pair: ALGN-TECH, Correlation: 0.9101102595100703
Pair: ALGN-CZR, Correlation: 0.9539676161043797
Pair: ALGN-KMX, Correlation: 0.9067203071589619
Pair: ALGN-CRL, Correlation: 0.9348987976739082
Pair: ALGN-CHTR, Correlation: 0.9128370766035833
Pair: ALGN-EL, Correlation: 0.9156841847762
Pair: ALGN-MTCH, Correlation: 0.9033079434343981
Pair: ALGN-NKE, Correlation: 0.9268397928912174
Pair: ALGN-RVTY, Correlation: 0.9134167809844518
Pair: ALGN-TROW, Correlation: 0.9559072675621728
Pair: ALGN-TRMB, Correlation: 0.9075044634678815
Pair: ALGN-ZBRA, Correlation: 0.9327442747771196
Pair: ALLE-LNT, Correlation: 0.9413329813962437
Pair: ALLE-ALL, Correlation: 0.9020085838932196
Pair: ALLE-AMZN, Correlation: 0.9307005525642779
Pair: ALLE-AEE, Correlation: 0.9210395409596006
Pair: ALLE-AEP, Correlation: 0.9196513522973487
Pair: ALLE-AMT, Correlation: 0.9140157157669045
Pair: ALLE-AWK, Correlation: 0.9280794431260747
Pair: ALLE-AME, Correlation: 0.909683693940682
Pair: ALLE-ADI, Correlation: 0.9153017608561914
Pair: ALLE-ANSS, Correlation: 0.9384900824124561
Pair: ALLE-AON, Correlation: 0.9037204189138724
Pair: ALLE-AIZ, Correlation: 0.9189327854811297
Pair: ALLE-ATO, Correlation: 0.9023313044818773
Pair: ALLE-ADSK, Correlation: 0.9420942260971845
Pair: ALLE-ADP, Correlation: 0.9063134761011575
Pair: ALLE-AVY, Correlation: 0.9414042604311004
Pair: ALLE-BAC, Correlation: 0.9209371091081668
Pair: ALLE-BBY, Correlation: 0.9220910619892437
Pair: ALLE-BLK, Correlation: 0.9310024866890744
Pair: ALLE-BR, Correlation: 0.935988773987087
Pair: ALLE-CBRE, Correlation: 0.9108258867408294
Pair: ALLE-CDW, Correlation: 0.9266783599003098
Pair: ALLE-CE, Correlation: 0.9115640455144376
Pair: ALLE-CHD, Correlation: 0.92359160276396
Pair: ALLE-CINF, Correlation: 0.9328072957378797
Pair: ALLE-CSCO, Correlation: 0.9283182538236896
Pair: ALLE-CME, Correlation: 0.9393158979461843
Pair: ALLE-CMS, Correlation: 0.937490257756147
Pair: ALLE-CMCSA, Correlation: 0.91008633520031
Pair: ALLE-COO, Correlation: 0.9650499309441897
Pair: ALLE-GLW, Correlation: 0.906172932297258
Pair: ALLE-CSGP, Correlation: 0.9242447460011114
Pair: ALLE-CSX, Correlation: 0.9386401804887496
Pair: ALLE-DHR, Correlation: 0.9257753082585398
Pair: ALLE-DRI, Correlation: 0.9134604813667098
Pair: ALLE-DLR, Correlation: 0.9304055790167945
Pair: ALLE-DPZ, Correlation: 0.9353967910662855
Pair: ALLE-DOV, Correlation: 0.9335592620367886
Pair: ALLE-DTE, Correlation: 0.9259045726495158
Pair: ALLE-DUK, Correlation: 0.9186631547346281
Pair: ALLE-ECL, Correlation: 0.940495752854915
Pair: ALLE-ETR, Correlation: 0.9273457098842812
Pair: ALLE-EFX, Correlation: 0.9179716086594778
Pair: ALLE-EQIX, Correlation: 0.9489680035166175
Pair: ALLE-EXPD, Correlation: 0.9296766950672986
Pair: ALLE-FI, Correlation: 0.940042107480986
Pair: ALLE-GRMN, Correlation: 0.9279308380185375
Pair: ALLE-HD, Correlation: 0.944686383590282
Pair: ALLE-HON, Correlation: 0.9621964780117286
Pair: ALLE-IEX, Correlation: 0.9406359919112953
Pair: ALLE-IDXX, Correlation: 0.9284683086288112
Pair: ALLE-ITW, Correlation: 0.9363158403145356
Pair: ALLE-ICE, Correlation: 0.9551223894343174
Pair: ALLE-INTU, Correlation: 0.9164990948846614
Pair: ALLE-ISRG, Correlation: 0.9325064946548821
Pair: ALLE-IQV, Correlation: 0.943615616149842
Pair: ALLE-J, Correlation: 0.9172162941866612
Pair: ALLE-JNJ, Correlation: 0.9168480832279098
Pair: ALLE-JPM, Correlation: 0.9266708002266689
Pair: ALLE-KDP, Correlation: 0.9200640310478383
Pair: ALLE-LHX, Correlation: 0.939424194278868
Pair: ALLE-LH, Correlation: 0.9224299325896372
Pair: ALLE-LDOS, Correlation: 0.9281137472035251
Pair: ALLE-LYV, Correlation: 0.9211423581210051
Pair: ALLE-LOW, Correlation: 0.9015486787978374
Pair: ALLE-MAS, Correlation: 0.93797155127897
Pair: ALLE-MA, Correlation: 0.9480908664256253
Pair: ALLE-MCD, Correlation: 0.9170080222424722
Pair: ALLE-MTD, Correlation: 0.9173351820789288
Pair: ALLE-MCHP, Correlation: 0.9095088623795252
Pair: ALLE-MCO, Correlation: 0.9448957387113751
Pair: ALLE-MSCI, Correlation: 0.9238494227073792
Pair: ALLE-NDAQ, Correlation: 0.9225679565834692
Pair: ALLE-NEE, Correlation: 0.9165808651649586
Pair: ALLE-NDSN, Correlation: 0.9284103318417849
Pair: ALLE-NSC, Correlation: 0.9413192802749939
Pair: ALLE-NVR, Correlation: 0.9034084385257992
Pair: ALLE-PAYX, Correlation: 0.904412615446345
Pair: ALLE-PNC, Correlation: 0.908259311260186
Pair: ALLE-POOL, Correlation: 0.912509200787483
Pair: ALLE-PG, Correlation: 0.9073755202354634
Pair: ALLE-PLD, Correlation: 0.9147502421252025
Pair: ALLE-PEG, Correlation: 0.9157421631528613
Pair: ALLE-DGX, Correlation: 0.9199257964754353
Pair: ALLE-RMD, Correlation: 0.9178536581910814
Pair: ALLE-ROK, Correlation: 0.9101193140679643
Pair: ALLE-ROL, Correlation: 0.9134939814895703
Pair: ALLE-ROP, Correlation: 0.9502579509642566
Pair: ALLE-ROST, Correlation: 0.9428370850463942
Pair: ALLE-SPGI, Correlation: 0.9514344345854446
Pair: ALLE-CRM, Correlation: 0.9353893363431085
Pair: ALLE-NOW, Correlation: 0.9156921141800966
Pair: ALLE-SHW, Correlation: 0.9488011221687427
Pair: ALLE-SBUX, Correlation: 0.9229508923905614
Pair: ALLE-STE, Correlation: 0.9357204636207875
Pair: ALLE-SYK, Correlation: 0.9384884652874083
Pair: ALLE-SYY, Correlation: 0.9129842466803848
Pair: ALLE-TMUS, Correlation: 0.9048820913373082
Pair: ALLE-TEL, Correlation: 0.919470511176999
Pair: ALLE-TDY, Correlation: 0.949459495180033
Pair: ALLE-TER, Correlation: 0.9160896780422308
Pair: ALLE-TXN, Correlation: 0.9461995115805729
Pair: ALLE-TMO, Correlation: 0.9074197838178015
Pair: ALLE-TYL, Correlation: 0.9382761209727423
Pair: ALLE-UNP, Correlation: 0.9269496087152727
Pair: ALLE-VRSN, Correlation: 0.9018736490819926
Pair: ALLE-VRSK, Correlation: 0.9171385758517838
Pair: ALLE-V, Correlation: 0.9555434897095672
Pair: ALLE-WM, Correlation: 0.9098148011603806
Pair: ALLE-WAT, Correlation: 0.9273365465794183
Pair: ALLE-WEC, Correlation: 0.9194774615678344
Pair: ALLE-WTW, Correlation: 0.951409603914907
Pair: ALLE-WDAY, Correlation: 0.9163294694254245
Pair: ALLE-XEL, Correlation: 0.9098155059421611
Pair: ALLE-XYL, Correlation: 0.9482952171742044
Pair: ALLE-YUM, Correlation: 0.9309360307902685
Pair: ALLE-ZTS, Correlation: 0.9400994335501124
Pair: LNT-ALL, Correlation: 0.9392607266575594
Pair: LNT-GOOGL, Correlation: 0.9121711546299157
Pair: LNT-GOOG, Correlation: 0.9104638918658011
Pair: LNT-AMZN, Correlation: 0.9284696539685048
Pair: LNT-AMCR, Correlation: 0.9213908411359498
Pair: LNT-AEE, Correlation: 0.994667738549596
Pair: LNT-AEP, Correlation: 0.9913958897194333
Pair: LNT-AMT, Correlation: 0.9690063603726419
Pair: LNT-AWK, Correlation: 0.9808665952178135
Pair: LNT-AME, Correlation: 0.9256896463875539
Pair: LNT-AMGN, Correlation: 0.9481995608453686
Pair: LNT-ADI, Correlation: 0.9316194583421396
Pair: LNT-ANSS, Correlation: 0.9320766283356133
Pair: LNT-AON, Correlation: 0.9539233011479775
Pair: LNT-AIZ, Correlation: 0.9613300414749764
Pair: LNT-ATO, Correlation: 0.9767926338633093
Pair: LNT-ADSK, Correlation: 0.9309609457099618
Pair: LNT-ADP, Correlation: 0.9531981300930629
Pair: LNT-AVB, Correlation: 0.9418522446667956
Pair: LNT-AVY, Correlation: 0.9444183719499831
Pair: LNT-BALL, Correlation: 0.9140393864881006
Pair: LNT-BAC, Correlation: 0.925610062175387
Pair: LNT-BDX, Correlation: 0.9627246804457145
Pair: LNT-BBY, Correlation: 0.9179404732299401
Pair: LNT-TECH, Correlation: 0.9026655796713314
Pair: LNT-BLK, Correlation: 0.9365760791583359
Pair: LNT-BSX, Correlation: 0.9201731230987164
Pair: LNT-BR, Correlation: 0.9531830478305202
Pair: LNT-CHRW, Correlation: 0.9221690079935956
Pair: LNT-CPT, Correlation: 0.9521898532762564
Pair: LNT-CBOE, Correlation: 0.907283512020889
Pair: LNT-CBRE, Correlation: 0.916022986307546
Pair: LNT-CDW, Correlation: 0.9218580915501629
Pair: LNT-CE, Correlation: 0.9279464560622566
Pair: LNT-CNC, Correlation: 0.9562389620978105
Pair: LNT-CNP, Correlation: 0.903144806241927
Pair: LNT-SCHW, Correlation: 0.9158023212046643
Pair: LNT-CB, Correlation: 0.9149457001631752
Pair: LNT-CHD, Correlation: 0.9705826816805038
Pair: LNT-CI, Correlation: 0.921894460341692
Pair: LNT-CINF, Correlation: 0.9683424720948294
Pair: LNT-CSCO, Correlation: 0.9539431536594754
Pair: LNT-CLX, Correlation: 0.9226534914642102
Pair: LNT-CME, Correlation: 0.9701759192695435
Pair: LNT-CMS, Correlation: 0.9960944132775403
Pair: LNT-KO, Correlation: 0.9617674334729968
Pair: LNT-CL, Correlation: 0.9246759522817897
Pair: LNT-CMCSA, Correlation: 0.9338414954295274
Pair: LNT-ED, Correlation: 0.957700491221647
Pair: LNT-STZ, Correlation: 0.9460076724729948
Pair: LNT-COO, Correlation: 0.9725801552470654
Pair: LNT-GLW, Correlation: 0.9312623380261478
Pair: LNT-CPAY, Correlation: 0.9078167147245131
Pair: LNT-CSGP, Correlation: 0.9408367321473025
Pair: LNT-CCI, Correlation: 0.9360173275966268
Pair: LNT-CSX, Correlation: 0.9599042543448962
Pair: LNT-CMI, Correlation: 0.9034446275441473
Pair: LNT-DHR, Correlation: 0.9447172475936573
Pair: LNT-DRI, Correlation: 0.9332651049606172
Pair: LNT-DLR, Correlation: 0.9520434871898595
Pair: LNT-DFS, Correlation: 0.9084907081506274
Pair: LNT-DPZ, Correlation: 0.9574135695620699
Pair: LNT-DOV, Correlation: 0.9328382010972438
Pair: LNT-DTE, Correlation: 0.9917689257973292
Pair: LNT-DUK, Correlation: 0.9812391640918245
Pair: LNT-EBAY, Correlation: 0.9208498852706238
Pair: LNT-ECL, Correlation: 0.9414768409206098
Pair: LNT-EW, Correlation: 0.946747559547985
Pair: LNT-EA, Correlation: 0.9372842647334308
Pair: LNT-ELV, Correlation: 0.9390952253223369
Pair: LNT-ETR, Correlation: 0.9678552797308614
Pair: LNT-EFX, Correlation: 0.9410729601950578
Pair: LNT-EQIX, Correlation: 0.9679033882519094
Pair: LNT-EQR, Correlation: 0.9297581324644013
Pair: LNT-ESS, Correlation: 0.9380758218657963
Pair: LNT-EG, Correlation: 0.9109220510676717
Pair: LNT-EVRG, Correlation: 0.9813745557768957
Pair: LNT-ES, Correlation: 0.9626315200550072
Pair: LNT-EXPD, Correlation: 0.9197538373265871
Pair: LNT-EXR, Correlation: 0.9582889432407748
Pair: LNT-FDS, Correlation: 0.9469004810373484
Pair: LNT-FITB, Correlation: 0.906087387608408
Pair: LNT-FI, Correlation: 0.9493390138426985
Pair: LNT-GEN, Correlation: 0.9244894083917033
Pair: LNT-GD, Correlation: 0.9044105531439971
Pair: LNT-GL, Correlation: 0.9455910759684091
Pair: LNT-HSIC, Correlation: 0.9022673348768536
Pair: LNT-HSY, Correlation: 0.9236705857704964
Pair: LNT-HOLX, Correlation: 0.9532657548158583
Pair: LNT-HD, Correlation: 0.9631143822367685
Pair: LNT-HON, Correlation: 0.9769117214061462
Pair: LNT-HRL, Correlation: 0.9128332710290957
Pair: LNT-HUM, Correlation: 0.9406149631862828
Pair: LNT-HBAN, Correlation: 0.9104508327725007
Pair: LNT-IEX, Correlation: 0.9700228052250031
Pair: LNT-IDXX, Correlation: 0.9174298580211707
Pair: LNT-ITW, Correlation: 0.9587658037650131
Pair: LNT-PODD, Correlation: 0.9085394480749619
Pair: LNT-ICE, Correlation: 0.9599258584197125
Pair: LNT-IPG, Correlation: 0.9088641564184144
Pair: LNT-INTU, Correlation: 0.9075596973422408
Pair: LNT-ISRG, Correlation: 0.900547189450502
Pair: LNT-INVH, Correlation: 0.9231654985823325
Pair: LNT-IQV, Correlation: 0.9492425440976698
Pair: LNT-JBHT, Correlation: 0.9345303653251261
Pair: LNT-JKHY, Correlation: 0.9795405340255955
Pair: LNT-J, Correlation: 0.9061746317881382
Pair: LNT-JNJ, Correlation: 0.9823255270921899
Pair: LNT-JPM, Correlation: 0.9145342667102437
Pair: LNT-KDP, Correlation: 0.976042823782608
Pair: LNT-KEYS, Correlation: 0.9260787007145315
Pair: LNT-KMB, Correlation: 0.9524776381058851
Pair: LNT-LHX, Correlation: 0.9799052349798721
Pair: LNT-LH, Correlation: 0.9457174888569811
Pair: LNT-LDOS, Correlation: 0.9307003591267581
Pair: LNT-LYV, Correlation: 0.9484757977047898
Pair: LNT-LMT, Correlation: 0.9674424472304146
Pair: LNT-LOW, Correlation: 0.9332715506730105
Pair: LNT-MAR, Correlation: 0.9006260995832542
Pair: LNT-MMC, Correlation: 0.9261212478602807
Pair: LNT-MAS, Correlation: 0.9476635759689508
Pair: LNT-MA, Correlation: 0.9534796745063623
Pair: LNT-MKC, Correlation: 0.9667146677242502
Pair: LNT-MCD, Correlation: 0.9569037626704725
Pair: LNT-MDT, Correlation: 0.9203356556488899
Pair: LNT-MTD, Correlation: 0.9490210734217067
Pair: LNT-MCHP, Correlation: 0.9277355572910972
Pair: LNT-MAA, Correlation: 0.95656633360732
Pair: LNT-MOH, Correlation: 0.9028397116096343
Pair: LNT-MDLZ, Correlation: 0.9569601371122738
Pair: LNT-MNST, Correlation: 0.9471850331710352
Pair: LNT-MCO, Correlation: 0.9458455207991775
Pair: LNT-MSCI, Correlation: 0.914863595513066
Pair: LNT-NDAQ, Correlation: 0.9524844923066914
Pair: LNT-NEE, Correlation: 0.9725588472860667
Pair: LNT-NKE, Correlation: 0.9168087383321707
Pair: LNT-NI, Correlation: 0.9620211572121257
Pair: LNT-NDSN, Correlation: 0.9566523673866116
Pair: LNT-NSC, Correlation: 0.9608843623634734
Pair: LNT-NTRS, Correlation: 0.911944357528441
Pair: LNT-NOC, Correlation: 0.9636268673480606
Pair: LNT-NVR, Correlation: 0.9017187110709418
Pair: LNT-NXPI, Correlation: 0.9058966415596245
Pair: LNT-PKG, Correlation: 0.9264919290554282
Pair: LNT-PAYX, Correlation: 0.9550817035089559
Pair: LNT-PEP, Correlation: 0.9633641212628824
Pair: LNT-PFE, Correlation: 0.9049393393400675
Pair: LNT-PNW, Correlation: 0.9326297976594564
Pair: LNT-PNC, Correlation: 0.9397684668887449
Pair: LNT-POOL, Correlation: 0.928761368705588
Pair: LNT-PPG, Correlation: 0.9109774534043172
Pair: LNT-PG, Correlation: 0.9492009390881051
Pair: LNT-PLD, Correlation: 0.9520200295353513
Pair: LNT-PEG, Correlation: 0.9639851900912927
Pair: LNT-PTC, Correlation: 0.9022357047182061
Pair: LNT-PSA, Correlation: 0.9429153471901633
Pair: LNT-DGX, Correlation: 0.963071169069954
Pair: LNT-RTX, Correlation: 0.90819680850805
Pair: LNT-O, Correlation: 0.9731487870753205
Pair: LNT-RF, Correlation: 0.9214962100226363
Pair: LNT-RSG, Correlation: 0.905692225434642
Pair: LNT-RMD, Correlation: 0.9466300499634906
Pair: LNT-RVTY, Correlation: 0.9358286399314203
Pair: LNT-ROK, Correlation: 0.9399218740820325
Pair: LNT-ROL, Correlation: 0.9466938246253972
Pair: LNT-ROP, Correlation: 0.9649943460245777
Pair: LNT-ROST, Correlation: 0.9424063814737034
Pair: LNT-SPGI, Correlation: 0.9567082019376187
Pair: LNT-CRM, Correlation: 0.9261705061158924
Pair: LNT-SBAC, Correlation: 0.9469782946375404
Pair: LNT-SRE, Correlation: 0.9704144104955248
Pair: LNT-SHW, Correlation: 0.9501810093946318
Pair: LNT-SO, Correlation: 0.9403084645408356
Pair: LNT-SBUX, Correlation: 0.9542020900213785
Pair: LNT-STE, Correlation: 0.9613935298211602
Pair: LNT-SYK, Correlation: 0.9438472104288254
Pair: LNT-SYY, Correlation: 0.9704267394755751
Pair: LNT-TMUS, Correlation: 0.9334705023258467
Pair: LNT-TTWO, Correlation: 0.9303640864281943
Pair: LNT-TEL, Correlation: 0.9482305177723147
Pair: LNT-TDY, Correlation: 0.9639858070263614
Pair: LNT-TER, Correlation: 0.900040572061351
Pair: LNT-TXN, Correlation: 0.963072314331011
Pair: LNT-TMO, Correlation: 0.9477473500517675
Pair: LNT-TJX, Correlation: 0.9089797829669546
Pair: LNT-TRV, Correlation: 0.9235111261687828
Pair: LNT-TYL, Correlation: 0.951416665039264
Pair: LNT-UDR, Correlation: 0.9579266543624327
Pair: LNT-ULTA, Correlation: 0.914542341792863
Pair: LNT-UNP, Correlation: 0.9655569027806676
Pair: LNT-UPS, Correlation: 0.9154067829167916
Pair: LNT-UNH, Correlation: 0.9444864873374988
Pair: LNT-VRSN, Correlation: 0.955964320594823
Pair: LNT-VRSK, Correlation: 0.9425691527750404
Pair: LNT-V, Correlation: 0.9651574337601276
Pair: LNT-VMC, Correlation: 0.9160956997155211
Pair: LNT-WRB, Correlation: 0.913605747233725
Pair: LNT-WMT, Correlation: 0.9030041799729227
Pair: LNT-WM, Correlation: 0.9384975178351092
Pair: LNT-WAT, Correlation: 0.9549027698585096
Pair: LNT-WEC, Correlation: 0.992918693361501
Pair: LNT-WST, Correlation: 0.901888259618013
Pair: LNT-WTW, Correlation: 0.9568198795282398
Pair: LNT-XEL, Correlation: 0.9894823971940614
Pair: LNT-XYL, Correlation: 0.9324659539171746
Pair: LNT-YUM, Correlation: 0.9618037398186157
Pair: LNT-ZTS, Correlation: 0.9534932679122765
Pair: ALL-GOOGL, Correlation: 0.9476410824645803
Pair: ALL-GOOG, Correlation: 0.9467561862126572
Pair: ALL-AMZN, Correlation: 0.9123194554914756
Pair: ALL-AEE, Correlation: 0.9238531634554513
Pair: ALL-AEP, Correlation: 0.9459856806934507
Pair: ALL-AXP, Correlation: 0.96244818718924
Pair: ALL-AMP, Correlation: 0.9467575506086945
Pair: ALL-AME, Correlation: 0.9584103222287838
Pair: ALL-AMGN, Correlation: 0.970315364289897
Pair: ALL-APH, Correlation: 0.9691880424446879
Pair: ALL-ADI, Correlation: 0.9601592397938954
Pair: ALL-AON, Correlation: 0.9501659091094019
Pair: ALL-APO, Correlation: 0.9298525389306456
Pair: ALL-AAPL, Correlation: 0.9158065840303139
Pair: ALL-AMAT, Correlation: 0.9227243939757763
Pair: ALL-ACGL, Correlation: 0.9204398544752838
Pair: ALL-ANET, Correlation: 0.9172011021386135
Pair: ALL-AJG, Correlation: 0.9314265929084845
Pair: ALL-AIZ, Correlation: 0.9713687094675906
Pair: ALL-ATO, Correlation: 0.9542592638168308
Pair: ALL-ADP, Correlation: 0.9655333337741179
Pair: ALL-AZO, Correlation: 0.9231000553438401
Pair: ALL-AVB, Correlation: 0.9066882049284586
Pair: ALL-AVY, Correlation: 0.9544341700851365
Pair: ALL-AXON, Correlation: 0.9005924182160464
Pair: ALL-BAC, Correlation: 0.9319631332801325
Pair: ALL-BLK, Correlation: 0.9538288147725501
Pair: ALL-BX, Correlation: 0.9258088990453537
Pair: ALL-BK, Correlation: 0.924237333689461
Pair: ALL-BKNG, Correlation: 0.9525080836998114
Pair: ALL-BSX, Correlation: 0.9727571912013289
Pair: ALL-BR, Correlation: 0.9666965285480863
Pair: ALL-BRO, Correlation: 0.9509415409943287
Pair: ALL-CDNS, Correlation: 0.9064457923197662
Pair: ALL-COF, Correlation: 0.9206964568367234
Pair: ALL-CAT, Correlation: 0.9290034385725993
Pair: ALL-CBOE, Correlation: 0.971473341421077
Pair: ALL-CBRE, Correlation: 0.945159623680638
Pair: ALL-CDW, Correlation: 0.9371833123143671
Pair: ALL-CE, Correlation: 0.9093989242077104
Pair: ALL-COR, Correlation: 0.9294742087683753
Pair: ALL-CNC, Correlation: 0.9017350647467184
Pair: ALL-SCHW, Correlation: 0.9206409365613469
Pair: ALL-CB, Correlation: 0.9789804007128433
Pair: ALL-CHD, Correlation: 0.9422127690652161
Pair: ALL-CI, Correlation: 0.966427550397102
Pair: ALL-CINF, Correlation: 0.9625640110151493
Pair: ALL-CTAS, Correlation: 0.9517801459078155
Pair: ALL-CSCO, Correlation: 0.9185687400754482
Pair: ALL-CME, Correlation: 0.944877698674375
Pair: ALL-CMS, Correlation: 0.939471517350556
Pair: ALL-KO, Correlation: 0.9620555285016765
Pair: ALL-CL, Correlation: 0.9485517490223874
Pair: ALL-ED, Correlation: 0.944883762072458
Pair: ALL-STZ, Correlation: 0.9208654245807105
Pair: ALL-COO, Correlation: 0.9278570944074014
Pair: ALL-CPRT, Correlation: 0.9324094314267423
Pair: ALL-GLW, Correlation: 0.925966102392663
Pair: ALL-COST, Correlation: 0.9472358069729844
Pair: ALL-CSX, Correlation: 0.9413115272968078
Pair: ALL-CMI, Correlation: 0.9535753699386629
Pair: ALL-DHR, Correlation: 0.9227402567333899
Pair: ALL-DRI, Correlation: 0.945910563000047
Pair: ALL-DELL, Correlation: 0.9071126413117019
Pair: ALL-DLR, Correlation: 0.9246117531641979
Pair: ALL-DFS, Correlation: 0.9546803945341649
Pair: ALL-DPZ, Correlation: 0.9266914475742289
Pair: ALL-DOV, Correlation: 0.9542325598741191
Pair: ALL-DHI, Correlation: 0.93322951696093
Pair: ALL-DTE, Correlation: 0.9515640298745345
Pair: ALL-DUK, Correlation: 0.9676971886815503
Pair: ALL-ETN, Correlation: 0.9089054420436676
Pair: ALL-ECL, Correlation: 0.9240340731061172
Pair: ALL-EIX, Correlation: 0.9069385757335476
Pair: ALL-ELV, Correlation: 0.9479483951454892
Pair: ALL-EMR, Correlation: 0.9497886015809243
Pair: ALL-ETR, Correlation: 0.9577742757306671
Pair: ALL-EFX, Correlation: 0.9463395301328323
Pair: ALL-EQIX, Correlation: 0.9396812717340475
Pair: ALL-ERIE, Correlation: 0.9298945307754959
Pair: ALL-EG, Correlation: 0.9522089459141363
Pair: ALL-EVRG, Correlation: 0.902814299756271
Pair: ALL-EXPD, Correlation: 0.920417757672553
Pair: ALL-EXR, Correlation: 0.9269961729319768
Pair: ALL-FDS, Correlation: 0.9344963856201147
Pair: ALL-FAST, Correlation: 0.9339838577976963
Pair: ALL-FITB, Correlation: 0.9393521568074636
Pair: ALL-FI, Correlation: 0.9682952506656709
Pair: ALL-GRMN, Correlation: 0.9362379085968571
Pair: ALL-IT, Correlation: 0.9423262891969438
Pair: ALL-GEN, Correlation: 0.9184017776627239
Pair: ALL-GD, Correlation: 0.9642049345378916
Pair: ALL-GL, Correlation: 0.9114568347848511
Pair: ALL-GDDY, Correlation: 0.9245148478727035
Pair: ALL-GS, Correlation: 0.9447946072460102
Pair: ALL-HIG, Correlation: 0.9713421755092813
Pair: ALL-HCA, Correlation: 0.9512199451342396
Pair: ALL-HLT, Correlation: 0.9699727394596503
Pair: ALL-HOLX, Correlation: 0.9224021363591711
Pair: ALL-HD, Correlation: 0.9607564068955462
Pair: ALL-HON, Correlation: 0.9479270365336177
Pair: ALL-HWM, Correlation: 0.9047776806999903
Pair: ALL-HUBB, Correlation: 0.9117173389299426
Pair: ALL-HBAN, Correlation: 0.9221430316867097
Pair: ALL-IEX, Correlation: 0.9393078175562461
Pair: ALL-ITW, Correlation: 0.959680368354326
Pair: ALL-IR, Correlation: 0.9318735791878145
Pair: ALL-ICE, Correlation: 0.9691112034725147
Pair: ALL-IPG, Correlation: 0.905882404035336
Pair: ALL-INTU, Correlation: 0.9366071099132383
Pair: ALL-ISRG, Correlation: 0.9449689665798378
Pair: ALL-JBHT, Correlation: 0.9251464533445757
Pair: ALL-JKHY, Correlation: 0.9214359053032208
Pair: ALL-J, Correlation: 0.9254555298308299
Pair: ALL-JNJ, Correlation: 0.9358795879504161
Pair: ALL-JCI, Correlation: 0.9177254518673681
Pair: ALL-JPM, Correlation: 0.9764180794267329
Pair: ALL-KDP, Correlation: 0.9248385577139118
Pair: ALL-KKR, Correlation: 0.9098312069393619
Pair: ALL-KLAC, Correlation: 0.9069824613550679
Pair: ALL-LHX, Correlation: 0.9463776624819262
Pair: ALL-LH, Correlation: 0.9286027254638157
Pair: ALL-LRCX, Correlation: 0.9018107456184024
Pair: ALL-LDOS, Correlation: 0.9659510720715659
Pair: ALL-LEN, Correlation: 0.9312596107421945
Pair: ALL-LII, Correlation: 0.9578438171599466
Pair: ALL-LIN, Correlation: 0.9348190759931077
Pair: ALL-LYV, Correlation: 0.9371570006809026
Pair: ALL-LMT, Correlation: 0.9656225665787852
Pair: ALL-L, Correlation: 0.9027633594801119
Pair: ALL-LOW, Correlation: 0.9447770883995726
Pair: ALL-MAR, Correlation: 0.9705023115274423
Pair: ALL-MMC, Correlation: 0.9625340364475019
Pair: ALL-MLM, Correlation: 0.9570644120634089
Pair: ALL-MAS, Correlation: 0.9668267754260055
Pair: ALL-MA, Correlation: 0.9576151955039371
Pair: ALL-MCD, Correlation: 0.9469645059378807
Pair: ALL-MRK, Correlation: 0.9409907595796754
Pair: ALL-META, Correlation: 0.9072918392001453
Pair: ALL-MET, Correlation: 0.9470153686353594
Pair: ALL-MTD, Correlation: 0.9169838151027125
Pair: ALL-MCHP, Correlation: 0.9345250508434075
Pair: ALL-MU, Correlation: 0.9366540069335475
Pair: ALL-MSFT, Correlation: 0.9331286163222002
Pair: ALL-MOH, Correlation: 0.9167306075293701
Pair: ALL-MDLZ, Correlation: 0.9450042111929554
Pair: ALL-MPWR, Correlation: 0.9187986469416669
Pair: ALL-MNST, Correlation: 0.9312061422306595
Pair: ALL-MCO, Correlation: 0.9601470529640972
Pair: ALL-MS, Correlation: 0.9364617899093649
Pair: ALL-MSI, Correlation: 0.94992580573782
Pair: ALL-MSCI, Correlation: 0.9039454307161494
Pair: ALL-NDAQ, Correlation: 0.9527366286549402
Pair: ALL-NEE, Correlation: 0.9122150948651516
Pair: ALL-NI, Correlation: 0.9357619627673209
Pair: ALL-NDSN, Correlation: 0.9485160478953892
Pair: ALL-NSC, Correlation: 0.9274169198426152
Pair: ALL-NOC, Correlation: 0.9571640166372017
Pair: ALL-NVR, Correlation: 0.9646595084811717
Pair: ALL-NXPI, Correlation: 0.9485799572433791
Pair: ALL-ORLY, Correlation: 0.9396866552615657
Pair: ALL-ODFL, Correlation: 0.9128810038568587
Pair: ALL-OMC, Correlation: 0.9015832266094107
Pair: ALL-OKE, Correlation: 0.9305518246415395
Pair: ALL-ORCL, Correlation: 0.9194570233246829
Pair: ALL-PCAR, Correlation: 0.9212785001719317
Pair: ALL-PKG, Correlation: 0.983307536739791
Pair: ALL-PANW, Correlation: 0.9158188392376512
Pair: ALL-PH, Correlation: 0.9362482484042804
Pair: ALL-PAYX, Correlation: 0.9588574853346348
Pair: ALL-PNR, Correlation: 0.9061619269472585
Pair: ALL-PEP, Correlation: 0.944519481614644
Pair: ALL-PM, Correlation: 0.9234955488699361
Pair: ALL-PNC, Correlation: 0.9397540760312115
Pair: ALL-PFG, Correlation: 0.9391056293417916
Pair: ALL-PG, Correlation: 0.9465648361536372
Pair: ALL-PGR, Correlation: 0.9460268241464436
Pair: ALL-PLD, Correlation: 0.9134238729952938
Pair: ALL-PRU, Correlation: 0.9401416518827307
Pair: ALL-PEG, Correlation: 0.9753147125366669
Pair: ALL-PTC, Correlation: 0.9558736043084264
Pair: ALL-PSA, Correlation: 0.9314875275248445
Pair: ALL-PHM, Correlation: 0.9089270399756758
Pair: ALL-DGX, Correlation: 0.9448334322849211
Pair: ALL-RJF, Correlation: 0.9579778152206031
Pair: ALL-RTX, Correlation: 0.9552238444791336
Pair: ALL-REGN, Correlation: 0.900931754972269
Pair: ALL-RF, Correlation: 0.9410787087058318
Pair: ALL-RSG, Correlation: 0.9634728364503763
Pair: ALL-ROK, Correlation: 0.9161614749366316
Pair: ALL-ROL, Correlation: 0.955384370276379
Pair: ALL-ROP, Correlation: 0.9604638929711273
Pair: ALL-ROST, Correlation: 0.9529913204038057
Pair: ALL-SPGI, Correlation: 0.9492346327480827
Pair: ALL-CRM, Correlation: 0.91905347266817
Pair: ALL-STX, Correlation: 0.9283976742971022
Pair: ALL-SRE, Correlation: 0.9564534783026437
Pair: ALL-NOW, Correlation: 0.9292814595154627
Pair: ALL-SHW, Correlation: 0.9615694463153364
Pair: ALL-SNA, Correlation: 0.9495503402944365
Pair: ALL-SO, Correlation: 0.9581249543003081
Pair: ALL-STE, Correlation: 0.9345522222315075
Pair: ALL-SYK, Correlation: 0.9719852332758647
Pair: ALL-SNPS, Correlation: 0.9060475087240217
Pair: ALL-SYY, Correlation: 0.9311744680927957
Pair: ALL-TMUS, Correlation: 0.9628206946252145
Pair: ALL-TEL, Correlation: 0.95430964800354
Pair: ALL-TDY, Correlation: 0.9246106094276454
Pair: ALL-TXN, Correlation: 0.9513211245815612
Pair: ALL-TPL, Correlation: 0.9109514191961424
Pair: ALL-TXT, Correlation: 0.9273770908290112
Pair: ALL-TMO, Correlation: 0.9227045124947911
Pair: ALL-TJX, Correlation: 0.9663824394021615
Pair: ALL-TSCO, Correlation: 0.9271257471498096
Pair: ALL-TT, Correlation: 0.9360427091634211
Pair: ALL-TDG, Correlation: 0.9480554343109896
Pair: ALL-TRV, Correlation: 0.9830055095350625
Pair: ALL-TYL, Correlation: 0.9399262775835331
Pair: ALL-UNP, Correlation: 0.9537577988522673
Pair: ALL-URI, Correlation: 0.921921923441456
Pair: ALL-UNH, Correlation: 0.9496369611416
Pair: ALL-VLO, Correlation: 0.9233464025206475
Pair: ALL-VRSK, Correlation: 0.9479945276264629
Pair: ALL-VRTX, Correlation: 0.9429126361085108
Pair: ALL-V, Correlation: 0.9624039484965918
Pair: ALL-VMC, Correlation: 0.9633614392811629
Pair: ALL-WRB, Correlation: 0.9684180058924329
Pair: ALL-WMT, Correlation: 0.9549963951703008
Pair: ALL-WM, Correlation: 0.9711424721221167
Pair: ALL-WAT, Correlation: 0.9395384846624766
Pair: ALL-WEC, Correlation: 0.9165827318620138
Pair: ALL-WELL, Correlation: 0.9408326994694279
Pair: ALL-WTW, Correlation: 0.9701593056528709
Pair: ALL-XEL, Correlation: 0.9035940134272973
Pair: ALL-XYL, Correlation: 0.9475265847690559
Pair: ALL-YUM, Correlation: 0.9522327087635277
Pair: GOOGL-GOOG, Correlation: 0.9999128636259416
Pair: GOOGL-AMZN, Correlation: 0.9456989820158554
Pair: GOOGL-AEE, Correlation: 0.9028704287671188
Pair: GOOGL-AXP, Correlation: 0.9588132283403934
Pair: GOOGL-AWK, Correlation: 0.9076763507151381
Pair: GOOGL-AMP, Correlation: 0.95714549071433
Pair: GOOGL-AME, Correlation: 0.9733986249142611
Pair: GOOGL-AMGN, Correlation: 0.9300951775202319
Pair: GOOGL-APH, Correlation: 0.9715898788286114
Pair: GOOGL-ADI, Correlation: 0.9793460669689872
Pair: GOOGL-ANSS, Correlation: 0.9287867082750307
Pair: GOOGL-AON, Correlation: 0.9603144654647355
Pair: GOOGL-APO, Correlation: 0.9424758770812368
Pair: GOOGL-AAPL, Correlation: 0.9729883351457859
Pair: GOOGL-AMAT, Correlation: 0.97660813997543
Pair: GOOGL-ACGL, Correlation: 0.9001327116947002
Pair: GOOGL-AJG, Correlation: 0.9546603719039543
Pair: GOOGL-AIZ, Correlation: 0.9620604648480495
Pair: GOOGL-ADSK, Correlation: 0.9139532933940907
Pair: GOOGL-ADP, Correlation: 0.9618072702405475
Pair: GOOGL-AZO, Correlation: 0.9381656949872167
Pair: GOOGL-AVY, Correlation: 0.9777813559211432
Pair: GOOGL-AXON, Correlation: 0.9140865604472063
Pair: GOOGL-BAC, Correlation: 0.9262905364110813
Pair: GOOGL-TECH, Correlation: 0.9064094588627134
Pair: GOOGL-BLK, Correlation: 0.9714564896634564
Pair: GOOGL-BX, Correlation: 0.9739450063002263
Pair: GOOGL-BKNG, Correlation: 0.917380996030584
Pair: GOOGL-BSX, Correlation: 0.9333478151267761
Pair: GOOGL-AVGO, Correlation: 0.9034499151460341
Pair: GOOGL-BR, Correlation: 0.9681129704430161
Pair: GOOGL-BRO, Correlation: 0.9747370469844716
Pair: GOOGL-CDNS, Correlation: 0.9545607153628584
Pair: GOOGL-CPT, Correlation: 0.9048613439529961
Pair: GOOGL-COF, Correlation: 0.929624896643243
Pair: GOOGL-CARR, Correlation: 0.912319357511907
Pair: GOOGL-CAT, Correlation: 0.9428913735504468
Pair: GOOGL-CBOE, Correlation: 0.92281665790614
Pair: GOOGL-CBRE, Correlation: 0.9668582114143701
Pair: GOOGL-CDW, Correlation: 0.9609819820001556
Pair: GOOGL-CE, Correlation: 0.9207736329918829
Pair: GOOGL-COR, Correlation: 0.9174624816602167
Pair: GOOGL-SCHW, Correlation: 0.9194033130882658
Pair: GOOGL-CMG, Correlation: 0.9404167396949301
Pair: GOOGL-CB, Correlation: 0.9491515092988103
Pair: GOOGL-CHD, Correlation: 0.9469343500544148
Pair: GOOGL-CI, Correlation: 0.9204473328908441
Pair: GOOGL-CINF, Correlation: 0.9369325967611245
Pair: GOOGL-CTAS, Correlation: 0.9606353618611441
Pair: GOOGL-CSCO, Correlation: 0.9113064635848782
Pair: GOOGL-CME, Correlation: 0.9259316675572428
Pair: GOOGL-KO, Correlation: 0.9423566154670673
Pair: GOOGL-CL, Correlation: 0.9004341208268163
Pair: GOOGL-COO, Correlation: 0.9136412607158558
Pair: GOOGL-CPRT, Correlation: 0.9713572535627717
Pair: GOOGL-GLW, Correlation: 0.912498307167314
Pair: GOOGL-CSGP, Correlation: 0.910559054508143
Pair: GOOGL-COST, Correlation: 0.96593579099435
Pair: GOOGL-CSX, Correlation: 0.9490282620701428
Pair: GOOGL-CMI, Correlation: 0.9494663053392279
Pair: GOOGL-DHR, Correlation: 0.965891873151942
Pair: GOOGL-DRI, Correlation: 0.9449638085823896
Pair: GOOGL-DE, Correlation: 0.9478471517670647
Pair: GOOGL-DXCM, Correlation: 0.9088018979837527
Pair: GOOGL-DLR, Correlation: 0.9193529979770209
Pair: GOOGL-DFS, Correlation: 0.9437661688491843
Pair: GOOGL-DPZ, Correlation: 0.9456905413337904
Pair: GOOGL-DOV, Correlation: 0.9805412101342563
Pair: GOOGL-DHI, Correlation: 0.9522998887326842
Pair: GOOGL-DTE, Correlation: 0.9157823022879503
Pair: GOOGL-DUK, Correlation: 0.939040476845605
Pair: GOOGL-ETN, Correlation: 0.9309318437695592
Pair: GOOGL-EBAY, Correlation: 0.9117258832013619
Pair: GOOGL-ELV, Correlation: 0.9515559463584297
Pair: GOOGL-EMR, Correlation: 0.9683558466441035
Pair: GOOGL-ETR, Correlation: 0.9312533158906313
Pair: GOOGL-EFX, Correlation: 0.9630172621919854
Pair: GOOGL-EQIX, Correlation: 0.9468381477895359
Pair: GOOGL-ERIE, Correlation: 0.9026783669489478
Pair: GOOGL-EG, Correlation: 0.915273604654633
Pair: GOOGL-EXPD, Correlation: 0.9696753195673176
Pair: GOOGL-EXR, Correlation: 0.9447133306880905
Pair: GOOGL-FDS, Correlation: 0.9565054056343275
Pair: GOOGL-FAST, Correlation: 0.9716173886525636
Pair: GOOGL-FITB, Correlation: 0.9287832180183176
Pair: GOOGL-FI, Correlation: 0.9293053980883061
Pair: GOOGL-FTNT, Correlation: 0.9537196699037471
Pair: GOOGL-GRMN, Correlation: 0.9660581249650523
Pair: GOOGL-IT, Correlation: 0.9549402207909375
Pair: GOOGL-GEN, Correlation: 0.9339964929620661
Pair: GOOGL-GD, Correlation: 0.9041843610123386
Pair: GOOGL-GS, Correlation: 0.9553903564449531
Pair: GOOGL-HIG, Correlation: 0.9342429009522709
Pair: GOOGL-HCA, Correlation: 0.9668847024835229
Pair: GOOGL-HSY, Correlation: 0.9014568136075629
Pair: GOOGL-HLT, Correlation: 0.9553124380847217
Pair: GOOGL-HOLX, Correlation: 0.9361519719109314
Pair: GOOGL-HD, Correlation: 0.9722054089137135
Pair: GOOGL-HON, Correlation: 0.9336626909689211
Pair: GOOGL-HPQ, Correlation: 0.9272669163995649
Pair: GOOGL-HUBB, Correlation: 0.9171738160140587
Pair: GOOGL-IEX, Correlation: 0.9339177329187528
Pair: GOOGL-IDXX, Correlation: 0.9456453516799135
Pair: GOOGL-ITW, Correlation: 0.9612830730612072
Pair: GOOGL-IR, Correlation: 0.9177140712599666
Pair: GOOGL-ICE, Correlation: 0.9706779593244147
Pair: GOOGL-IPG, Correlation: 0.9235494711844413
Pair: GOOGL-INTU, Correlation: 0.9873376949067847
Pair: GOOGL-ISRG, Correlation: 0.9712674002554115
Pair: GOOGL-INVH, Correlation: 0.9104197032514841
Pair: GOOGL-IQV, Correlation: 0.9418647398125128
Pair: GOOGL-JBHT, Correlation: 0.9450772578920454
Pair: GOOGL-J, Correlation: 0.9670205660690838
Pair: GOOGL-JNJ, Correlation: 0.9095792731446792
Pair: GOOGL-JCI, Correlation: 0.9431824747553403
Pair: GOOGL-JPM, Correlation: 0.9676571564633137
Pair: GOOGL-KDP, Correlation: 0.9247849984225883
Pair: GOOGL-KKR, Correlation: 0.9359002141918689
Pair: GOOGL-KLAC, Correlation: 0.9470144135400108
Pair: GOOGL-LHX, Correlation: 0.9187594097419943
Pair: GOOGL-LH, Correlation: 0.9592430032698837
Pair: GOOGL-LRCX, Correlation: 0.9670160521677417
Pair: GOOGL-LDOS, Correlation: 0.9401910028673912
Pair: GOOGL-LEN, Correlation: 0.94359632986194
Pair: GOOGL-LII, Correlation: 0.9402499196010926
Pair: GOOGL-LIN, Correlation: 0.9670093544768519
Pair: GOOGL-LYV, Correlation: 0.9544967944830738
Pair: GOOGL-LMT, Correlation: 0.9130750628797556
Pair: GOOGL-LOW, Correlation: 0.9783384769326864
Pair: GOOGL-LULU, Correlation: 0.9055835244952833
Pair: GOOGL-MAR, Correlation: 0.9384906264894635
Pair: GOOGL-MMC, Correlation: 0.9757220561080152
Pair: GOOGL-MLM, Correlation: 0.9716305193953833
Pair: GOOGL-MAS, Correlation: 0.9584094824577654
Pair: GOOGL-MA, Correlation: 0.959833150047869
Pair: GOOGL-MCD, Correlation: 0.9486217447875576
Pair: GOOGL-MRK, Correlation: 0.9187174404013148
Pair: GOOGL-META, Correlation: 0.9123619138864687
Pair: GOOGL-MET, Correlation: 0.9338968119318516
Pair: GOOGL-MTD, Correlation: 0.9489449787470252
Pair: GOOGL-MCHP, Correlation: 0.9663257331748394
Pair: GOOGL-MU, Correlation: 0.9507778267892426
Pair: GOOGL-MSFT, Correlation: 0.9839568805295851
Pair: GOOGL-MAA, Correlation: 0.9272931202740942
Pair: GOOGL-MOH, Correlation: 0.9540750861042141
Pair: GOOGL-MDLZ, Correlation: 0.9376564439687397
Pair: GOOGL-MPWR, Correlation: 0.9644716853292807
Pair: GOOGL-MNST, Correlation: 0.927150009847158
Pair: GOOGL-MCO, Correlation: 0.9800996521561346
Pair: GOOGL-MS, Correlation: 0.968675469548443
Pair: GOOGL-MSI, Correlation: 0.9585867776967115
Pair: GOOGL-MSCI, Correlation: 0.9627532606420863
Pair: GOOGL-NDAQ, Correlation: 0.9708088222038437
Pair: GOOGL-NTAP, Correlation: 0.916015277444166
Pair: GOOGL-NFLX, Correlation: 0.9042377056352291
Pair: GOOGL-NEE, Correlation: 0.9254626373961229
Pair: GOOGL-NDSN, Correlation: 0.962625795210949
Pair: GOOGL-NSC, Correlation: 0.9369200558219847
Pair: GOOGL-NOC, Correlation: 0.9118384310035277
Pair: GOOGL-NVR, Correlation: 0.9658548733255391
Pair: GOOGL-NXPI, Correlation: 0.9697111286830941
Pair: GOOGL-ORLY, Correlation: 0.9488766823634136
Pair: GOOGL-ODFL, Correlation: 0.9662360500213764
Pair: GOOGL-ON, Correlation: 0.9022803922169904
Pair: GOOGL-ORCL, Correlation: 0.941209875621114
Pair: GOOGL-PCAR, Correlation: 0.9200443734211302
Pair: GOOGL-PKG, Correlation: 0.9554683117693284
Pair: GOOGL-PANW, Correlation: 0.9319752249137134
Pair: GOOGL-PH, Correlation: 0.9443498654534359
Pair: GOOGL-PAYX, Correlation: 0.9705332093324194
Pair: GOOGL-PNR, Correlation: 0.9233671529671609
Pair: GOOGL-PEP, Correlation: 0.9429680810720319
Pair: GOOGL-PNC, Correlation: 0.9209206397496551
Pair: GOOGL-POOL, Correlation: 0.9482336717770746
Pair: GOOGL-PFG, Correlation: 0.9014066092019297
Pair: GOOGL-PG, Correlation: 0.9640545491430247
Pair: GOOGL-PGR, Correlation: 0.937104705568198
Pair: GOOGL-PLD, Correlation: 0.954025364519607
Pair: GOOGL-PEG, Correlation: 0.9494652062594962
Pair: GOOGL-PTC, Correlation: 0.9616947152555201
Pair: GOOGL-PSA, Correlation: 0.9340633562246321
Pair: GOOGL-PHM, Correlation: 0.909698495300416
Pair: GOOGL-QCOM, Correlation: 0.9490315589017112
Pair: GOOGL-DGX, Correlation: 0.9464850050684478
Pair: GOOGL-RJF, Correlation: 0.9595742160405984
Pair: GOOGL-RF, Correlation: 0.9231730309725176
Pair: GOOGL-RSG, Correlation: 0.9716838892187001
Pair: GOOGL-RMD, Correlation: 0.9301356244055076
Pair: GOOGL-ROK, Correlation: 0.950400848995473
Pair: GOOGL-ROL, Correlation: 0.9546552551260019
Pair: GOOGL-ROP, Correlation: 0.9618414678016056
Pair: GOOGL-ROST, Correlation: 0.9133198225542325
Pair: GOOGL-SPGI, Correlation: 0.9745563164158202
Pair: GOOGL-CRM, Correlation: 0.9438970380889065
Pair: GOOGL-STX, Correlation: 0.9544522132542779
Pair: GOOGL-NOW, Correlation: 0.970669573003216
Pair: GOOGL-SHW, Correlation: 0.977776659678049
Pair: GOOGL-SNA, Correlation: 0.9305245241214952
Pair: GOOGL-SO, Correlation: 0.9532331555771338
Pair: GOOGL-STLD, Correlation: 0.9016750364801362
Pair: GOOGL-STE, Correlation: 0.965207550317182
Pair: GOOGL-SYK, Correlation: 0.9666960112041348
Pair: GOOGL-SNPS, Correlation: 0.957351579949822
Pair: GOOGL-TMUS, Correlation: 0.9610096809486514
Pair: GOOGL-TEL, Correlation: 0.9687664456450935
Pair: GOOGL-TDY, Correlation: 0.9376807315373905
Pair: GOOGL-TER, Correlation: 0.9542207915441077
Pair: GOOGL-TSLA, Correlation: 0.9032232525830616
Pair: GOOGL-TXN, Correlation: 0.9680955556922204
Pair: GOOGL-TPL, Correlation: 0.901054499574727
Pair: GOOGL-TXT, Correlation: 0.901677187089323
Pair: GOOGL-TMO, Correlation: 0.9612151162181074
Pair: GOOGL-TJX, Correlation: 0.9528759430146294
Pair: GOOGL-TSCO, Correlation: 0.9623916989516547
Pair: GOOGL-TT, Correlation: 0.9503033579362191
Pair: GOOGL-TDG, Correlation: 0.9468426837034538
Pair: GOOGL-TRV, Correlation: 0.9360466828944572
Pair: GOOGL-TYL, Correlation: 0.9638155727061388
Pair: GOOGL-UNP, Correlation: 0.95666391841044
Pair: GOOGL-UPS, Correlation: 0.9003430253185664
Pair: GOOGL-URI, Correlation: 0.9309266500225992
Pair: GOOGL-UNH, Correlation: 0.9611710578722023
Pair: GOOGL-VRSK, Correlation: 0.9688208031915021
Pair: GOOGL-VRTX, Correlation: 0.9159649457033356
Pair: GOOGL-V, Correlation: 0.9554608721701477
Pair: GOOGL-VMC, Correlation: 0.9593353733413712
Pair: GOOGL-WRB, Correlation: 0.9486662088857379
Pair: GOOGL-GWW, Correlation: 0.909171654315164
Pair: GOOGL-WMT, Correlation: 0.9532546872109193
Pair: GOOGL-WM, Correlation: 0.9737865529994556
Pair: GOOGL-WAT, Correlation: 0.9434461668686679
Pair: GOOGL-WELL, Correlation: 0.9088653639745133
Pair: GOOGL-WST, Correlation: 0.9559638215868702
Pair: GOOGL-WTW, Correlation: 0.9544051665829967
Pair: GOOGL-XYL, Correlation: 0.9542758318869244
Pair: GOOGL-YUM, Correlation: 0.947854226458906
Pair: GOOGL-ZTS, Correlation: 0.9363967417508627
Pair: GOOG-AMZN, Correlation: 0.94585334497985
Pair: GOOG-AEE, Correlation: 0.9014184170661688
Pair: GOOG-AXP, Correlation: 0.9590854805133788
Pair: GOOG-AWK, Correlation: 0.9066420301993344
Pair: GOOG-AMP, Correlation: 0.9571829171761507
Pair: GOOG-AME, Correlation: 0.9735068321526424
Pair: GOOG-AMGN, Correlation: 0.928635218264281
Pair: GOOG-APH, Correlation: 0.9712437731264175
Pair: GOOG-ADI, Correlation: 0.9793118566478881
Pair: GOOG-ANSS, Correlation: 0.9290316847059457
Pair: GOOG-AON, Correlation: 0.959656050436424
Pair: GOOG-APO, Correlation: 0.9431773811742947
Pair: GOOG-AAPL, Correlation: 0.9736863577514682
Pair: GOOG-AMAT, Correlation: 0.9775358629268326
Pair: GOOG-AJG, Correlation: 0.9553948586699637
Pair: GOOG-AIZ, Correlation: 0.960873190849094
Pair: GOOG-ADSK, Correlation: 0.9142310278031044
Pair: GOOG-ADP, Correlation: 0.9612809301105522
Pair: GOOG-AZO, Correlation: 0.9380900952589745
Pair: GOOG-AVY, Correlation: 0.9778221847358777
Pair: GOOG-AXON, Correlation: 0.9153325603557516
Pair: GOOG-BAC, Correlation: 0.9253675933039499
Pair: GOOG-TECH, Correlation: 0.9069360163537418
Pair: GOOG-BLK, Correlation: 0.971230466223961
Pair: GOOG-BX, Correlation: 0.974428138736571
Pair: GOOG-BKNG, Correlation: 0.9154613010287317
Pair: GOOG-BSX, Correlation: 0.932212087690718
Pair: GOOG-AVGO, Correlation: 0.9039483343018877
Pair: GOOG-BR, Correlation: 0.9675589644735677
Pair: GOOG-BRO, Correlation: 0.9751701745056761
Pair: GOOG-CDNS, Correlation: 0.9555107463164816
Pair: GOOG-CPT, Correlation: 0.9032713837252286
Pair: GOOG-COF, Correlation: 0.9290270866399718
Pair: GOOG-CARR, Correlation: 0.9129237223165895
Pair: GOOG-CAT, Correlation: 0.9441314836843195
Pair: GOOG-CBOE, Correlation: 0.9213697096203802
Pair: GOOG-CBRE, Correlation: 0.9667184373630453
Pair: GOOG-CDW, Correlation: 0.9614284000572637
Pair: GOOG-CE, Correlation: 0.9196330352092537
Pair: GOOG-COR, Correlation: 0.9163782098526263
Pair: GOOG-SCHW, Correlation: 0.9178656109714488
Pair: GOOG-CMG, Correlation: 0.9414328695578291
Pair: GOOG-CB, Correlation: 0.9476632308399333
Pair: GOOG-CHD, Correlation: 0.9456863671636492
Pair: GOOG-CI, Correlation: 0.918703857952625
Pair: GOOG-CINF, Correlation: 0.935650903205538
Pair: GOOG-CTAS, Correlation: 0.9611375553592281
Pair: GOOG-CSCO, Correlation: 0.9101051709761298
Pair: GOOG-CME, Correlation: 0.924787304933637
Pair: GOOG-KO, Correlation: 0.9412456339426256
Pair: GOOG-COO, Correlation: 0.9120687221902934
Pair: GOOG-CPRT, Correlation: 0.9723691231688276
Pair: GOOG-GLW, Correlation: 0.9115212825916417
Pair: GOOG-CSGP, Correlation: 0.9108470039177387
Pair: GOOG-COST, Correlation: 0.9662040694472112
Pair: GOOG-CSX, Correlation: 0.9486469916222772
Pair: GOOG-CMI, Correlation: 0.9498228713704003
Pair: GOOG-DHR, Correlation: 0.966127191417714
Pair: GOOG-DRI, Correlation: 0.9443089485118128
Pair: GOOG-DE, Correlation: 0.948874269622787
Pair: GOOG-DXCM, Correlation: 0.9090744671737506
Pair: GOOG-DLR, Correlation: 0.918129835154708
Pair: GOOG-DFS, Correlation: 0.9429470150356895
Pair: GOOG-DPZ, Correlation: 0.9448421233053186
Pair: GOOG-DOV, Correlation: 0.9807963638774743
Pair: GOOG-DHI, Correlation: 0.9529630736521084
Pair: GOOG-DTE, Correlation: 0.913837973858065
Pair: GOOG-DUK, Correlation: 0.9376132998486101
Pair: GOOG-ETN, Correlation: 0.931784025339543
Pair: GOOG-EBAY, Correlation: 0.9107627245274649
Pair: GOOG-ELV, Correlation: 0.9510344726014406
Pair: GOOG-EMR, Correlation: 0.9689134588481744
Pair: GOOG-ETR, Correlation: 0.9308466436255484
Pair: GOOG-EFX, Correlation: 0.9617274397525752
Pair: GOOG-EQIX, Correlation: 0.9460778768777744
Pair: GOOG-ERIE, Correlation: 0.9030795751413795
Pair: GOOG-EG, Correlation: 0.9133072757933558
Pair: GOOG-EXPD, Correlation: 0.9704226611843162
Pair: GOOG-EXR, Correlation: 0.9433884245033533
Pair: GOOG-FDS, Correlation: 0.955860076731472
Pair: GOOG-FAST, Correlation: 0.9725188398419923
Pair: GOOG-FITB, Correlation: 0.9276177286996665
Pair: GOOG-FI, Correlation: 0.9282892299076413
Pair: GOOG-FTNT, Correlation: 0.9544501356876826
Pair: GOOG-GRMN, Correlation: 0.9670360964891705
Pair: GOOG-IT, Correlation: 0.9549201138051483
Pair: GOOG-GEN, Correlation: 0.9336486760165051
Pair: GOOG-GD, Correlation: 0.9014869293236797
Pair: GOOG-GS, Correlation: 0.9554094379063949
Pair: GOOG-HIG, Correlation: 0.9328665081918189
Pair: GOOG-HCA, Correlation: 0.9666499021590864
Pair: GOOG-HSY, Correlation: 0.9009153291894034
Pair: GOOG-HLT, Correlation: 0.9554675921899508
Pair: GOOG-HOLX, Correlation: 0.9345809531525847
Pair: GOOG-HD, Correlation: 0.9713997857152386
Pair: GOOG-HON, Correlation: 0.932582812020112
Pair: GOOG-HPQ, Correlation: 0.9274399160460606
Pair: GOOG-HUBB, Correlation: 0.9176183547505076
Pair: GOOG-IEX, Correlation: 0.9332358368170393
Pair: GOOG-IDXX, Correlation: 0.9463297130248525
Pair: GOOG-ITW, Correlation: 0.9605350901335246
Pair: GOOG-IR, Correlation: 0.917554146838776
Pair: GOOG-ICE, Correlation: 0.9698529989432725
Pair: GOOG-IPG, Correlation: 0.9217602613458875
Pair: GOOG-INTU, Correlation: 0.9878638630986495
Pair: GOOG-ISRG, Correlation: 0.9718007101231609
Pair: GOOG-INVH, Correlation: 0.9110188675625092
Pair: GOOG-IQV, Correlation: 0.9423276561848406
Pair: GOOG-JBHT, Correlation: 0.9440559897465758
Pair: GOOG-J, Correlation: 0.9684165991670594
Pair: GOOG-JNJ, Correlation: 0.9074930255923057
Pair: GOOG-JCI, Correlation: 0.9424401051724884
Pair: GOOG-JPM, Correlation: 0.9673119169796511
Pair: GOOG-KDP, Correlation: 0.9240196150508404
Pair: GOOG-KKR, Correlation: 0.9368802429376972
Pair: GOOG-KLAC, Correlation: 0.9479904127289518
Pair: GOOG-LHX, Correlation: 0.9178323399006061
Pair: GOOG-LH, Correlation: 0.9586882110216906
Pair: GOOG-LRCX, Correlation: 0.9685331115636936
Pair: GOOG-LDOS, Correlation: 0.9402515170583718
Pair: GOOG-LEN, Correlation: 0.9436832270252549
Pair: GOOG-LII, Correlation: 0.9398326739743164
Pair: GOOG-LIN, Correlation: 0.9679162807656726
Pair: GOOG-LYV, Correlation: 0.9536855354453715
Pair: GOOG-LMT, Correlation: 0.9113322413419461
Pair: GOOG-LOW, Correlation: 0.977941845768614
Pair: GOOG-LULU, Correlation: 0.9068457233072551
Pair: GOOG-MAR, Correlation: 0.9372339194082828
Pair: GOOG-MMC, Correlation: 0.9753683343933044
Pair: GOOG-MLM, Correlation: 0.9710489417628198
Pair: GOOG-MAS, Correlation: 0.9570892315468936
Pair: GOOG-MA, Correlation: 0.9599607406293679
Pair: GOOG-MCD, Correlation: 0.948203426954931
Pair: GOOG-MRK, Correlation: 0.9179591118789739
Pair: GOOG-META, Correlation: 0.9120957122993951
Pair: GOOG-MET, Correlation: 0.9333473350915673
Pair: GOOG-MTD, Correlation: 0.948672730003415
Pair: GOOG-MCHP, Correlation: 0.9660382736622514
Pair: GOOG-MU, Correlation: 0.9508810957406246
Pair: GOOG-MSFT, Correlation: 0.9847090970610242
Pair: GOOG-MAA, Correlation: 0.9261414130598162
Pair: GOOG-MOH, Correlation: 0.9544550157544015
Pair: GOOG-MDLZ, Correlation: 0.9361269736805948
Pair: GOOG-MPWR, Correlation: 0.9651096300191656
Pair: GOOG-MNST, Correlation: 0.9255621277100945
Pair: GOOG-MCO, Correlation: 0.9801411680408959
Pair: GOOG-MS, Correlation: 0.9688100296916597
Pair: GOOG-MSI, Correlation: 0.9591521485136619
Pair: GOOG-MSCI, Correlation: 0.9636273483043167
Pair: GOOG-NDAQ, Correlation: 0.9705202296104678
Pair: GOOG-NTAP, Correlation: 0.917162300067595
Pair: GOOG-NFLX, Correlation: 0.9038699921260316
Pair: GOOG-NEE, Correlation: 0.9248955628331759
Pair: GOOG-NDSN, Correlation: 0.9621475386079229
Pair: GOOG-NSC, Correlation: 0.9368519272004192
Pair: GOOG-NOC, Correlation: 0.9100880393108703
Pair: GOOG-NVR, Correlation: 0.9657829609325495
Pair: GOOG-NXPI, Correlation: 0.9685842133937622
Pair: GOOG-ORLY, Correlation: 0.948569343929416
Pair: GOOG-ODFL, Correlation: 0.9669060954802582
Pair: GOOG-ON, Correlation: 0.9025843965359763
Pair: GOOG-ORCL, Correlation: 0.9416831447689873
Pair: GOOG-PCAR, Correlation: 0.9203652833476155
Pair: GOOG-PKG, Correlation: 0.9542875994193412
Pair: GOOG-PANW, Correlation: 0.9316778358843859
Pair: GOOG-PH, Correlation: 0.9449599061179369
Pair: GOOG-PAYX, Correlation: 0.9698587461784228
Pair: GOOG-PNR, Correlation: 0.9230380005948818
Pair: GOOG-PEP, Correlation: 0.9416690628678269
Pair: GOOG-PNC, Correlation: 0.9195179256595996
Pair: GOOG-POOL, Correlation: 0.9485590088714587
Pair: GOOG-PG, Correlation: 0.9638321695235134
Pair: GOOG-PGR, Correlation: 0.9377912753090097
Pair: GOOG-PLD, Correlation: 0.9537686851601279
Pair: GOOG-PEG, Correlation: 0.9482501130602626
Pair: GOOG-PTC, Correlation: 0.9619726595970836
Pair: GOOG-PSA, Correlation: 0.9320782355093791
Pair: GOOG-PHM, Correlation: 0.910507466652454
Pair: GOOG-QCOM, Correlation: 0.9500611531175184
Pair: GOOG-DGX, Correlation: 0.9452582987826311
Pair: GOOG-RJF, Correlation: 0.9591089348800425
Pair: GOOG-RF, Correlation: 0.922052375978981
Pair: GOOG-RSG, Correlation: 0.971640218697618
Pair: GOOG-RMD, Correlation: 0.930275177865513
Pair: GOOG-ROK, Correlation: 0.9497032506358186
Pair: GOOG-ROL, Correlation: 0.9541587072722607
Pair: GOOG-ROP, Correlation: 0.9613139326924116
Pair: GOOG-ROST, Correlation: 0.9122969294376043
Pair: GOOG-SPGI, Correlation: 0.9745076262035315
Pair: GOOG-CRM, Correlation: 0.9435844174604087
Pair: GOOG-STX, Correlation: 0.9544452740986046
Pair: GOOG-NOW, Correlation: 0.9713485748606674
Pair: GOOG-SHW, Correlation: 0.9774689968730624
Pair: GOOG-SNA, Correlation: 0.9287756519430789
Pair: GOOG-SO, Correlation: 0.9528658613214136
Pair: GOOG-STLD, Correlation: 0.9021149248404696
Pair: GOOG-STE, Correlation: 0.9648802614539385
Pair: GOOG-SYK, Correlation: 0.96616170630753
Pair: GOOG-SNPS, Correlation: 0.9583295328047297
Pair: GOOG-TMUS, Correlation: 0.9612314372319226
Pair: GOOG-TEL, Correlation: 0.9677180770966287
Pair: GOOG-TDY, Correlation: 0.9378620703536609
Pair: GOOG-TER, Correlation: 0.9550953048219548
Pair: GOOG-TSLA, Correlation: 0.9038823436318236
Pair: GOOG-TXN, Correlation: 0.9679106782033403
Pair: GOOG-TPL, Correlation: 0.9021404093203438
Pair: GOOG-TMO, Correlation: 0.9610259116585891
Pair: GOOG-TJX, Correlation: 0.9522463442249964
Pair: GOOG-TSCO, Correlation: 0.9626111453445299
Pair: GOOG-TT, Correlation: 0.9513018846866028
Pair: GOOG-TDG, Correlation: 0.9472943549404641
Pair: GOOG-TRV, Correlation: 0.934355187128373
Pair: GOOG-TYL, Correlation: 0.9630131742618919
Pair: GOOG-UNP, Correlation: 0.9560870665657419
Pair: GOOG-URI, Correlation: 0.9316062940598794
Pair: GOOG-UNH, Correlation: 0.9608115056602637
Pair: GOOG-VRSK, Correlation: 0.9684418884139407
Pair: GOOG-VRTX, Correlation: 0.9154733146615597
Pair: GOOG-V, Correlation: 0.9551002738390467
Pair: GOOG-VMC, Correlation: 0.9578400571036068
Pair: GOOG-WRB, Correlation: 0.9484762581447193
Pair: GOOG-GWW, Correlation: 0.9100727184602381
Pair: GOOG-WMT, Correlation: 0.9537976101363854
Pair: GOOG-WM, Correlation: 0.9736147974779753
Pair: GOOG-WAT, Correlation: 0.9428500207033758
Pair: GOOG-WELL, Correlation: 0.9076491156544884
Pair: GOOG-WST, Correlation: 0.9562830801927837
Pair: GOOG-WTW, Correlation: 0.9542452416785523
Pair: GOOG-XYL, Correlation: 0.9544204961826342
Pair: GOOG-YUM, Correlation: 0.9471146433484771
Pair: GOOG-ZTS, Correlation: 0.9368792679263425
Pair: MO-CAG, Correlation: 0.9068785108206782
Pair: MO-STZ, Correlation: 0.9167663975934083
Pair: MO-DD, Correlation: 0.9007421361406427
Pair: MO-EIX, Correlation: 0.9385696790702217
Pair: MO-GD, Correlation: 0.9027551207362964
Pair: MO-HSIC, Correlation: 0.9185884983866747
Pair: MO-NI, Correlation: 0.920893909502257
Pair: MO-OMC, Correlation: 0.905313627702054
Pair: MO-PPL, Correlation: 0.9409890186315031
Pair: MO-REG, Correlation: 0.9243753306440605
Pair: AMZN-AEE, Correlation: 0.9226968745923855
Pair: AMZN-AEP, Correlation: 0.9042965561697283
Pair: AMZN-AMT, Correlation: 0.9364836133265039
Pair: AMZN-AWK, Correlation: 0.9420350080909122
Pair: AMZN-AME, Correlation: 0.9313770111012054
Pair: AMZN-AMGN, Correlation: 0.9154374287798618
Pair: AMZN-APH, Correlation: 0.909783698749083
Pair: AMZN-ADI, Correlation: 0.9356791780845239
Pair: AMZN-ANSS, Correlation: 0.974133884964875
Pair: AMZN-AON, Correlation: 0.9162560913398565
Pair: AMZN-AAPL, Correlation: 0.9130961247759901
Pair: AMZN-AMAT, Correlation: 0.9000076926238493
Pair: AMZN-AIZ, Correlation: 0.9387121608544291
Pair: AMZN-ADSK, Correlation: 0.9763415815762981
Pair: AMZN-ADP, Correlation: 0.9195349899224197
Pair: AMZN-AVY, Correlation: 0.9487621742005069
Pair: AMZN-BALL, Correlation: 0.9171471746931403
Pair: AMZN-BAC, Correlation: 0.9196324245223928
Pair: AMZN-BBY, Correlation: 0.9576994191010527
Pair: AMZN-TECH, Correlation: 0.9194633389924621
Pair: AMZN-BLK, Correlation: 0.9514846668406559
Pair: AMZN-BSX, Correlation: 0.9120935595153467
Pair: AMZN-BR, Correlation: 0.965015203586372
Pair: AMZN-BRO, Correlation: 0.9154587448991397
Pair: AMZN-CBRE, Correlation: 0.9150250559011243
Pair: AMZN-CDW, Correlation: 0.9071480743874619
Pair: AMZN-CE, Correlation: 0.9303163443441925
Pair: AMZN-CRL, Correlation: 0.9125679345470586
Pair: AMZN-CHD, Correlation: 0.9550502261763728
Pair: AMZN-CINF, Correlation: 0.908186547776114
Pair: AMZN-CTAS, Correlation: 0.900257582605189
Pair: AMZN-CSCO, Correlation: 0.9300022147364727
Pair: AMZN-CME, Correlation: 0.9437507364315342
Pair: AMZN-CMS, Correlation: 0.9241662079187272
Pair: AMZN-COO, Correlation: 0.9426723201026561
Pair: AMZN-CPRT, Correlation: 0.9271912847761363
Pair: AMZN-GLW, Correlation: 0.9237130411397723
Pair: AMZN-CSGP, Correlation: 0.9600043868138697
Pair: AMZN-CSX, Correlation: 0.9560084736087833
Pair: AMZN-CMI, Correlation: 0.9164762198434483
Pair: AMZN-DHR, Correlation: 0.9536035029891042
Pair: AMZN-DRI, Correlation: 0.9120878573157027
Pair: AMZN-DXCM, Correlation: 0.907803234121205
Pair: AMZN-DLR, Correlation: 0.9654995413272532
Pair: AMZN-DPZ, Correlation: 0.9773127483774606
Pair: AMZN-DOV, Correlation: 0.9444025611615071
Pair: AMZN-DTE, Correlation: 0.9143347034556202
Pair: AMZN-DUK, Correlation: 0.9125699643987277
Pair: AMZN-EBAY, Correlation: 0.9435801290277586
Pair: AMZN-ECL, Correlation: 0.9476061184128836
Pair: AMZN-EW, Correlation: 0.9322151606170546
Pair: AMZN-EA, Correlation: 0.9031803258740522
Pair: AMZN-ELV, Correlation: 0.9041799396082367
Pair: AMZN-EMR, Correlation: 0.9098486197039892
Pair: AMZN-ETR, Correlation: 0.9236568693340206
Pair: AMZN-EFX, Correlation: 0.9303651903740322
Pair: AMZN-EQIX, Correlation: 0.9643781369511736
Pair: AMZN-EXPD, Correlation: 0.942496592003029
Pair: AMZN-EXR, Correlation: 0.9054140144492626
Pair: AMZN-FDS, Correlation: 0.9320096067272574
Pair: AMZN-FAST, Correlation: 0.9266423118915372
Pair: AMZN-FI, Correlation: 0.94217146552336
Pair: AMZN-GRMN, Correlation: 0.9546377294484075
Pair: AMZN-GEN, Correlation: 0.9207512934928246
Pair: AMZN-HOLX, Correlation: 0.925831185341233
Pair: AMZN-HD, Correlation: 0.959606530209428
Pair: AMZN-HON, Correlation: 0.941880473010514
Pair: AMZN-IEX, Correlation: 0.9445155120616132
Pair: AMZN-IDXX, Correlation: 0.9564201234346927
Pair: AMZN-ITW, Correlation: 0.9435901338120852
Pair: AMZN-ICE, Correlation: 0.9683177826819556
Pair: AMZN-INTU, Correlation: 0.9494814174153675
Pair: AMZN-ISRG, Correlation: 0.9532221273677871
Pair: AMZN-IQV, Correlation: 0.9286368215302644
Pair: AMZN-JBHT, Correlation: 0.9056400440366589
Pair: AMZN-JKHY, Correlation: 0.9285355212321871
Pair: AMZN-J, Correlation: 0.9284509601384069
Pair: AMZN-JNJ, Correlation: 0.9117249658265756
Pair: AMZN-JPM, Correlation: 0.9331578237688136
Pair: AMZN-KDP, Correlation: 0.938416691324925
Pair: AMZN-LHX, Correlation: 0.9381204668610734
Pair: AMZN-LH, Correlation: 0.9397342520544588
Pair: AMZN-LRCX, Correlation: 0.9029739417074412
Pair: AMZN-LDOS, Correlation: 0.9453449654790149
Pair: AMZN-LII, Correlation: 0.9209810188453468
Pair: AMZN-LYV, Correlation: 0.9363378083456998
Pair: AMZN-LMT, Correlation: 0.9004534770951612
Pair: AMZN-LOW, Correlation: 0.9359210542092335
Pair: AMZN-LULU, Correlation: 0.9206471344755633
Pair: AMZN-MMC, Correlation: 0.9114590495169538
Pair: AMZN-MAS, Correlation: 0.9545860762402013
Pair: AMZN-MA, Correlation: 0.9641986040058348
Pair: AMZN-MKC, Correlation: 0.9230600301644611
Pair: AMZN-MCD, Correlation: 0.9254880296155837
Pair: AMZN-META, Correlation: 0.9069257119233717
Pair: AMZN-MTD, Correlation: 0.9314540435834798
Pair: AMZN-MCHP, Correlation: 0.9346709504964674
Pair: AMZN-MU, Correlation: 0.9298341234366627
Pair: AMZN-MSFT, Correlation: 0.934099348870857
Pair: AMZN-MAA, Correlation: 0.9012263314526661
Pair: AMZN-MOH, Correlation: 0.9084357613153423
Pair: AMZN-MDLZ, Correlation: 0.9037114230337493
Pair: AMZN-MNST, Correlation: 0.9103437776545182
Pair: AMZN-MCO, Correlation: 0.9662113854893682
Pair: AMZN-MSCI, Correlation: 0.9406976603744304
Pair: AMZN-NDAQ, Correlation: 0.9431575489496877
Pair: AMZN-NFLX, Correlation: 0.9674511935972361
Pair: AMZN-NEE, Correlation: 0.9421146433806971
Pair: AMZN-NKE, Correlation: 0.9021487020276643
Pair: AMZN-NDSN, Correlation: 0.9493866780242626
Pair: AMZN-NSC, Correlation: 0.9566345154196346
Pair: AMZN-NVR, Correlation: 0.9235974779083013
Pair: AMZN-NXPI, Correlation: 0.9090519762153569
Pair: AMZN-PKG, Correlation: 0.9134884082956546
Pair: AMZN-PAYX, Correlation: 0.9229763747039283
Pair: AMZN-PEP, Correlation: 0.902902878266234
Pair: AMZN-PNC, Correlation: 0.9104196174707804
Pair: AMZN-POOL, Correlation: 0.9495512392741721
Pair: AMZN-PG, Correlation: 0.9333365708425194
Pair: AMZN-PLD, Correlation: 0.9359089072259196
Pair: AMZN-PEG, Correlation: 0.9296991562180061
Pair: AMZN-PTC, Correlation: 0.937110693230786
Pair: AMZN-QCOM, Correlation: 0.9055567091324828
Pair: AMZN-DGX, Correlation: 0.9317669541793198
Pair: AMZN-RSG, Correlation: 0.908446104862049
Pair: AMZN-RMD, Correlation: 0.941662594711984
Pair: AMZN-RVTY, Correlation: 0.9126892648572238
Pair: AMZN-ROK, Correlation: 0.9354836911053106
Pair: AMZN-ROL, Correlation: 0.9568957781002799
Pair: AMZN-ROP, Correlation: 0.9649369607886271
Pair: AMZN-ROST, Correlation: 0.9332803741642507
Pair: AMZN-SPGI, Correlation: 0.9734497928259108
Pair: AMZN-CRM, Correlation: 0.9828150025886806
Pair: AMZN-NOW, Correlation: 0.9526508726343426
Pair: AMZN-SHW, Correlation: 0.9641995250400444
Pair: AMZN-SBUX, Correlation: 0.9095122775150651
Pair: AMZN-STE, Correlation: 0.958002641914165
Pair: AMZN-SYK, Correlation: 0.94785796777457
Pair: AMZN-SYY, Correlation: 0.907658114093441
Pair: AMZN-TMUS, Correlation: 0.9383079215153592
Pair: AMZN-TROW, Correlation: 0.9159340255447377
Pair: AMZN-TTWO, Correlation: 0.9623666296980367
Pair: AMZN-TEL, Correlation: 0.9381375430302215
Pair: AMZN-TDY, Correlation: 0.951034884376604
Pair: AMZN-TER, Correlation: 0.9492198206471832
Pair: AMZN-TXN, Correlation: 0.9606189587993063
Pair: AMZN-TMO, Correlation: 0.9430354132964283
Pair: AMZN-TJX, Correlation: 0.9046824455930894
Pair: AMZN-TYL, Correlation: 0.9735306837514615
Pair: AMZN-UNP, Correlation: 0.9535461637816285
Pair: AMZN-UNH, Correlation: 0.9160051421977833
Pair: AMZN-VRSN, Correlation: 0.9261655672077438
Pair: AMZN-VRSK, Correlation: 0.9578127012835209
Pair: AMZN-V, Correlation: 0.9645080854412815
Pair: AMZN-VMC, Correlation: 0.9056355307990598
Pair: AMZN-WMT, Correlation: 0.9267910547948436
Pair: AMZN-WM, Correlation: 0.9292490825447604
Pair: AMZN-WAT, Correlation: 0.9237499097615006
Pair: AMZN-WEC, Correlation: 0.9216280921317188
Pair: AMZN-WST, Correlation: 0.9341625150874225
Pair: AMZN-WTW, Correlation: 0.9487868300657382
Pair: AMZN-WDAY, Correlation: 0.9470513963420276
Pair: AMZN-XEL, Correlation: 0.9197641931131542
Pair: AMZN-XYL, Correlation: 0.9456064549125095
Pair: AMZN-YUM, Correlation: 0.926966185456969
Pair: AMZN-ZBRA, Correlation: 0.9184455432976065
Pair: AMZN-ZTS, Correlation: 0.9497319922398489
Pair: AMCR-AEE, Correlation: 0.9107119557580071
Pair: AMCR-AEP, Correlation: 0.9047646063740351
Pair: AMCR-AWK, Correlation: 0.9073941864049282
Pair: AMCR-CHRW, Correlation: 0.9026603081645271
Pair: AMCR-CMS, Correlation: 0.9058402769920174
Pair: AMCR-GLW, Correlation: 0.9126926874259074
Pair: AMCR-DTE, Correlation: 0.9337293538520134
Pair: AMCR-DUK, Correlation: 0.9132801052671755
Pair: AMCR-EVRG, Correlation: 0.9040921570781247
Pair: AMCR-EXR, Correlation: 0.9029912129730362
Pair: AMCR-HOLX, Correlation: 0.9041514969926253
Pair: AMCR-HON, Correlation: 0.9162239986752083
Pair: AMCR-JNJ, Correlation: 0.9352447777899283
Pair: AMCR-LH, Correlation: 0.904008565541538
Pair: AMCR-MTD, Correlation: 0.9183530758798063
Pair: AMCR-MAA, Correlation: 0.90375614205848
Pair: AMCR-NEE, Correlation: 0.9081365993218341
Pair: AMCR-PNC, Correlation: 0.9011657792261691
Pair: AMCR-DGX, Correlation: 0.9213300810384463
Pair: AMCR-SYY, Correlation: 0.9029457217231249
Pair: AMCR-TXN, Correlation: 0.9060250138705325
Pair: AMCR-VLTO, Correlation: 0.9000183443297705
Pair: AMCR-WAT, Correlation: 0.9196116367871632
Pair: AMCR-XEL, Correlation: 0.9034370183019138
Pair: AEE-AEP, Correlation: 0.9871975616581986
Pair: AEE-AMT, Correlation: 0.9682878003201713
Pair: AEE-AWK, Correlation: 0.9827315783413009
Pair: AEE-AME, Correlation: 0.9245185134361773
Pair: AEE-AMGN, Correlation: 0.9368136028215316
Pair: AEE-ADI, Correlation: 0.9304946000814992
Pair: AEE-ANSS, Correlation: 0.9335014601084302
Pair: AEE-AON, Correlation: 0.9587397618088985
Pair: AEE-AIZ, Correlation: 0.9482981713924815
Pair: AEE-ATO, Correlation: 0.9725811551639609
Pair: AEE-ADSK, Correlation: 0.9309206937474497
Pair: AEE-ADP, Correlation: 0.9551964022241886
Pair: AEE-AVB, Correlation: 0.9219391560929971
Pair: AEE-AVY, Correlation: 0.9401968602924509
Pair: AEE-BALL, Correlation: 0.9070049012965447
Pair: AEE-BAC, Correlation: 0.9178150249446675
Pair: AEE-BDX, Correlation: 0.9620190947198202
Pair: AEE-BBY, Correlation: 0.9177289321294806
Pair: AEE-TECH, Correlation: 0.9090505028361048
Pair: AEE-BLK, Correlation: 0.9261825760755821
Pair: AEE-BSX, Correlation: 0.9092508018268657
Pair: AEE-BR, Correlation: 0.947815175567046
Pair: AEE-CHRW, Correlation: 0.9305661901341857
Pair: AEE-CPT, Correlation: 0.9468421302251493
Pair: AEE-CBRE, Correlation: 0.9084785744309867
Pair: AEE-CDW, Correlation: 0.9154167277216066
Pair: AEE-CE, Correlation: 0.9173671898820437
Pair: AEE-CNC, Correlation: 0.9566594922324506
Pair: AEE-CNP, Correlation: 0.9002262139695907
Pair: AEE-SCHW, Correlation: 0.9107212375905194
Pair: AEE-CB, Correlation: 0.9024749845342633
Pair: AEE-CHD, Correlation: 0.96869340357299
Pair: AEE-CI, Correlation: 0.9152319382702733
Pair: AEE-CINF, Correlation: 0.9601159686811498
Pair: AEE-CSCO, Correlation: 0.9585445610121313
Pair: AEE-CLX, Correlation: 0.9198982304219455
Pair: AEE-CME, Correlation: 0.9693776768652722
Pair: AEE-CMS, Correlation: 0.9911726640084811
Pair: AEE-KO, Correlation: 0.9579203763452505
Pair: AEE-CMCSA, Correlation: 0.9186872555475607
Pair: AEE-ED, Correlation: 0.9537898319720267
Pair: AEE-STZ, Correlation: 0.9350450652573163
Pair: AEE-COO, Correlation: 0.9661045623083162
Pair: AEE-GLW, Correlation: 0.925711108861241
Pair: AEE-CSGP, Correlation: 0.9460407500468685
Pair: AEE-CCI, Correlation: 0.9356502950707598
Pair: AEE-CSX, Correlation: 0.9646337907671455
Pair: AEE-DHR, Correlation: 0.9469984235353518
Pair: AEE-DRI, Correlation: 0.9369929640995961
Pair: AEE-DLR, Correlation: 0.9380312600236067
Pair: AEE-DG, Correlation: 0.9057076914226567
Pair: AEE-DPZ, Correlation: 0.951360072635971
Pair: AEE-DOV, Correlation: 0.9281765683770516
Pair: AEE-DTE, Correlation: 0.9867137271254064
Pair: AEE-DUK, Correlation: 0.972049676541049
Pair: AEE-EBAY, Correlation: 0.9071885881025817
Pair: AEE-ECL, Correlation: 0.924675396615612
Pair: AEE-EW, Correlation: 0.9492035157775999
Pair: AEE-EA, Correlation: 0.9252055192705467
Pair: AEE-ELV, Correlation: 0.9453173789254172
Pair: AEE-ETR, Correlation: 0.9666992876109738
Pair: AEE-EFX, Correlation: 0.9249340815651323
Pair: AEE-EQIX, Correlation: 0.9629129684568074
Pair: AEE-EQR, Correlation: 0.9123059580001192
Pair: AEE-ESS, Correlation: 0.9165897900402802
Pair: AEE-EG, Correlation: 0.9048997912607237
Pair: AEE-EVRG, Correlation: 0.9741261397485556
Pair: AEE-ES, Correlation: 0.9645043466311461
Pair: AEE-EXC, Correlation: 0.9147891498969362
Pair: AEE-EXPD, Correlation: 0.9241312184391406
Pair: AEE-EXR, Correlation: 0.9540560388256167
Pair: AEE-FDS, Correlation: 0.9526870110837589
Pair: AEE-FI, Correlation: 0.9396193530457332
Pair: AEE-GEN, Correlation: 0.9102167845666279
Pair: AEE-GPC, Correlation: 0.9006126235702595
Pair: AEE-GL, Correlation: 0.9444211684789259
Pair: AEE-HSY, Correlation: 0.9347407486110038
Pair: AEE-HOLX, Correlation: 0.9550566895618987
Pair: AEE-HD, Correlation: 0.9587572861980601
Pair: AEE-HON, Correlation: 0.9735351618094993
Pair: AEE-HRL, Correlation: 0.9114583771998568
Pair: AEE-HUM, Correlation: 0.953686928456654
Pair: AEE-IEX, Correlation: 0.973833851107712
Pair: AEE-IDXX, Correlation: 0.9203811777825792
Pair: AEE-ITW, Correlation: 0.9552331329802856
Pair: AEE-PODD, Correlation: 0.9244545291171153
Pair: AEE-ICE, Correlation: 0.9508853566284917
Pair: AEE-IPG, Correlation: 0.9049225158090892
Pair: AEE-INTU, Correlation: 0.9043431858836093
Pair: AEE-IQV, Correlation: 0.9453847031154313
Pair: AEE-JBHT, Correlation: 0.9338780589804954
Pair: AEE-JKHY, Correlation: 0.9806819393199265
Pair: AEE-J, Correlation: 0.9084108196108492
Pair: AEE-JNJ, Correlation: 0.9795250683741968
Pair: AEE-JPM, Correlation: 0.9024608191137654
Pair: AEE-KDP, Correlation: 0.9830426006027545
Pair: AEE-KEYS, Correlation: 0.9325447705122478
Pair: AEE-KMB, Correlation: 0.9377926792179095
Pair: AEE-LHX, Correlation: 0.9792158518352028
Pair: AEE-LH, Correlation: 0.9408306151375715
Pair: AEE-LDOS, Correlation: 0.9236572920988074
Pair: AEE-LYV, Correlation: 0.946780684919415
Pair: AEE-LMT, Correlation: 0.9635969951230071
Pair: AEE-LOW, Correlation: 0.9322920999747046
Pair: AEE-MMC, Correlation: 0.9238725484308732
Pair: AEE-MAS, Correlation: 0.931686822560925
Pair: AEE-MA, Correlation: 0.9543214206060909
Pair: AEE-MKC, Correlation: 0.9717058387409023
Pair: AEE-MCD, Correlation: 0.9635547538560577
Pair: AEE-MDT, Correlation: 0.9038213272994986
Pair: AEE-MTD, Correlation: 0.953743630874202
Pair: AEE-MCHP, Correlation: 0.9280099580659532
Pair: AEE-MAA, Correlation: 0.9553299785777988
Pair: AEE-MOH, Correlation: 0.9120955470308024
Pair: AEE-MDLZ, Correlation: 0.9538681002625631
Pair: AEE-MNST, Correlation: 0.946592772582684
Pair: AEE-MCO, Correlation: 0.9380764140581274
Pair: AEE-MSCI, Correlation: 0.9215809463361457
Pair: AEE-NDAQ, Correlation: 0.9506368311281328
Pair: AEE-NEE, Correlation: 0.9766038489799729
Pair: AEE-NKE, Correlation: 0.9217487895951647
Pair: AEE-NI, Correlation: 0.9495496567479389
Pair: AEE-NDSN, Correlation: 0.9557700429667483
Pair: AEE-NSC, Correlation: 0.9643841131344851
Pair: AEE-NOC, Correlation: 0.9628032672929793
Pair: AEE-PKG, Correlation: 0.912335584794746
Pair: AEE-PAYX, Correlation: 0.9553389516485034
Pair: AEE-PEP, Correlation: 0.9662299440581884
Pair: AEE-PFE, Correlation: 0.9120507253352675
Pair: AEE-PNW, Correlation: 0.9202361032069332
Pair: AEE-PNC, Correlation: 0.9264342827744366
Pair: AEE-POOL, Correlation: 0.9317076176429244
Pair: AEE-PG, Correlation: 0.9482499166537202
Pair: AEE-PLD, Correlation: 0.9550653785182639
Pair: AEE-PEG, Correlation: 0.9571640776656676
Pair: AEE-PTC, Correlation: 0.9005201976544133
Pair: AEE-PSA, Correlation: 0.9336120174848376
Pair: AEE-DGX, Correlation: 0.9609449024772069
Pair: AEE-O, Correlation: 0.9663027397803265
Pair: AEE-RF, Correlation: 0.9179765364446208
Pair: AEE-RSG, Correlation: 0.9019773068817002
Pair: AEE-RMD, Correlation: 0.9503678772081724
Pair: AEE-RVTY, Correlation: 0.9398939956867673
Pair: AEE-ROK, Correlation: 0.9405604720264907
Pair: AEE-ROL, Correlation: 0.9480648885334495
Pair: AEE-ROP, Correlation: 0.9627500145720274
Pair: AEE-ROST, Correlation: 0.932632935695164
Pair: AEE-SPGI, Correlation: 0.952626886856215
Pair: AEE-CRM, Correlation: 0.9194411302025901
Pair: AEE-SBAC, Correlation: 0.9506983172110492
Pair: AEE-SRE, Correlation: 0.9635851217910536
Pair: AEE-SHW, Correlation: 0.9412737696055699
Pair: AEE-SO, Correlation: 0.9345144649219431
Pair: AEE-SBUX, Correlation: 0.9543834222724819
Pair: AEE-STE, Correlation: 0.9637296255428228
Pair: AEE-SYK, Correlation: 0.9394366533545783
Pair: AEE-SYY, Correlation: 0.9701505546234903
Pair: AEE-TMUS, Correlation: 0.9313382458060272
Pair: AEE-TTWO, Correlation: 0.9283051282953675
Pair: AEE-TEL, Correlation: 0.9400408405905164
Pair: AEE-TDY, Correlation: 0.9699862542032948
Pair: AEE-TXN, Correlation: 0.9631699406467358
Pair: AEE-TMO, Correlation: 0.9526915814796342
Pair: AEE-TJX, Correlation: 0.9004585578602189
Pair: AEE-TRV, Correlation: 0.9119610062488548
Pair: AEE-TYL, Correlation: 0.9399062489046901
Pair: AEE-UDR, Correlation: 0.9485967641293095
Pair: AEE-ULTA, Correlation: 0.919170899391479
Pair: AEE-UNP, Correlation: 0.9636374920193168
Pair: AEE-UPS, Correlation: 0.9201596891189248
Pair: AEE-UNH, Correlation: 0.9495309423321016
Pair: AEE-VRSN, Correlation: 0.9654229737860337
Pair: AEE-VRSK, Correlation: 0.9397544104237543
Pair: AEE-V, Correlation: 0.9637570784681135
Pair: AEE-VMC, Correlation: 0.9021221939768823
Pair: AEE-WRB, Correlation: 0.9120737032362589
Pair: AEE-WM, Correlation: 0.9366900944738248
Pair: AEE-WAT, Correlation: 0.9523537031806416
Pair: AEE-WEC, Correlation: 0.9941861226755032
Pair: AEE-WST, Correlation: 0.9058089159206036
Pair: AEE-WTW, Correlation: 0.9532578514500929
Pair: AEE-XEL, Correlation: 0.9936565087511599
Pair: AEE-XYL, Correlation: 0.923184530790947
Pair: AEE-YUM, Correlation: 0.964046842215803
Pair: AEE-ZTS, Correlation: 0.9501566438763732
Pair: AEP-AMT, Correlation: 0.9522031881180216
Pair: AEP-AWK, Correlation: 0.961090343475801
Pair: AEP-AME, Correlation: 0.918884510532949
Pair: AEP-AMGN, Correlation: 0.9544943321502206
Pair: AEP-ADI, Correlation: 0.926869190291895
Pair: AEP-ANSS, Correlation: 0.9048374186114385
Pair: AEP-AON, Correlation: 0.9467099284249739
Pair: AEP-AIZ, Correlation: 0.9514676070401143
Pair: AEP-ATO, Correlation: 0.9854245696522753
Pair: AEP-ADSK, Correlation: 0.9024915502715574
Pair: AEP-ADP, Correlation: 0.9518089725873387
Pair: AEP-AVB, Correlation: 0.9350500864352186
Pair: AEP-AVY, Correlation: 0.9284940536627899
Pair: AEP-BAC, Correlation: 0.9091362579583533
Pair: AEP-BDX, Correlation: 0.9580242899692958
Pair: AEP-BLK, Correlation: 0.9145308666499891
Pair: AEP-BSX, Correlation: 0.931904228033411
Pair: AEP-BR, Correlation: 0.9439245671162152
Pair: AEP-CHRW, Correlation: 0.9074875705344357
Pair: AEP-CPT, Correlation: 0.9293738681953783
Pair: AEP-CBOE, Correlation: 0.9159838941879367
Pair: AEP-CBRE, Correlation: 0.9002601800780046
Pair: AEP-CDW, Correlation: 0.9119805171989442
Pair: AEP-CE, Correlation: 0.905384606391766
Pair: AEP-CNC, Correlation: 0.9495998126024016
Pair: AEP-CNP, Correlation: 0.9121220900803294
Pair: AEP-CB, Correlation: 0.9241783484331019
Pair: AEP-CHD, Correlation: 0.9643286370507838
Pair: AEP-CI, Correlation: 0.9321136937688695
Pair: AEP-CINF, Correlation: 0.9659724004264697
Pair: AEP-CSCO, Correlation: 0.9418078489836306
Pair: AEP-CLX, Correlation: 0.9107899578043243
Pair: AEP-CME, Correlation: 0.9629343951056651
Pair: AEP-CMS, Correlation: 0.9953135984882576
Pair: AEP-KO, Correlation: 0.9676331211946171
Pair: AEP-CL, Correlation: 0.9298919142859765
Pair: AEP-CMCSA, Correlation: 0.9097754985943318
Pair: AEP-ED, Correlation: 0.972118605034426
Pair: AEP-STZ, Correlation: 0.9422993432057034
Pair: AEP-COO, Correlation: 0.9584013704082806
Pair: AEP-GLW, Correlation: 0.917636564353973
Pair: AEP-CPAY, Correlation: 0.9111990061477016
Pair: AEP-CSGP, Correlation: 0.9228038090420189
Pair: AEP-CCI, Correlation: 0.908574326939775
Pair: AEP-CSX, Correlation: 0.9462517682062791
Pair: AEP-DHR, Correlation: 0.9239558993246614
Pair: AEP-DRI, Correlation: 0.9282761526149993
Pair: AEP-DLR, Correlation: 0.9329518731751538
Pair: AEP-DFS, Correlation: 0.9016441001156341
Pair: AEP-DPZ, Correlation: 0.9354066665512824
Pair: AEP-DOV, Correlation: 0.9194220842269061
Pair: AEP-DTE, Correlation: 0.9900926774053767
Pair: AEP-DUK, Correlation: 0.9814385044053197
Pair: AEP-ECL, Correlation: 0.9354086840941566
Pair: AEP-EIX, Correlation: 0.9055553503702075
Pair: AEP-EW, Correlation: 0.9194451695615629
Pair: AEP-EA, Correlation: 0.9219723763336249
Pair: AEP-ELV, Correlation: 0.9396604331601747
Pair: AEP-ETR, Correlation: 0.9721452430652383
Pair: AEP-EFX, Correlation: 0.9231826521774429
Pair: AEP-EQIX, Correlation: 0.9515168036444048
Pair: AEP-EQR, Correlation: 0.9236231023862299
Pair: AEP-ESS, Correlation: 0.9304685608800893
Pair: AEP-EG, Correlation: 0.9203308422729922
Pair: AEP-EVRG, Correlation: 0.9770465426291747
Pair: AEP-ES, Correlation: 0.9517135000898598
Pair: AEP-EXR, Correlation: 0.9451935821346723
Pair: AEP-FDS, Correlation: 0.9364441707105844
Pair: AEP-FI, Correlation: 0.9536578531900956
Pair: AEP-GD, Correlation: 0.9157243059792044
Pair: AEP-GL, Correlation: 0.9422333300152106
Pair: AEP-HSY, Correlation: 0.9228575185118119
Pair: AEP-HOLX, Correlation: 0.9427426497493203
Pair: AEP-HD, Correlation: 0.9491230510413394
Pair: AEP-HON, Correlation: 0.9649459624402689
Pair: AEP-HRL, Correlation: 0.9027101377452175
Pair: AEP-HUM, Correlation: 0.9223045956802223
Pair: AEP-HBAN, Correlation: 0.9060986988784551
Pair: AEP-IEX, Correlation: 0.9571953924083909
Pair: AEP-ITW, Correlation: 0.9464256653704582
Pair: AEP-ICE, Correlation: 0.9504067441844972
Pair: AEP-IQV, Correlation: 0.9192708906112583
Pair: AEP-JBHT, Correlation: 0.9124818539657863
Pair: AEP-JKHY, Correlation: 0.973973804801682
Pair: AEP-JNJ, Correlation: 0.972658202240327
Pair: AEP-JPM, Correlation: 0.910831071658077
Pair: AEP-KDP, Correlation: 0.9688420990612264
Pair: AEP-KMB, Correlation: 0.9554888597945902
Pair: AEP-LHX, Correlation: 0.9751742589798358
Pair: AEP-LH, Correlation: 0.917148432540008
Pair: AEP-LDOS, Correlation: 0.9346198672721149
Pair: AEP-LYV, Correlation: 0.9340685789827861
Pair: AEP-LMT, Correlation: 0.9758075050488726
Pair: AEP-LOW, Correlation: 0.9187478763498728
Pair: AEP-MAR, Correlation: 0.9080746106788569
Pair: AEP-MMC, Correlation: 0.9235141927893373
Pair: AEP-MAS, Correlation: 0.9375979217517256
Pair: AEP-MA, Correlation: 0.9478948387689233
Pair: AEP-MKC, Correlation: 0.9540338772175294
Pair: AEP-MCD, Correlation: 0.9524168183469975
Pair: AEP-MRK, Correlation: 0.9161319164806571
Pair: AEP-MTD, Correlation: 0.9309442462999385
Pair: AEP-MCHP, Correlation: 0.9130932137167956
Pair: AEP-MAA, Correlation: 0.9337985266905462
Pair: AEP-MDLZ, Correlation: 0.95560180250162
Pair: AEP-MNST, Correlation: 0.93819886040517
Pair: AEP-MCO, Correlation: 0.9324542115688537
Pair: AEP-NDAQ, Correlation: 0.9375501901918398
Pair: AEP-NEE, Correlation: 0.9589722042988075
Pair: AEP-NI, Correlation: 0.9722584495262544
Pair: AEP-NDSN, Correlation: 0.9404007644707837
Pair: AEP-NSC, Correlation: 0.9430022847914725
Pair: AEP-NOC, Correlation: 0.9676008254004183
Pair: AEP-NVR, Correlation: 0.9012753047291382
Pair: AEP-PKG, Correlation: 0.9250211049542831
Pair: AEP-PAYX, Correlation: 0.9479821733502262
Pair: AEP-PEP, Correlation: 0.961636862630265
Pair: AEP-PNW, Correlation: 0.9447282244342261
Pair: AEP-PNC, Correlation: 0.9220892796173835
Pair: AEP-PG, Correlation: 0.9440058437020442
Pair: AEP-PLD, Correlation: 0.9306969726725529
Pair: AEP-PEG, Correlation: 0.9682997727939818
Pair: AEP-PSA, Correlation: 0.9361784123846438
Pair: AEP-DGX, Correlation: 0.9476138516306601
Pair: AEP-RTX, Correlation: 0.9231944733042323
Pair: AEP-O, Correlation: 0.9726711989132554
Pair: AEP-RF, Correlation: 0.9102391402269348
Pair: AEP-RSG, Correlation: 0.908616312071122
Pair: AEP-RMD, Correlation: 0.9247806971217364
Pair: AEP-RVTY, Correlation: 0.9033186170253474
Pair: AEP-ROK, Correlation: 0.9135217640890259
Pair: AEP-ROL, Correlation: 0.9418996958696786
Pair: AEP-ROP, Correlation: 0.9564713487108317
Pair: AEP-ROST, Correlation: 0.9430230961945066
Pair: AEP-SPGI, Correlation: 0.9391012950245253
Pair: AEP-CRM, Correlation: 0.9050285533124856
Pair: AEP-SBAC, Correlation: 0.9234143894678936
Pair: AEP-SRE, Correlation: 0.9811401232514401
Pair: AEP-SHW, Correlation: 0.9349871769205451
Pair: AEP-SO, Correlation: 0.9457022138273057
Pair: AEP-SBUX, Correlation: 0.9370332584141078
Pair: AEP-STE, Correlation: 0.9469020608466587
Pair: AEP-SYK, Correlation: 0.941504189466258
Pair: AEP-SYY, Correlation: 0.9667747148405151
Pair: AEP-TMUS, Correlation: 0.9285957479795813
Pair: AEP-TTWO, Correlation: 0.90395722659621
Pair: AEP-TEL, Correlation: 0.9313743467397878
Pair: AEP-TDY, Correlation: 0.9483160315140848
Pair: AEP-TXN, Correlation: 0.949006496827544
Pair: AEP-TMO, Correlation: 0.9320445224355002
Pair: AEP-TJX, Correlation: 0.9151240222549386
Pair: AEP-TRV, Correlation: 0.9349153527997277
Pair: AEP-TYL, Correlation: 0.9318359814573889
Pair: AEP-UDR, Correlation: 0.9444598600577989
Pair: AEP-ULTA, Correlation: 0.9156093229025293
Pair: AEP-UNP, Correlation: 0.9550948227514833
Pair: AEP-UNH, Correlation: 0.9369192575823692
Pair: AEP-VLTO, Correlation: 0.9539716912740066
Pair: AEP-VRSN, Correlation: 0.9416622057620173
Pair: AEP-VRSK, Correlation: 0.9348011149936263
Pair: AEP-V, Correlation: 0.9596113051850541
Pair: AEP-VMC, Correlation: 0.9137766019683449
Pair: AEP-WRB, Correlation: 0.9242463845412028
Pair: AEP-WMT, Correlation: 0.9039654961610732
Pair: AEP-WM, Correlation: 0.9393896614954478
Pair: AEP-WAT, Correlation: 0.9382864631242898
Pair: AEP-WEC, Correlation: 0.9878560154015138
Pair: AEP-WTW, Correlation: 0.9535930860667444
Pair: AEP-XEL, Correlation: 0.9802226947459941
Pair: AEP-XYL, Correlation: 0.9188673436345176
Pair: AEP-YUM, Correlation: 0.9575508722212022
Pair: AEP-ZTS, Correlation: 0.9178369418537407
Pair: AXP-AMP, Correlation: 0.9766849556264898
Pair: AXP-AME, Correlation: 0.9635189227857278
Pair: AXP-AMGN, Correlation: 0.9186864523499698
Pair: AXP-APH, Correlation: 0.9778515179197433
Pair: AXP-ADI, Correlation: 0.9619898246659769
Pair: AXP-AON, Correlation: 0.9388938734012796
Pair: AXP-APO, Correlation: 0.9670707265696536
Pair: AXP-AAPL, Correlation: 0.942595133299417
Pair: AXP-AMAT, Correlation: 0.955503408782832
Pair: AXP-ACGL, Correlation: 0.9347562117046722
Pair: AXP-ANET, Correlation: 0.9355612291587059
Pair: AXP-AJG, Correlation: 0.9585369052961115
Pair: AXP-AIZ, Correlation: 0.936993347705325
Pair: AXP-ADP, Correlation: 0.9514595748009556
Pair: AXP-AZO, Correlation: 0.9434049750659547
Pair: AXP-AVY, Correlation: 0.9360485625525129
Pair: AXP-AXON, Correlation: 0.9444652041850145
Pair: AXP-BAC, Correlation: 0.9057286852175549
Pair: AXP-BLK, Correlation: 0.9414240060949628
Pair: AXP-BX, Correlation: 0.9653695588498132
Pair: AXP-BKNG, Correlation: 0.9378067196741284
Pair: AXP-BSX, Correlation: 0.9459345033988661
Pair: AXP-AVGO, Correlation: 0.9343908682182082
Pair: AXP-BR, Correlation: 0.9384977755882478
Pair: AXP-BRO, Correlation: 0.9717462366854535
Pair: AXP-BLDR, Correlation: 0.9035902129246212
Pair: AXP-CDNS, Correlation: 0.9394261741873339
Pair: AXP-COF, Correlation: 0.9304419382655187
Pair: AXP-CARR, Correlation: 0.9229284818952753
Pair: AXP-CAT, Correlation: 0.9623638611719864
Pair: AXP-CBOE, Correlation: 0.930962414911835
Pair: AXP-CBRE, Correlation: 0.9618851717207508
Pair: AXP-CDW, Correlation: 0.9211591352358112
Pair: AXP-COR, Correlation: 0.9361261249644778
Pair: AXP-CMG, Correlation: 0.9455361986702377
Pair: AXP-CB, Correlation: 0.9635198504847252
Pair: AXP-CHD, Correlation: 0.9121122640322247
Pair: AXP-CI, Correlation: 0.9177887865483356
Pair: AXP-CINF, Correlation: 0.9311344331663378
Pair: AXP-CTAS, Correlation: 0.9699147685723751
Pair: AXP-KO, Correlation: 0.9427132152653288
Pair: AXP-CL, Correlation: 0.9032248494156017
Pair: AXP-CPRT, Correlation: 0.9517856205183403
Pair: AXP-COST, Correlation: 0.9718339214850917
Pair: AXP-CSX, Correlation: 0.9180108108659885
Pair: AXP-CMI, Correlation: 0.9590695896423705
Pair: AXP-DHR, Correlation: 0.9134933952104062
Pair: AXP-DRI, Correlation: 0.9296530191092839
Pair: AXP-DECK, Correlation: 0.9227756243854419
Pair: AXP-DE, Correlation: 0.9195727277683301
Pair: AXP-DELL, Correlation: 0.9213164317625206
Pair: AXP-DFS, Correlation: 0.9655979495439008
Pair: AXP-DOV, Correlation: 0.9685419984833226
Pair: AXP-DHI, Correlation: 0.9573338792123925
Pair: AXP-DUK, Correlation: 0.9310441397652715
Pair: AXP-ETN, Correlation: 0.9562527466224718
Pair: AXP-ELV, Correlation: 0.9308184461350844
Pair: AXP-EMR, Correlation: 0.9698729292528875
Pair: AXP-ETR, Correlation: 0.9291561872718487
Pair: AXP-EFX, Correlation: 0.9236873482082008
Pair: AXP-ERIE, Correlation: 0.9311511810462825
Pair: AXP-EG, Correlation: 0.9183173574717951
Pair: AXP-EXPD, Correlation: 0.9218280760870277
Pair: AXP-EXR, Correlation: 0.9100481097710786
Pair: AXP-FDS, Correlation: 0.9197181454538486
Pair: AXP-FICO, Correlation: 0.9186578011179573
Pair: AXP-FAST, Correlation: 0.959603803537891
Pair: AXP-FITB, Correlation: 0.9313481742372326
Pair: AXP-FI, Correlation: 0.9268366092171202
Pair: AXP-FTNT, Correlation: 0.9320358757064771
Pair: AXP-GRMN, Correlation: 0.950991649192808
Pair: AXP-IT, Correlation: 0.9668162526668451
Pair: AXP-GEV, Correlation: 0.944009316468269
Pair: AXP-GD, Correlation: 0.9131857344975225
Pair: AXP-GDDY, Correlation: 0.9087993849553935
Pair: AXP-GS, Correlation: 0.962406630337641
Pair: AXP-HIG, Correlation: 0.9646034405845817
Pair: AXP-HCA, Correlation: 0.9727932567228682
Pair: AXP-HLT, Correlation: 0.9825216933525752
Pair: AXP-HD, Correlation: 0.938467705776118
Pair: AXP-HON, Correlation: 0.902108293757168
Pair: AXP-HWM, Correlation: 0.9067891229532856
Pair: AXP-HPQ, Correlation: 0.9021313308438348
Pair: AXP-HUBB, Correlation: 0.9500136747584915
Pair: AXP-ITW, Correlation: 0.9287410026188464
Pair: AXP-IR, Correlation: 0.9526923365113995
Pair: AXP-ICE, Correlation: 0.9483822503539294
Pair: AXP-INTU, Correlation: 0.9519708308055215
Pair: AXP-ISRG, Correlation: 0.9568522183150414
Pair: AXP-IRM, Correlation: 0.9363317560367111
Pair: AXP-JBHT, Correlation: 0.9082926595918012
Pair: AXP-JBL, Correlation: 0.9032140244814745
Pair: AXP-J, Correlation: 0.9467143353883827
Pair: AXP-JCI, Correlation: 0.9381932868049359
Pair: AXP-JPM, Correlation: 0.9695074817003811
Pair: AXP-KKR, Correlation: 0.9673118528055892
Pair: AXP-KLAC, Correlation: 0.949094708456925
Pair: AXP-LH, Correlation: 0.9065769092906171
Pair: AXP-LRCX, Correlation: 0.9386889651573588
Pair: AXP-LDOS, Correlation: 0.9345809571461571
Pair: AXP-LEN, Correlation: 0.9552849375953772
Pair: AXP-LII, Correlation: 0.9443031782365715
Pair: AXP-LLY, Correlation: 0.9062801343545509
Pair: AXP-LIN, Correlation: 0.9641055227166424
Pair: AXP-LYV, Correlation: 0.9337321183325706
Pair: AXP-LMT, Correlation: 0.9081847427075831
Pair: AXP-L, Correlation: 0.9415257512801144
Pair: AXP-LOW, Correlation: 0.9479793077071179
Pair: AXP-MAR, Correlation: 0.9542173646092316
Pair: AXP-MMC, Correlation: 0.9615878961878384
Pair: AXP-MLM, Correlation: 0.9600055877777408
Pair: AXP-MAS, Correlation: 0.9284602542204957
Pair: AXP-MA, Correlation: 0.9407230617242657
Pair: AXP-MCD, Correlation: 0.9259240343797098
Pair: AXP-MRK, Correlation: 0.9270722249155063
Pair: AXP-MET, Correlation: 0.9578728991037798
Pair: AXP-MTD, Correlation: 0.9030948501251617
Pair: AXP-MCHP, Correlation: 0.9229590741952141
Pair: AXP-MU, Correlation: 0.9403412437659148
Pair: AXP-MSFT, Correlation: 0.9544947159966858
Pair: AXP-MOH, Correlation: 0.9194474154803499
Pair: AXP-MDLZ, Correlation: 0.9146014963708075
Pair: AXP-MPWR, Correlation: 0.9556237317472442
Pair: AXP-MCO, Correlation: 0.9539676464778235
Pair: AXP-MS, Correlation: 0.954220038243067
Pair: AXP-MSI, Correlation: 0.9746143363731135
Pair: AXP-MSCI, Correlation: 0.9115399689095396
Pair: AXP-NDAQ, Correlation: 0.9377795719784864
Pair: AXP-NTAP, Correlation: 0.9310162984918592
Pair: AXP-NDSN, Correlation: 0.9255733439084644
Pair: AXP-NSC, Correlation: 0.9063609638822248
Pair: AXP-NRG, Correlation: 0.9168840339189386
Pair: AXP-NUE, Correlation: 0.9018312712078688
Pair: AXP-NVR, Correlation: 0.9641270937515507
Pair: AXP-NXPI, Correlation: 0.9363253341524103
Pair: AXP-ORLY, Correlation: 0.9500132570145989
Pair: AXP-ODFL, Correlation: 0.938070277582513
Pair: AXP-OKE, Correlation: 0.9477739613568824
Pair: AXP-ORCL, Correlation: 0.9608394822507221
Pair: AXP-OTIS, Correlation: 0.9145873194715766
Pair: AXP-PCAR, Correlation: 0.9410258115824046
Pair: AXP-PKG, Correlation: 0.9604491147117239
Pair: AXP-PANW, Correlation: 0.9456916248328523
Pair: AXP-PH, Correlation: 0.9675061025535387
Pair: AXP-PAYX, Correlation: 0.9489703872914215
Pair: AXP-PNR, Correlation: 0.9409527178620518
Pair: AXP-PEP, Correlation: 0.9143278212257699
Pair: AXP-PNC, Correlation: 0.9037155587701298
Pair: AXP-PFG, Correlation: 0.9206035475102827
Pair: AXP-PG, Correlation: 0.9414988500986026
Pair: AXP-PGR, Correlation: 0.9615543162423194
Pair: AXP-PLD, Correlation: 0.9058934223792057
Pair: AXP-PRU, Correlation: 0.9169540192981585
Pair: AXP-PEG, Correlation: 0.9500995927057095
Pair: AXP-PTC, Correlation: 0.950250396888425
Pair: AXP-PSA, Correlation: 0.9143947493027071
Pair: AXP-PHM, Correlation: 0.9420987867738135
Pair: AXP-PWR, Correlation: 0.925511822502899
Pair: AXP-QCOM, Correlation: 0.9275329930794718
Pair: AXP-DGX, Correlation: 0.9028165565051627
Pair: AXP-RJF, Correlation: 0.9637326830146344
Pair: AXP-RTX, Correlation: 0.9440565469023564
Pair: AXP-RF, Correlation: 0.9229437176155828
Pair: AXP-RSG, Correlation: 0.967637204137394
Pair: AXP-ROL, Correlation: 0.9269139138638409
Pair: AXP-ROP, Correlation: 0.9311464480378777
Pair: AXP-ROST, Correlation: 0.9016113864398495
Pair: AXP-SPGI, Correlation: 0.9350868890566103
Pair: AXP-CRM, Correlation: 0.9005013523283898
Pair: AXP-STX, Correlation: 0.9552625575751904
Pair: AXP-SRE, Correlation: 0.9077801901959409
Pair: AXP-NOW, Correlation: 0.9407955917355375
Pair: AXP-SHW, Correlation: 0.9493616277927267
Pair: AXP-SNA, Correlation: 0.9309937963062462
Pair: AXP-SO, Correlation: 0.9507969067101761
Pair: AXP-STLD, Correlation: 0.9216029637260169
Pair: AXP-STE, Correlation: 0.9200048122016377
Pair: AXP-SYK, Correlation: 0.9547466470736652
Pair: AXP-SNPS, Correlation: 0.9386364587247473
Pair: AXP-TMUS, Correlation: 0.94598322486133
Pair: AXP-TEL, Correlation: 0.9390692921575015
Pair: AXP-TDY, Correlation: 0.9016796873627574
Pair: AXP-TXN, Correlation: 0.9324157504366772
Pair: AXP-TPL, Correlation: 0.929065125454264
Pair: AXP-TXT, Correlation: 0.911401542588138
Pair: AXP-TMO, Correlation: 0.915904593711338
Pair: AXP-TJX, Correlation: 0.9611712982279462
Pair: AXP-TSCO, Correlation: 0.9588382000403063
Pair: AXP-TT, Correlation: 0.9695997304176944
Pair: AXP-TDG, Correlation: 0.9666860017622253
Pair: AXP-TRV, Correlation: 0.957221814238925
Pair: AXP-TYL, Correlation: 0.9180028021748864
Pair: AXP-UNP, Correlation: 0.9352255948659359
Pair: AXP-URI, Correlation: 0.9642196473129641
Pair: AXP-UNH, Correlation: 0.9332662151018206
Pair: AXP-VLO, Correlation: 0.9034226977109234
Pair: AXP-VLTO, Correlation: 0.9277574343463434
Pair: AXP-VRSK, Correlation: 0.940335838843919
Pair: AXP-VRTX, Correlation: 0.9267666350308835
Pair: AXP-V, Correlation: 0.930727624411634
Pair: AXP-VMC, Correlation: 0.939923925002451
Pair: AXP-WRB, Correlation: 0.9610755771820557
Pair: AXP-GWW, Correlation: 0.9473410426676444
Pair: AXP-WMT, Correlation: 0.9643407257063814
Pair: AXP-WM, Correlation: 0.9623732675000886
Pair: AXP-WAT, Correlation: 0.9093496803569996
Pair: AXP-WELL, Correlation: 0.9464769471469416
Pair: AXP-WTW, Correlation: 0.9469567153165311
Pair: AXP-XYL, Correlation: 0.9218916128273804
Pair: AXP-YUM, Correlation: 0.9323019166633363
Pair: AIG-OMC, Correlation: 0.9168923084466217
Pair: AIG-OTIS, Correlation: 0.9172729899522367
Pair: AIG-PRU, Correlation: 0.9144269833152984
Pair: AIG-WAB, Correlation: 0.9142497476777206
Pair: AIG-WFC, Correlation: 0.9145198766588912
Pair: AMT-AWK, Correlation: 0.9817092109808696
Pair: AMT-ANSS, Correlation: 0.9500153356773584
Pair: AMT-AON, Correlation: 0.9076381126152213
Pair: AMT-AIZ, Correlation: 0.917922346178415
Pair: AMT-ATO, Correlation: 0.9166447831167727
Pair: AMT-ADSK, Correlation: 0.9526925017262966
Pair: AMT-ADP, Correlation: 0.9027328929517012
Pair: AMT-AVY, Correlation: 0.9159272965777466
Pair: AMT-BALL, Correlation: 0.9548341888395924
Pair: AMT-BAC, Correlation: 0.9030239245061519
Pair: AMT-BDX, Correlation: 0.9282342565117807
Pair: AMT-BBY, Correlation: 0.9355410473456598
Pair: AMT-TECH, Correlation: 0.9323219911139629
Pair: AMT-BLK, Correlation: 0.9087367784287504
Pair: AMT-BR, Correlation: 0.9172257443017838
Pair: AMT-CPT, Correlation: 0.9380997473970795
Pair: AMT-CE, Correlation: 0.9097817266530723
Pair: AMT-CNC, Correlation: 0.9271193580197712
Pair: AMT-CRL, Correlation: 0.9152331276671546
Pair: AMT-CHTR, Correlation: 0.9191454616188779
Pair: AMT-CHD, Correlation: 0.9413497626564595
Pair: AMT-CINF, Correlation: 0.9185487270642988
Pair: AMT-CSCO, Correlation: 0.9313846315215845
Pair: AMT-CLX, Correlation: 0.928560249090101
Pair: AMT-CME, Correlation: 0.9427587252089187
Pair: AMT-CMS, Correlation: 0.9645118973964607
Pair: AMT-KO, Correlation: 0.903737982906221
Pair: AMT-CMCSA, Correlation: 0.9207360698336025
Pair: AMT-COO, Correlation: 0.956976283671042
Pair: AMT-CSGP, Correlation: 0.9510352966609767
Pair: AMT-CCI, Correlation: 0.977447470115356
Pair: AMT-CSX, Correlation: 0.9388251669123482
Pair: AMT-DHR, Correlation: 0.9376006941604113
Pair: AMT-DLR, Correlation: 0.9410512124738761
Pair: AMT-DG, Correlation: 0.9262556929803517
Pair: AMT-DPZ, Correlation: 0.9555676403969116
Pair: AMT-DOV, Correlation: 0.9046182507594184
Pair: AMT-DTE, Correlation: 0.9476833067380878
Pair: AMT-DUK, Correlation: 0.9324735170896239
Pair: AMT-EBAY, Correlation: 0.9281988453417913
Pair: AMT-ECL, Correlation: 0.9342209887395481
Pair: AMT-EW, Correlation: 0.9655931686709545
Pair: AMT-ETR, Correlation: 0.9337300277519914
Pair: AMT-EFX, Correlation: 0.9076481253267706
Pair: AMT-EQIX, Correlation: 0.9511685946244
Pair: AMT-ESS, Correlation: 0.911177848071404
Pair: AMT-EL, Correlation: 0.9031745202316676
Pair: AMT-EVRG, Correlation: 0.9408178381675645
Pair: AMT-ES, Correlation: 0.9728397951480335
Pair: AMT-EXR, Correlation: 0.9257103708104886
Pair: AMT-FDS, Correlation: 0.917457317822141
Pair: AMT-FI, Correlation: 0.9066732534464579
Pair: AMT-GEN, Correlation: 0.9086811576407429
Pair: AMT-GPN, Correlation: 0.9086675491330982
Pair: AMT-HOLX, Correlation: 0.9197891170334903
Pair: AMT-HD, Correlation: 0.9335549326191367
Pair: AMT-HON, Correlation: 0.9465015627030291
Pair: AMT-HRL, Correlation: 0.9024609960675473
Pair: AMT-HUM, Correlation: 0.9215597843366419
Pair: AMT-IEX, Correlation: 0.9464987583861122
Pair: AMT-IDXX, Correlation: 0.9259633363863105
Pair: AMT-ITW, Correlation: 0.9151842023228053
Pair: AMT-PODD, Correlation: 0.9305068458171865
Pair: AMT-ICE, Correlation: 0.9297706985805593
Pair: AMT-IQV, Correlation: 0.9258098065777653
Pair: AMT-JKHY, Correlation: 0.9624881956495831
Pair: AMT-JNJ, Correlation: 0.9434876138333637
Pair: AMT-KDP, Correlation: 0.9608217274585079
Pair: AMT-KMB, Correlation: 0.9102334699500466
Pair: AMT-LHX, Correlation: 0.9636388011574623
Pair: AMT-LH, Correlation: 0.9217470925177322
Pair: AMT-LDOS, Correlation: 0.9024169979036868
Pair: AMT-LYV, Correlation: 0.9203219331819747
Pair: AMT-LMT, Correlation: 0.9063832934069612
Pair: AMT-MKTX, Correlation: 0.9155968720071601
Pair: AMT-MAS, Correlation: 0.9078900670504209
Pair: AMT-MA, Correlation: 0.9304789111085982
Pair: AMT-MKC, Correlation: 0.9698221818277716
Pair: AMT-MCD, Correlation: 0.9150444715613673
Pair: AMT-MDT, Correlation: 0.9228173616235689
Pair: AMT-MTD, Correlation: 0.9328180128017005
Pair: AMT-MAA, Correlation: 0.9392156810468408
Pair: AMT-MDLZ, Correlation: 0.9046227396831835
Pair: AMT-MCO, Correlation: 0.9262988219230037
Pair: AMT-MSCI, Correlation: 0.9117097816863445
Pair: AMT-NDAQ, Correlation: 0.9242981565053515
Pair: AMT-NEE, Correlation: 0.9671915536889469
Pair: AMT-NKE, Correlation: 0.9413576142106022
Pair: AMT-NDSN, Correlation: 0.9291790127481364
Pair: AMT-NSC, Correlation: 0.9553180365637669
Pair: AMT-NOC, Correlation: 0.9007715578474421
Pair: AMT-PAYX, Correlation: 0.9074359996631428
Pair: AMT-PAYC, Correlation: 0.9110514418089943
Pair: AMT-PEP, Correlation: 0.9129987540303574
Pair: AMT-PNC, Correlation: 0.9081837570327495
Pair: AMT-POOL, Correlation: 0.936119666656342
Pair: AMT-PG, Correlation: 0.9166596422110431
Pair: AMT-PLD, Correlation: 0.9404397538015432
Pair: AMT-PEG, Correlation: 0.9089179711954982
Pair: AMT-DGX, Correlation: 0.9262290529506052
Pair: AMT-O, Correlation: 0.938362707219643
Pair: AMT-RMD, Correlation: 0.955096114028795
Pair: AMT-RVTY, Correlation: 0.9495217503497402
Pair: AMT-ROK, Correlation: 0.9122782679692286
Pair: AMT-ROL, Correlation: 0.9098570485659736
Pair: AMT-ROP, Correlation: 0.9402390566464341
Pair: AMT-ROST, Correlation: 0.905187147901452
Pair: AMT-SPGI, Correlation: 0.9446688028486272
Pair: AMT-CRM, Correlation: 0.9237186838364707
Pair: AMT-SBAC, Correlation: 0.9847411855296769
Pair: AMT-SRE, Correlation: 0.9082704544030974
Pair: AMT-SHW, Correlation: 0.9263510333486987
Pair: AMT-SBUX, Correlation: 0.9385580631974464
Pair: AMT-STE, Correlation: 0.9459603456750513
Pair: AMT-SYY, Correlation: 0.9315628433076832
Pair: AMT-TROW, Correlation: 0.9254884893150259
Pair: AMT-TTWO, Correlation: 0.936672336627678
Pair: AMT-TEL, Correlation: 0.9074435355895148
Pair: AMT-TDY, Correlation: 0.9608864411797164
Pair: AMT-TFX, Correlation: 0.912224309588174
Pair: AMT-TER, Correlation: 0.9067022115584592
Pair: AMT-TXN, Correlation: 0.9380867245118015
Pair: AMT-TMO, Correlation: 0.9338886184086294
Pair: AMT-TYL, Correlation: 0.9370227336746799
Pair: AMT-UDR, Correlation: 0.9350812451128306
Pair: AMT-UNP, Correlation: 0.9411941514415333
Pair: AMT-VRSN, Correlation: 0.9671375622217082
Pair: AMT-VRSK, Correlation: 0.9126264948487934
Pair: AMT-V, Correlation: 0.9397917890027219
Pair: AMT-WAT, Correlation: 0.9327923965843927
Pair: AMT-WEC, Correlation: 0.9749593652851914
Pair: AMT-WTW, Correlation: 0.927092719028893
Pair: AMT-XEL, Correlation: 0.9764389560258546
Pair: AMT-YUM, Correlation: 0.9231100937479472
Pair: AMT-ZBRA, Correlation: 0.9189154730107527
Pair: AMT-ZTS, Correlation: 0.9452595589868251
Pair: AWK-AME, Correlation: 0.9176609226553082
Pair: AWK-AMGN, Correlation: 0.9159375534225829
Pair: AWK-ADI, Correlation: 0.923875617739095
Pair: AWK-ANSS, Correlation: 0.9641621398534129
Pair: AWK-AON, Correlation: 0.9429060018948541
Pair: AWK-AIZ, Correlation: 0.9348067720738806
Pair: AWK-ATO, Correlation: 0.9329556681853951
Pair: AWK-ADSK, Correlation: 0.9589799822408386
Pair: AWK-ADP, Correlation: 0.9328373361472784
Pair: AWK-AVB, Correlation: 0.9040461801026034
Pair: AWK-AVY, Correlation: 0.9468285964722617
Pair: AWK-BALL, Correlation: 0.9457114994851442
Pair: AWK-BAC, Correlation: 0.9143087563834446
Pair: AWK-BDX, Correlation: 0.938997035181487
Pair: AWK-BBY, Correlation: 0.9440492750886607
Pair: AWK-TECH, Correlation: 0.951158068037164
Pair: AWK-BLK, Correlation: 0.9384046257823511
Pair: AWK-BR, Correlation: 0.9380391864993812
Pair: AWK-CHRW, Correlation: 0.9127073800184424
Pair: AWK-CPT, Correlation: 0.9520077683839607
Pair: AWK-CBRE, Correlation: 0.9076967380757388
Pair: AWK-CDW, Correlation: 0.904319276116528
Pair: AWK-CE, Correlation: 0.9276723023362857
Pair: AWK-CNC, Correlation: 0.9347334035533703
Pair: AWK-CRL, Correlation: 0.9326689197093144
Pair: AWK-SCHW, Correlation: 0.9057846847077002
Pair: AWK-CHTR, Correlation: 0.9107835179248097
Pair: AWK-CHD, Correlation: 0.9616392721790518
Pair: AWK-CINF, Correlation: 0.9401366446953751
Pair: AWK-CSCO, Correlation: 0.9441011285458204
Pair: AWK-CLX, Correlation: 0.928924901392853
Pair: AWK-CME, Correlation: 0.949438906108176
Pair: AWK-CMS, Correlation: 0.9727975764767067
Pair: AWK-KO, Correlation: 0.9327478874224604
Pair: AWK-CMCSA, Correlation: 0.9318767649182143
Pair: AWK-ED, Correlation: 0.9066957686705746
Pair: AWK-STZ, Correlation: 0.9097366352936985
Pair: AWK-COO, Correlation: 0.9685729241600265
Pair: AWK-GLW, Correlation: 0.9166636156185981
Pair: AWK-CSGP, Correlation: 0.9663320877439207
Pair: AWK-CCI, Correlation: 0.9614851722853585
Pair: AWK-CSX, Correlation: 0.957859277845979
Pair: AWK-DHR, Correlation: 0.9638320476815383
Pair: AWK-DRI, Correlation: 0.9183537352517211
Pair: AWK-DXCM, Correlation: 0.9227160877336116
Pair: AWK-DLR, Correlation: 0.9410433226051724
Pair: AWK-DG, Correlation: 0.9350822782504639
Pair: AWK-DPZ, Correlation: 0.9645217144798196
Pair: AWK-DOV, Correlation: 0.9315802015031633
Pair: AWK-DTE, Correlation: 0.9642970732341112
Pair: AWK-DUK, Correlation: 0.952044778576005
Pair: AWK-EBAY, Correlation: 0.9396905466124222
Pair: AWK-ECL, Correlation: 0.9293584201601772
Pair: AWK-EW, Correlation: 0.9730966894897218
Pair: AWK-EA, Correlation: 0.9164540715983489
Pair: AWK-ELV, Correlation: 0.924815047594211
Pair: AWK-ETR, Correlation: 0.9430511169008694
Pair: AWK-EPAM, Correlation: 0.9020078451157763
Pair: AWK-EFX, Correlation: 0.9370705505030653
Pair: AWK-EQIX, Correlation: 0.9698871436402019
Pair: AWK-ESS, Correlation: 0.9052378153511962
Pair: AWK-EL, Correlation: 0.906864390266304
Pair: AWK-EVRG, Correlation: 0.952564967076204
Pair: AWK-ES, Correlation: 0.9702663477248881
Pair: AWK-EXPD, Correlation: 0.9322470473559243
Pair: AWK-EXR, Correlation: 0.9520107047735611
Pair: AWK-FDS, Correlation: 0.9469446626652913
Pair: AWK-FI, Correlation: 0.9185905877197255
Pair: AWK-GRMN, Correlation: 0.90043454651593
Pair: AWK-GEN, Correlation: 0.9241155801565721
Pair: AWK-GL, Correlation: 0.9143613110696259
Pair: AWK-HSY, Correlation: 0.9183118000525502
Pair: AWK-HOLX, Correlation: 0.9627053869061379
Pair: AWK-HD, Correlation: 0.9590182972790295
Pair: AWK-HON, Correlation: 0.9724133392363278
Pair: AWK-HRL, Correlation: 0.9096136541696732
Pair: AWK-HUM, Correlation: 0.9514880947060476
Pair: AWK-IEX, Correlation: 0.9714185311976006
Pair: AWK-IDXX, Correlation: 0.9551973652815416
Pair: AWK-ITW, Correlation: 0.9502405555423741
Pair: AWK-PODD, Correlation: 0.9544230190283512
Pair: AWK-ICE, Correlation: 0.9489076048750057
Pair: AWK-INTU, Correlation: 0.9126336888405143
Pair: AWK-IQV, Correlation: 0.9571932249242139
Pair: AWK-JBHT, Correlation: 0.9308464398832283
Pair: AWK-JKHY, Correlation: 0.9646035175562914
Pair: AWK-J, Correlation: 0.9116507147047685
Pair: AWK-JNJ, Correlation: 0.9675780158422945
Pair: AWK-KDP, Correlation: 0.9764730793822616
Pair: AWK-KEYS, Correlation: 0.94944356355413
Pair: AWK-KMB, Correlation: 0.9272860052016494
Pair: AWK-LHX, Correlation: 0.9647733883839515
Pair: AWK-LH, Correlation: 0.9535324690162731
Pair: AWK-LDOS, Correlation: 0.9091132197953743
Pair: AWK-LYV, Correlation: 0.9375658418127498
Pair: AWK-LMT, Correlation: 0.9294177723587282
Pair: AWK-LOW, Correlation: 0.9332707317807655
Pair: AWK-LULU, Correlation: 0.9214976255176692
Pair: AWK-MKTX, Correlation: 0.9036178707802667
Pair: AWK-MMC, Correlation: 0.9058888499141338
Pair: AWK-MAS, Correlation: 0.9303533617885981
Pair: AWK-MA, Correlation: 0.946763441755037
Pair: AWK-MKC, Correlation: 0.975162016430412
Pair: AWK-MCD, Correlation: 0.9460255966694443
Pair: AWK-MDT, Correlation: 0.9208904874987445
Pair: AWK-MTD, Correlation: 0.9684911935284026
Pair: AWK-MCHP, Correlation: 0.9334171980721243
Pair: AWK-MAA, Correlation: 0.964591831177062
Pair: AWK-MOH, Correlation: 0.9075628965960286
Pair: AWK-MDLZ, Correlation: 0.9403884658128383
Pair: AWK-MNST, Correlation: 0.9398547478316258
Pair: AWK-MCO, Correlation: 0.9430733496952008
Pair: AWK-MSCI, Correlation: 0.9413549605501943
Pair: AWK-NDAQ, Correlation: 0.9534583992365748
Pair: AWK-NEE, Correlation: 0.987344388554001
Pair: AWK-NKE, Correlation: 0.9613584974226334
Pair: AWK-NI, Correlation: 0.9043647263836679
Pair: AWK-NDSN, Correlation: 0.9569089410301779
Pair: AWK-NSC, Correlation: 0.9695425940651914
Pair: AWK-NOC, Correlation: 0.9274531670435975
Pair: AWK-PAYX, Correlation: 0.9405672329599433
Pair: AWK-PAYC, Correlation: 0.9289229190332247
Pair: AWK-PEP, Correlation: 0.9505952807914382
Pair: AWK-PFE, Correlation: 0.9053842966392907
Pair: AWK-PNC, Correlation: 0.9226525174942825
Pair: AWK-POOL, Correlation: 0.9618032107269102
Pair: AWK-PPG, Correlation: 0.903580619787046
Pair: AWK-PG, Correlation: 0.9449251827300326
Pair: AWK-PLD, Correlation: 0.9640353979832162
Pair: AWK-PEG, Correlation: 0.9291848991201681
Pair: AWK-PSA, Correlation: 0.9189351852422315
Pair: AWK-DGX, Correlation: 0.9594496035441001
Pair: AWK-O, Correlation: 0.9494210390855253
Pair: AWK-RMD, Correlation: 0.9723712175716631
Pair: AWK-RVTY, Correlation: 0.9686374914385235
Pair: AWK-ROK, Correlation: 0.9519212498520582
Pair: AWK-ROL, Correlation: 0.9388086249502972
Pair: AWK-ROP, Correlation: 0.9571206948013582
Pair: AWK-ROST, Correlation: 0.9212952273737728
Pair: AWK-SPGI, Correlation: 0.9607678317111135
Pair: AWK-CRM, Correlation: 0.9339539847389131
Pair: AWK-SBAC, Correlation: 0.9707277883163709
Pair: AWK-SRE, Correlation: 0.9274468015056596
Pair: AWK-SHW, Correlation: 0.9470193552930464
Pair: AWK-SO, Correlation: 0.9125570761839169
Pair: AWK-SBUX, Correlation: 0.9673059548486221
Pair: AWK-STE, Correlation: 0.9676340640517339
Pair: AWK-SYK, Correlation: 0.926684782129426
Pair: AWK-SYY, Correlation: 0.9513927210595177
Pair: AWK-TMUS, Correlation: 0.9210489591397002
Pair: AWK-TROW, Correlation: 0.9292602094614794
Pair: AWK-TTWO, Correlation: 0.9418844523687184
Pair: AWK-TGT, Correlation: 0.9171387729601036
Pair: AWK-TEL, Correlation: 0.9426201435743559
Pair: AWK-TDY, Correlation: 0.9746160961792297
Pair: AWK-TER, Correlation: 0.9359003265364414
Pair: AWK-TXN, Correlation: 0.9666967995700643
Pair: AWK-TMO, Correlation: 0.9645731947025238
Pair: AWK-TYL, Correlation: 0.956078089548424
Pair: AWK-UDR, Correlation: 0.9423714129323403
Pair: AWK-UNP, Correlation: 0.9579888891922897
Pair: AWK-UPS, Correlation: 0.9402214656812418
Pair: AWK-UNH, Correlation: 0.9313646529666251
Pair: AWK-VRSN, Correlation: 0.9679375480672806
Pair: AWK-VRSK, Correlation: 0.9373002418189715
Pair: AWK-V, Correlation: 0.955462107968492
Pair: AWK-WM, Correlation: 0.9176432581063507
Pair: AWK-WAT, Correlation: 0.9545514933827246
Pair: AWK-WEC, Correlation: 0.9828072710102291
Pair: AWK-WST, Correlation: 0.935600687037936
Pair: AWK-WTW, Correlation: 0.945209850777636
Pair: AWK-XEL, Correlation: 0.9854740498318472
Pair: AWK-XYL, Correlation: 0.9280521340870509
Pair: AWK-YUM, Correlation: 0.9506423767100435
Pair: AWK-ZBRA, Correlation: 0.9268169466836638
Pair: AWK-ZTS, Correlation: 0.9711983673171246
Pair: AMP-AME, Correlation: 0.9678933929448859
Pair: AMP-AMGN, Correlation: 0.9172522438933994
Pair: AMP-APH, Correlation: 0.9823761086084958
Pair: AMP-ADI, Correlation: 0.9640692494976164
Pair: AMP-AON, Correlation: 0.9459226833848037
Pair: AMP-APO, Correlation: 0.9787172053107647
Pair: AMP-AAPL, Correlation: 0.9620656863941048
Pair: AMP-AMAT, Correlation: 0.9670050640818966
Pair: AMP-ACGL, Correlation: 0.9579291217315647
Pair: AMP-ANET, Correlation: 0.9461693237690147
Pair: AMP-AJG, Correlation: 0.9823725508643524
Pair: AMP-AIZ, Correlation: 0.9193992233842355
Pair: AMP-ADP, Correlation: 0.9517677320421618
Pair: AMP-AZO, Correlation: 0.9725279851909266
Pair: AMP-AVY, Correlation: 0.9354310687362191
Pair: AMP-AXON, Correlation: 0.9580197255836274
Pair: AMP-BLK, Correlation: 0.9384128880485595
Pair: AMP-BX, Correlation: 0.9705651386846513
Pair: AMP-BKNG, Correlation: 0.9326202925874995
Pair: AMP-BSX, Correlation: 0.9287534355106707
Pair: AMP-AVGO, Correlation: 0.9511348632495543
Pair: AMP-BR, Correlation: 0.929841881509792
Pair: AMP-BRO, Correlation: 0.9753555940751921
Pair: AMP-BLDR, Correlation: 0.9443741507468785
Pair: AMP-CDNS, Correlation: 0.9695798281391108
Pair: AMP-CARR, Correlation: 0.9235021041571239
Pair: AMP-CAT, Correlation: 0.9759380146508134
Pair: AMP-CBOE, Correlation: 0.9281471931116397
Pair: AMP-CBRE, Correlation: 0.9492188581807144
Pair: AMP-CDW, Correlation: 0.9261204445317737
Pair: AMP-COR, Correlation: 0.9690952867540109
Pair: AMP-CVX, Correlation: 0.9008311155010182
Pair: AMP-CMG, Correlation: 0.9583258580730134
Pair: AMP-CB, Correlation: 0.9697476769624858
Pair: AMP-CI, Correlation: 0.9334489475372052
Pair: AMP-CINF, Correlation: 0.9024651687404562
Pair: AMP-CTAS, Correlation: 0.9783465017515143
Pair: AMP-KO, Correlation: 0.932776199455273
Pair: AMP-CEG, Correlation: 0.9346705816714463
Pair: AMP-CPRT, Correlation: 0.9610490794677241
Pair: AMP-COST, Correlation: 0.9787000329298019
Pair: AMP-CSX, Correlation: 0.9004437330365117
Pair: AMP-CMI, Correlation: 0.9615770884148261
Pair: AMP-DHR, Correlation: 0.9104613343362054
Pair: AMP-DRI, Correlation: 0.9274312677141553
Pair: AMP-DECK, Correlation: 0.9430061443187208
Pair: AMP-DE, Correlation: 0.9429247492116198
Pair: AMP-DELL, Correlation: 0.90843918592086
Pair: AMP-DFS, Correlation: 0.9440111316560243
Pair: AMP-DOV, Correlation: 0.9548976307980471
Pair: AMP-DHI, Correlation: 0.9728664887525151
Pair: AMP-DUK, Correlation: 0.9099197736990722
Pair: AMP-ETN, Correlation: 0.9755580409993104
Pair: AMP-ELV, Correlation: 0.9352574326283556
Pair: AMP-EMR, Correlation: 0.9663015352978039
Pair: AMP-ETR, Correlation: 0.9079104111472115
Pair: AMP-EFX, Correlation: 0.9194747465574994
Pair: AMP-ERIE, Correlation: 0.9315219499571906
Pair: AMP-EG, Correlation: 0.9365784074819876
Pair: AMP-EXPD, Correlation: 0.9282739745913341
Pair: AMP-FDS, Correlation: 0.9314479470259168
Pair: AMP-FICO, Correlation: 0.9302320927821303
Pair: AMP-FAST, Correlation: 0.9642053107285332
Pair: AMP-FITB, Correlation: 0.9024417976588045
Pair: AMP-FI, Correlation: 0.9049678418866492
Pair: AMP-FTNT, Correlation: 0.9489131067208514
Pair: AMP-GRMN, Correlation: 0.9225501805895541
Pair: AMP-IT, Correlation: 0.9877226461335001
Pair: AMP-GEV, Correlation: 0.9502112620541945
Pair: AMP-GD, Correlation: 0.920422248498564
Pair: AMP-GPC, Correlation: 0.9113871433224524
Pair: AMP-GS, Correlation: 0.973764095756668
Pair: AMP-HIG, Correlation: 0.9677431198259977
Pair: AMP-HCA, Correlation: 0.9761850149398281
Pair: AMP-HLT, Correlation: 0.9774823870645971
Pair: AMP-HD, Correlation: 0.9356728958779007
Pair: AMP-HWM, Correlation: 0.9059354491754258
Pair: AMP-HPQ, Correlation: 0.9067850617733076
Pair: AMP-HUBB, Correlation: 0.9772223162818254
Pair: AMP-ITW, Correlation: 0.9368897593395423
Pair: AMP-IR, Correlation: 0.9748865379854326
Pair: AMP-ICE, Correlation: 0.9290466831703242
Pair: AMP-IPG, Correlation: 0.9100156043605141
Pair: AMP-INTU, Correlation: 0.9501533902610835
Pair: AMP-ISRG, Correlation: 0.9429175450077031
Pair: AMP-IRM, Correlation: 0.9521121729633779
Pair: AMP-JBHT, Correlation: 0.9213728658751714
Pair: AMP-JBL, Correlation: 0.9511784564129043
Pair: AMP-J, Correlation: 0.9384891340438277
Pair: AMP-JCI, Correlation: 0.9384354048440176
Pair: AMP-JPM, Correlation: 0.9556455069882365
Pair: AMP-KKR, Correlation: 0.966366343553562
Pair: AMP-KLAC, Correlation: 0.9708348082590993
Pair: AMP-KR, Correlation: 0.9026599466326588
Pair: AMP-LH, Correlation: 0.9046562981054755
Pair: AMP-LRCX, Correlation: 0.9550553902920981
Pair: AMP-LDOS, Correlation: 0.9154132707414904
Pair: AMP-LEN, Correlation: 0.972343079539539
Pair: AMP-LII, Correlation: 0.9324669974444659
Pair: AMP-LLY, Correlation: 0.9362535573631483
Pair: AMP-LIN, Correlation: 0.9789017585973212
Pair: AMP-LYV, Correlation: 0.9061794486510175
Pair: AMP-LMT, Correlation: 0.9035415968071734
Pair: AMP-L, Correlation: 0.9349940696762385
Pair: AMP-LOW, Correlation: 0.9592230893449127
Pair: AMP-MPC, Correlation: 0.930132745515928
Pair: AMP-MAR, Correlation: 0.9525570789931448
Pair: AMP-MMC, Correlation: 0.9752159384391772
Pair: AMP-MLM, Correlation: 0.9738231501026133
Pair: AMP-MAS, Correlation: 0.9235955336826008
Pair: AMP-MA, Correlation: 0.9264745214792925
Pair: AMP-MCD, Correlation: 0.9281241069357237
Pair: AMP-MCK, Correlation: 0.9350189866851648
Pair: AMP-MRK, Correlation: 0.9373981553091068
Pair: AMP-MET, Correlation: 0.9701515074318267
Pair: AMP-MTD, Correlation: 0.90167765614833
Pair: AMP-MCHP, Correlation: 0.9340686695049115
Pair: AMP-MU, Correlation: 0.9189613471235233
Pair: AMP-MSFT, Correlation: 0.9629500876257906
Pair: AMP-MOH, Correlation: 0.9362610007754377
Pair: AMP-MDLZ, Correlation: 0.9185954975845527
Pair: AMP-MPWR, Correlation: 0.96715837185745
Pair: AMP-MNST, Correlation: 0.9026018037498419
Pair: AMP-MCO, Correlation: 0.942276418824816
Pair: AMP-MS, Correlation: 0.9682857768833081
Pair: AMP-MSI, Correlation: 0.9784453857547969
Pair: AMP-MSCI, Correlation: 0.9184598282609189
Pair: AMP-NDAQ, Correlation: 0.938631427955399
Pair: AMP-NTAP, Correlation: 0.9104150353035354
Pair: AMP-NDSN, Correlation: 0.9287271200583596
Pair: AMP-NUE, Correlation: 0.9484314930848722
Pair: AMP-NVR, Correlation: 0.965776161544395
Pair: AMP-NXPI, Correlation: 0.9492001256927775
Pair: AMP-ORLY, Correlation: 0.9756087568085483
Pair: AMP-ODFL, Correlation: 0.9670814214893864
Pair: AMP-ON, Correlation: 0.9333866545190559
Pair: AMP-OKE, Correlation: 0.9245024627013646
Pair: AMP-ORCL, Correlation: 0.9774000360335187
Pair: AMP-OTIS, Correlation: 0.9344562409040145
Pair: AMP-PCAR, Correlation: 0.9683907697102575
Pair: AMP-PKG, Correlation: 0.955981948117144
Pair: AMP-PANW, Correlation: 0.9717858700382669
Pair: AMP-PH, Correlation: 0.9825072804675127
Pair: AMP-PAYX, Correlation: 0.9500078192120115
Pair: AMP-PNR, Correlation: 0.9321192695682512
Pair: AMP-PEP, Correlation: 0.9244622016913511
Pair: AMP-PM, Correlation: 0.9042781627008102
Pair: AMP-PFG, Correlation: 0.9447152823868636
Pair: AMP-PG, Correlation: 0.9394420798881455
Pair: AMP-PGR, Correlation: 0.969417287466131
Pair: AMP-PRU, Correlation: 0.906519691277149
Pair: AMP-PEG, Correlation: 0.9277543260885931
Pair: AMP-PTC, Correlation: 0.949173070872482
Pair: AMP-PSA, Correlation: 0.9111470169417435
Pair: AMP-PHM, Correlation: 0.9512572011339638
Pair: AMP-PWR, Correlation: 0.9624778992656724
Pair: AMP-QCOM, Correlation: 0.9213358432595993
Pair: AMP-DGX, Correlation: 0.9086738152476106
Pair: AMP-RJF, Correlation: 0.9799166994042269
Pair: AMP-RTX, Correlation: 0.9162071169326439
Pair: AMP-REGN, Correlation: 0.9034199425514959
Pair: AMP-RF, Correlation: 0.9113168404556702
Pair: AMP-RSG, Correlation: 0.9753165946857798
Pair: AMP-ROK, Correlation: 0.9085070997691238
Pair: AMP-ROL, Correlation: 0.9260566969193353
Pair: AMP-ROP, Correlation: 0.9186188690895564
Pair: AMP-SPGI, Correlation: 0.9244659460192037
Pair: AMP-STX, Correlation: 0.9282426263512791
Pair: AMP-NOW, Correlation: 0.9312115098588576
Pair: AMP-SHW, Correlation: 0.9391579279113825
Pair: AMP-SNA, Correlation: 0.9524328652610854
Pair: AMP-SO, Correlation: 0.9490534383540249
Pair: AMP-STLD, Correlation: 0.9666302560544027
Pair: AMP-STE, Correlation: 0.9089715489036918
Pair: AMP-SYK, Correlation: 0.9457594543711911
Pair: AMP-SNPS, Correlation: 0.969493579292304
Pair: AMP-TMUS, Correlation: 0.951795253209742
Pair: AMP-TEL, Correlation: 0.9340946768941254
Pair: AMP-TXN, Correlation: 0.9236303374090715
Pair: AMP-TPL, Correlation: 0.9447284038338862
Pair: AMP-TXT, Correlation: 0.9143607893362613
Pair: AMP-TMO, Correlation: 0.9163737251972887
Pair: AMP-TJX, Correlation: 0.9625102472758476
Pair: AMP-TSCO, Correlation: 0.9760499771253625
Pair: AMP-TT, Correlation: 0.9756143937562874
Pair: AMP-TDG, Correlation: 0.9668292545264187
Pair: AMP-TRV, Correlation: 0.9562716952072448
Pair: AMP-UNP, Correlation: 0.9158803904892117
Pair: AMP-URI, Correlation: 0.9824247666159716
Pair: AMP-UNH, Correlation: 0.9455280661532094
Pair: AMP-VLO, Correlation: 0.9219008967144512
Pair: AMP-VRSK, Correlation: 0.9337601242358715
Pair: AMP-VRTX, Correlation: 0.9381180160209812
Pair: AMP-V, Correlation: 0.9152418635298738
Pair: AMP-VMC, Correlation: 0.9522988641897379
Pair: AMP-WRB, Correlation: 0.9668740836341211
Pair: AMP-GWW, Correlation: 0.9706029904751703
Pair: AMP-WMT, Correlation: 0.9554501637457605
Pair: AMP-WM, Correlation: 0.9617448706121696
Pair: AMP-WELL, Correlation: 0.9163914371289604
Pair: AMP-WTW, Correlation: 0.9345003332702537
Pair: AMP-XYL, Correlation: 0.9084194533378814
Pair: AMP-YUM, Correlation: 0.9191257994973258
Pair: AME-AMGN, Correlation: 0.9532080983925341
Pair: AME-APH, Correlation: 0.9718608899944527
Pair: AME-ADI, Correlation: 0.9880449952228089
Pair: AME-ANSS, Correlation: 0.9379705028884232
Pair: AME-AON, Correlation: 0.9796428663731069
Pair: AME-APO, Correlation: 0.9501063236299286
Pair: AME-AAPL, Correlation: 0.9698247817355606
Pair: AME-AMAT, Correlation: 0.9587118122012384
Pair: AME-ACGL, Correlation: 0.9230842181367385
Pair: AME-AJG, Correlation: 0.9672400069378824
Pair: AME-AIZ, Correlation: 0.952916407152078
Pair: AME-ATO, Correlation: 0.9248168019324248
Pair: AME-ADSK, Correlation: 0.9180794061585864
Pair: AME-ADP, Correlation: 0.9800449655515964
Pair: AME-AZO, Correlation: 0.9581059997098745
Pair: AME-AVY, Correlation: 0.9757531813367837
Pair: AME-AXON, Correlation: 0.9204266541566868
Pair: AME-BAC, Correlation: 0.9130765519733445
Pair: AME-BLK, Correlation: 0.9699577053649773
Pair: AME-BX, Correlation: 0.9549337824589335
Pair: AME-BKNG, Correlation: 0.931321256321416
Pair: AME-BSX, Correlation: 0.9453824657879242
Pair: AME-BR, Correlation: 0.9743253683042654
Pair: AME-BRO, Correlation: 0.970882119982675
Pair: AME-CDNS, Correlation: 0.9621913781410152
Pair: AME-COF, Correlation: 0.9104560525556065
Pair: AME-CARR, Correlation: 0.9174028936312753
Pair: AME-CAT, Correlation: 0.9554338345425857
Pair: AME-CBOE, Correlation: 0.9390055822612077
Pair: AME-CBRE, Correlation: 0.9612042801850944
Pair: AME-CDW, Correlation: 0.9825199261054788
Pair: AME-CE, Correlation: 0.917680249041961
Pair: AME-COR, Correlation: 0.9376797497169715
Pair: AME-SCHW, Correlation: 0.9173039973831892
Pair: AME-CMG, Correlation: 0.9417137932251909
Pair: AME-CB, Correlation: 0.9614221437609692
Pair: AME-CHD, Correlation: 0.9613757833090224
Pair: AME-CI, Correlation: 0.9490597280122
Pair: AME-CINF, Correlation: 0.9434728672895415
Pair: AME-CTAS, Correlation: 0.9657949940551406
Pair: AME-CSCO, Correlation: 0.9248312487010097
Pair: AME-CME, Correlation: 0.9365745044246356
Pair: AME-CMS, Correlation: 0.9184421904802109
Pair: AME-KO, Correlation: 0.9661413389504627
Pair: AME-CL, Correlation: 0.915090400884517
Pair: AME-ED, Correlation: 0.9175249243641781
Pair: AME-COO, Correlation: 0.9318175646323225
Pair: AME-CPRT, Correlation: 0.9804234689295613
Pair: AME-GLW, Correlation: 0.9088863434763949
Pair: AME-CSGP, Correlation: 0.9418028656906382
Pair: AME-COST, Correlation: 0.9609100282348042
Pair: AME-CSX, Correlation: 0.96504917572676
Pair: AME-CMI, Correlation: 0.9742483360895768
Pair: AME-DHR, Correlation: 0.9606899336069737
Pair: AME-DRI, Correlation: 0.9690040423447447
Pair: AME-DE, Correlation: 0.9637460849326905
Pair: AME-DXCM, Correlation: 0.916816024195602
Pair: AME-DLR, Correlation: 0.9018088575128116
Pair: AME-DFS, Correlation: 0.9507866260452428
Pair: AME-DPZ, Correlation: 0.9369488900757802
Pair: AME-DOV, Correlation: 0.9845980176453023
Pair: AME-DHI, Correlation: 0.9591842701364239
Pair: AME-DTE, Correlation: 0.9318182770430254
Pair: AME-DUK, Correlation: 0.9501284424868173
Pair: AME-ETN, Correlation: 0.9298726569959878
Pair: AME-ECL, Correlation: 0.9088084109263281
Pair: AME-ELV, Correlation: 0.9677539312747387
Pair: AME-EMR, Correlation: 0.9756427677400386
Pair: AME-ETR, Correlation: 0.9474379001420425
Pair: AME-EFX, Correlation: 0.9514211323596452
Pair: AME-EQIX, Correlation: 0.9566971849832001
Pair: AME-ERIE, Correlation: 0.9245724508266681
Pair: AME-EG, Correlation: 0.9501505530490568
Pair: AME-EXC, Correlation: 0.905823605490449
Pair: AME-EXPD, Correlation: 0.9713667722676007
Pair: AME-EXR, Correlation: 0.9366228092111486
Pair: AME-FDS, Correlation: 0.9729535116521936
Pair: AME-FAST, Correlation: 0.979949051997996
Pair: AME-FITB, Correlation: 0.9142882480607655
Pair: AME-FI, Correlation: 0.9502513510707594
Pair: AME-FTNT, Correlation: 0.9479370658650911
Pair: AME-GRMN, Correlation: 0.9507373830041961
Pair: AME-IT, Correlation: 0.9603349255649766
Pair: AME-GEN, Correlation: 0.9122321613867245
Pair: AME-GD, Correlation: 0.9152665771840371
Pair: AME-GPC, Correlation: 0.9347998018316945
Pair: AME-GL, Correlation: 0.9035277460433032
Pair: AME-GS, Correlation: 0.94137230935918
Pair: AME-HIG, Correlation: 0.9391628275500529
Pair: AME-HCA, Correlation: 0.9749929225531905
Pair: AME-HSY, Correlation: 0.9400191749098045
Pair: AME-HLT, Correlation: 0.9700324558464384
Pair: AME-HOLX, Correlation: 0.9543356858476761
Pair: AME-HD, Correlation: 0.9797097282980867
Pair: AME-HON, Correlation: 0.9568640259381593
Pair: AME-HPQ, Correlation: 0.9044522725115816
Pair: AME-HUBB, Correlation: 0.9372306348830423
Pair: AME-IEX, Correlation: 0.9647748322947677
Pair: AME-IDXX, Correlation: 0.9435325248790859
Pair: AME-ITW, Correlation: 0.9826302132485829
Pair: AME-IR, Correlation: 0.9487157562307873
Pair: AME-ICE, Correlation: 0.9717825544459723
Pair: AME-IPG, Correlation: 0.9359915938453954
Pair: AME-INTU, Correlation: 0.9770904297954175
Pair: AME-ISRG, Correlation: 0.9646288952138568
Pair: AME-IQV, Correlation: 0.9443471555842335
Pair: AME-JBHT, Correlation: 0.9647097795479355
Pair: AME-JBL, Correlation: 0.9157854109340183
Pair: AME-JKHY, Correlation: 0.9056477973329322
Pair: AME-J, Correlation: 0.9673419010737717
Pair: AME-JNJ, Correlation: 0.9301655031161652
Pair: AME-JCI, Correlation: 0.9448207448901063
Pair: AME-JPM, Correlation: 0.9693997901387537
Pair: AME-KDP, Correlation: 0.9394355384866315
Pair: AME-KEYS, Correlation: 0.9221753825565852
Pair: AME-KKR, Correlation: 0.919916985902315
Pair: AME-KLAC, Correlation: 0.9394436359767384
Pair: AME-LHX, Correlation: 0.9296052832363875
Pair: AME-LH, Correlation: 0.9532608799272252
Pair: AME-LRCX, Correlation: 0.9565380181587467
Pair: AME-LDOS, Correlation: 0.9437357687284674
Pair: AME-LEN, Correlation: 0.9514286526195226
Pair: AME-LII, Correlation: 0.9410308289069952
Pair: AME-LIN, Correlation: 0.9811454450039179
Pair: AME-LYV, Correlation: 0.9509302504712512
Pair: AME-LMT, Correlation: 0.9434902569750029
Pair: AME-LOW, Correlation: 0.9833436989861413
Pair: AME-LULU, Correlation: 0.9259033785736568
Pair: AME-MAR, Correlation: 0.9577320811458699
Pair: AME-MMC, Correlation: 0.9854254653933427
Pair: AME-MLM, Correlation: 0.9703665005386471
Pair: AME-MAS, Correlation: 0.9605942542191656
Pair: AME-MA, Correlation: 0.9812553844096729
Pair: AME-MCD, Correlation: 0.9762765643838521
Pair: AME-MRK, Correlation: 0.9590672973207455
Pair: AME-MET, Correlation: 0.9453871186488231
Pair: AME-MTD, Correlation: 0.9559949883422617
Pair: AME-MCHP, Correlation: 0.9785907237909639
Pair: AME-MU, Correlation: 0.9424784982863667
Pair: AME-MSFT, Correlation: 0.9767123084018479
Pair: AME-MAA, Correlation: 0.9129043602024802
Pair: AME-MOH, Correlation: 0.9668599093223044
Pair: AME-MDLZ, Correlation: 0.9681043463853501
Pair: AME-MPWR, Correlation: 0.9488156428338476
Pair: AME-MNST, Correlation: 0.9582350139292538
Pair: AME-MCO, Correlation: 0.9800708928939065
Pair: AME-MS, Correlation: 0.9625848705759896
Pair: AME-MSI, Correlation: 0.9671301504436562
Pair: AME-MSCI, Correlation: 0.9626538094912857
Pair: AME-NDAQ, Correlation: 0.9690029159146294
Pair: AME-NEE, Correlation: 0.9358452852611824
Pair: AME-NDSN, Correlation: 0.9781131612530466
Pair: AME-NSC, Correlation: 0.9520113245996361
Pair: AME-NOC, Correlation: 0.9383533743949802
Pair: AME-NUE, Correlation: 0.9133472869093381
Pair: AME-NVR, Correlation: 0.9731700434163276
Pair: AME-NXPI, Correlation: 0.9641283176982192
Pair: AME-ORLY, Correlation: 0.969633729016578
Pair: AME-ODFL, Correlation: 0.9766564087465538
Pair: AME-ON, Correlation: 0.9237964043637544
Pair: AME-OKE, Correlation: 0.9017546952814365
Pair: AME-ORCL, Correlation: 0.9421396098990151
Pair: AME-OTIS, Correlation: 0.9524098143623755
Pair: AME-PCAR, Correlation: 0.9461223804780612
Pair: AME-PKG, Correlation: 0.9625553255838168
Pair: AME-PANW, Correlation: 0.9335005960213092
Pair: AME-PH, Correlation: 0.951502499155087
Pair: AME-PAYX, Correlation: 0.977154306754234
Pair: AME-PNR, Correlation: 0.9171605826449766
Pair: AME-PEP, Correlation: 0.9683762956399415
Pair: AME-PNC, Correlation: 0.9112064456137461
Pair: AME-POOL, Correlation: 0.9392445588895718
Pair: AME-PFG, Correlation: 0.9314437428107608
Pair: AME-PG, Correlation: 0.9781774727419745
Pair: AME-PGR, Correlation: 0.9484051060326423
Pair: AME-PLD, Correlation: 0.955996926544931
Pair: AME-PEG, Correlation: 0.9553241563457209
Pair: AME-PTC, Correlation: 0.9758061117117659
Pair: AME-PSA, Correlation: 0.931280225780259
Pair: AME-PHM, Correlation: 0.9160082210797119
Pair: AME-QCOM, Correlation: 0.9349679924954316
Pair: AME-DGX, Correlation: 0.9515393854097405
Pair: AME-RJF, Correlation: 0.9698225050960031
Pair: AME-RTX, Correlation: 0.917867906756813
Pair: AME-RF, Correlation: 0.93096530964142
Pair: AME-RSG, Correlation: 0.9743764299229916
Pair: AME-RMD, Correlation: 0.9293501097492894
Pair: AME-ROK, Correlation: 0.9670672198321568
Pair: AME-ROL, Correlation: 0.9720852839886938
Pair: AME-ROP, Correlation: 0.9789732210257391
Pair: AME-ROST, Correlation: 0.9418284967615914
Pair: AME-SPGI, Correlation: 0.9740567631849718
Pair: AME-CRM, Correlation: 0.9446307457301579
Pair: AME-STX, Correlation: 0.9380989215528376
Pair: AME-SRE, Correlation: 0.9355253432655364
Pair: AME-NOW, Correlation: 0.9666706183358729
Pair: AME-SHW, Correlation: 0.9784979790312305
Pair: AME-SW, Correlation: 0.9033254730820607
Pair: AME-SNA, Correlation: 0.9544445050859498
Pair: AME-SO, Correlation: 0.963170157749832
Pair: AME-SBUX, Correlation: 0.9242633438012262
Pair: AME-STLD, Correlation: 0.9217304799980564
Pair: AME-STE, Correlation: 0.9695660535400995
Pair: AME-SYK, Correlation: 0.9820892830050117
Pair: AME-SNPS, Correlation: 0.9609783310597033
Pair: AME-SYY, Correlation: 0.9193541826600187
Pair: AME-TMUS, Correlation: 0.9717206391241985
Pair: AME-TEL, Correlation: 0.9738624203486068
Pair: AME-TDY, Correlation: 0.9580004724193094
Pair: AME-TER, Correlation: 0.9411876976884005
Pair: AME-TXN, Correlation: 0.9734075442551301
Pair: AME-TPL, Correlation: 0.914704981625209
Pair: AME-TXT, Correlation: 0.9091335960200483
Pair: AME-TMO, Correlation: 0.9672053407532594
Pair: AME-TJX, Correlation: 0.9752987912781218
Pair: AME-TSCO, Correlation: 0.968787270359138
Pair: AME-TT, Correlation: 0.9465600481648049
Pair: AME-TDG, Correlation: 0.9569038701021462
Pair: AME-TRV, Correlation: 0.958335630973933
Pair: AME-TYL, Correlation: 0.9522077784142984
Pair: AME-ULTA, Correlation: 0.9049572982681403
Pair: AME-UNP, Correlation: 0.9736538658514001
Pair: AME-UPS, Correlation: 0.909575527192057
Pair: AME-URI, Correlation: 0.9353762133003284
Pair: AME-UNH, Correlation: 0.9716234316247726
Pair: AME-VLO, Correlation: 0.9098091110960622
Pair: AME-VRSK, Correlation: 0.9794103898917941
Pair: AME-VRTX, Correlation: 0.9452033281103421
Pair: AME-VICI, Correlation: 0.9219678424902009
Pair: AME-V, Correlation: 0.9763633271250156
Pair: AME-VMC, Correlation: 0.9640453040888819
Pair: AME-WRB, Correlation: 0.9694068400466537
Pair: AME-GWW, Correlation: 0.9311915732319148
Pair: AME-WMT, Correlation: 0.967234206926991
Pair: AME-WM, Correlation: 0.9813941935165367
Pair: AME-WAT, Correlation: 0.9446691363833456
Pair: AME-WEC, Correlation: 0.9143111747231207
Pair: AME-WELL, Correlation: 0.9058568501260873
Pair: AME-WST, Correlation: 0.9431921974525743
Pair: AME-WTW, Correlation: 0.977449928935368
Pair: AME-WDAY, Correlation: 0.9073463392225835
Pair: AME-XEL, Correlation: 0.9057346585699639
Pair: AME-XYL, Correlation: 0.9619061732718661
Pair: AME-YUM, Correlation: 0.9758909782661229
Pair: AME-ZTS, Correlation: 0.9383261065922803
Pair: AMGN-APH, Correlation: 0.9465479127554178
Pair: AMGN-ADI, Correlation: 0.9523387020916235
Pair: AMGN-ANSS, Correlation: 0.9005946946896453
Pair: AMGN-AON, Correlation: 0.9485662125748104
Pair: AMGN-APO, Correlation: 0.9020092582235966
Pair: AMGN-AAPL, Correlation: 0.9150728255909696
Pair: AMGN-ACGL, Correlation: 0.9014756948869589
Pair: AMGN-AJG, Correlation: 0.9185771497505482
Pair: AMGN-AIZ, Correlation: 0.954470732397604
Pair: AMGN-ATO, Correlation: 0.9625699835498744
Pair: AMGN-ADP, Correlation: 0.9590769467923204
Pair: AMGN-AZO, Correlation: 0.9183459347560096
Pair: AMGN-AVY, Correlation: 0.9400471503745332
Pair: AMGN-BDX, Correlation: 0.919395981952398
Pair: AMGN-BLK, Correlation: 0.9380726848812665
Pair: AMGN-BKNG, Correlation: 0.9338577281361305
Pair: AMGN-BSX, Correlation: 0.9594557033862287
Pair: AMGN-BR, Correlation: 0.9637375966914714
Pair: AMGN-BRO, Correlation: 0.9308840285171883
Pair: AMGN-CBOE, Correlation: 0.9520690385914313
Pair: AMGN-CBRE, Correlation: 0.9084146361270115
Pair: AMGN-CDW, Correlation: 0.9453218712240896
Pair: AMGN-COR, Correlation: 0.9268733757647659
Pair: AMGN-CNC, Correlation: 0.9263194146452803
Pair: AMGN-CB, Correlation: 0.9564142976874808
Pair: AMGN-CHD, Correlation: 0.9619601539238761
Pair: AMGN-CI, Correlation: 0.9711880439371812
Pair: AMGN-CINF, Correlation: 0.9395851652759601
Pair: AMGN-CTAS, Correlation: 0.9313562689973763
Pair: AMGN-CSCO, Correlation: 0.9154765349701648
Pair: AMGN-CME, Correlation: 0.9416110450335908
Pair: AMGN-CMS, Correlation: 0.953115450805719
Pair: AMGN-KO, Correlation: 0.9630324440380251
Pair: AMGN-CL, Correlation: 0.9565407205274317
Pair: AMGN-ED, Correlation: 0.9475700270739893
Pair: AMGN-STZ, Correlation: 0.9340677534180485
Pair: AMGN-COO, Correlation: 0.9325329610174321
Pair: AMGN-CPRT, Correlation: 0.921706608147811
Pair: AMGN-GLW, Correlation: 0.9050099275195198
Pair: AMGN-CSGP, Correlation: 0.9207815819381814
Pair: AMGN-COST, Correlation: 0.9269600396060288
Pair: AMGN-CSX, Correlation: 0.9350389008582106
Pair: AMGN-CMI, Correlation: 0.9378621926569473
Pair: AMGN-DHR, Correlation: 0.9202880057377016
Pair: AMGN-DRI, Correlation: 0.9298814987239667
Pair: AMGN-DLR, Correlation: 0.9227846019901629
Pair: AMGN-DFS, Correlation: 0.9132658246960664
Pair: AMGN-DPZ, Correlation: 0.9357748745924548
Pair: AMGN-DOV, Correlation: 0.9334594897652541
Pair: AMGN-DHI, Correlation: 0.9145325982686454
Pair: AMGN-DTE, Correlation: 0.9510458937489904
Pair: AMGN-DUK, Correlation: 0.963797130038739
Pair: AMGN-ECL, Correlation: 0.9316153610036415
Pair: AMGN-EIX, Correlation: 0.9048706397255945
Pair: AMGN-EA, Correlation: 0.9178241106617133
Pair: AMGN-ELV, Correlation: 0.9474568115132838
Pair: AMGN-EMR, Correlation: 0.919112329289271
Pair: AMGN-ETR, Correlation: 0.9480049213578136
Pair: AMGN-EFX, Correlation: 0.935695961301931
Pair: AMGN-EQIX, Correlation: 0.9537344569655682
Pair: AMGN-ERIE, Correlation: 0.916517228892325
Pair: AMGN-EG, Correlation: 0.9524085609843653
Pair: AMGN-EVRG, Correlation: 0.9127665227426912
Pair: AMGN-EXPD, Correlation: 0.9140467954183203
Pair: AMGN-EXR, Correlation: 0.917251048164876
Pair: AMGN-FDS, Correlation: 0.9449763243041608
Pair: AMGN-FAST, Correlation: 0.9219593014787723
Pair: AMGN-FI, Correlation: 0.965099388953185
Pair: AMGN-GRMN, Correlation: 0.9084724748616174
Pair: AMGN-IT, Correlation: 0.910098719007097
Pair: AMGN-GEN, Correlation: 0.907073867904715
Pair: AMGN-GD, Correlation: 0.9438781769155997
Pair: AMGN-GIS, Correlation: 0.9053714189400736
Pair: AMGN-GPC, Correlation: 0.9129012788972568
Pair: AMGN-GL, Correlation: 0.9267420740490229
Pair: AMGN-HIG, Correlation: 0.9304028620804681
Pair: AMGN-HCA, Correlation: 0.9323423263173076
Pair: AMGN-HSY, Correlation: 0.9073524183524357
Pair: AMGN-HLT, Correlation: 0.936310340805252
Pair: AMGN-HOLX, Correlation: 0.9423955761731921
Pair: AMGN-HD, Correlation: 0.9605808394524856
Pair: AMGN-HON, Correlation: 0.9505655215166421
Pair: AMGN-HUM, Correlation: 0.9016317243525649
Pair: AMGN-IEX, Correlation: 0.9459320326418771
Pair: AMGN-ITW, Correlation: 0.9636592754934129
Pair: AMGN-ICE, Correlation: 0.9625159862264118
Pair: AMGN-INTU, Correlation: 0.9208593385184441
Pair: AMGN-ISRG, Correlation: 0.9216944369207456
Pair: AMGN-JBHT, Correlation: 0.9308068436557608
Pair: AMGN-JKHY, Correlation: 0.9424506031589198
Pair: AMGN-J, Correlation: 0.9028674158214082
Pair: AMGN-JNJ, Correlation: 0.9549926978037042
Pair: AMGN-JPM, Correlation: 0.9447740009404343
Pair: AMGN-KDP, Correlation: 0.9400488679655761
Pair: AMGN-KMB, Correlation: 0.9378862884755007
Pair: AMGN-KR, Correlation: 0.9160377538612827
Pair: AMGN-LHX, Correlation: 0.9374186149683414
Pair: AMGN-LH, Correlation: 0.9167936737621554
Pair: AMGN-LDOS, Correlation: 0.9514619305831978
Pair: AMGN-LEN, Correlation: 0.9119406914532034
Pair: AMGN-LII, Correlation: 0.9393119464181364
Pair: AMGN-LIN, Correlation: 0.9226396245405827
Pair: AMGN-LYV, Correlation: 0.9121694123769892
Pair: AMGN-LMT, Correlation: 0.9756926216373007
Pair: AMGN-LOW, Correlation: 0.9433310764088242
Pair: AMGN-MAR, Correlation: 0.9431164626263385
Pair: AMGN-MMC, Correlation: 0.9566128392029283
Pair: AMGN-MLM, Correlation: 0.9312571427396781
Pair: AMGN-MAS, Correlation: 0.9631380635183682
Pair: AMGN-MA, Correlation: 0.9621154230169108
Pair: AMGN-MCD, Correlation: 0.9487252180482805
Pair: AMGN-MRK, Correlation: 0.9552687341681265
Pair: AMGN-MET, Correlation: 0.9098685852489786
Pair: AMGN-MTD, Correlation: 0.914687226012917
Pair: AMGN-MCHP, Correlation: 0.9335812843259931
Pair: AMGN-MU, Correlation: 0.9135890220533555
Pair: AMGN-MSFT, Correlation: 0.9236085175122634
Pair: AMGN-MOH, Correlation: 0.9206941895363963
Pair: AMGN-MDLZ, Correlation: 0.9661511635342105
Pair: AMGN-MNST, Correlation: 0.9572942426483444
Pair: AMGN-MCO, Correlation: 0.9562735452238416
Pair: AMGN-MS, Correlation: 0.9038011410882667
Pair: AMGN-MSI, Correlation: 0.9240921506186621
Pair: AMGN-MSCI, Correlation: 0.9009669689321386
Pair: AMGN-NDAQ, Correlation: 0.9424720283535432
Pair: AMGN-NEE, Correlation: 0.9248823725727758
Pair: AMGN-NI, Correlation: 0.9373399030963517
Pair: AMGN-NDSN, Correlation: 0.9490144339496464
Pair: AMGN-NSC, Correlation: 0.921155145128219
Pair: AMGN-NOC, Correlation: 0.9607122363138232
Pair: AMGN-NVR, Correlation: 0.943549359180857
Pair: AMGN-NXPI, Correlation: 0.9419523023181442
Pair: AMGN-ORLY, Correlation: 0.9383001334180021
Pair: AMGN-ODFL, Correlation: 0.9093175288543124
Pair: AMGN-PCAR, Correlation: 0.9080427317852648
Pair: AMGN-PKG, Correlation: 0.9627284892277052
Pair: AMGN-PANW, Correlation: 0.9025822083596257
Pair: AMGN-PH, Correlation: 0.9027337104123397
Pair: AMGN-PAYX, Correlation: 0.9488046961095483
Pair: AMGN-PEP, Correlation: 0.9589448217377072
Pair: AMGN-PM, Correlation: 0.9020213307833232
Pair: AMGN-PNC, Correlation: 0.9003195708053134
Pair: AMGN-PFG, Correlation: 0.916428958016082
Pair: AMGN-PG, Correlation: 0.954781359521263
Pair: AMGN-PGR, Correlation: 0.9213749608418424
Pair: AMGN-PLD, Correlation: 0.9126092046845794
Pair: AMGN-PEG, Correlation: 0.9600286188304802
Pair: AMGN-PTC, Correlation: 0.9422314972355436
Pair: AMGN-PSA, Correlation: 0.9234774212738308
Pair: AMGN-DGX, Correlation: 0.9420905545532284
Pair: AMGN-RJF, Correlation: 0.92607253595768
Pair: AMGN-RTX, Correlation: 0.917519976160839
Pair: AMGN-O, Correlation: 0.9037343935907203
Pair: AMGN-REGN, Correlation: 0.9354299300118136
Pair: AMGN-RF, Correlation: 0.9036395483635159
Pair: AMGN-RSG, Correlation: 0.9437570089750523
Pair: AMGN-ROK, Correlation: 0.9223655492844811
Pair: AMGN-ROL, Correlation: 0.9636866655572048
Pair: AMGN-ROP, Correlation: 0.9668405885399901
Pair: AMGN-ROST, Correlation: 0.9561543822470783
Pair: AMGN-SPGI, Correlation: 0.9499634503217047
Pair: AMGN-CRM, Correlation: 0.920195220980469
Pair: AMGN-STX, Correlation: 0.9004344309747266
Pair: AMGN-SRE, Correlation: 0.9657968083623277
Pair: AMGN-NOW, Correlation: 0.9255966368111672
Pair: AMGN-SHW, Correlation: 0.954634853917532
Pair: AMGN-SNA, Correlation: 0.9466767579077686
Pair: AMGN-SO, Correlation: 0.9512818583632996
Pair: AMGN-SBUX, Correlation: 0.9136159297006936
Pair: AMGN-STE, Correlation: 0.9424433829858083
Pair: AMGN-SYK, Correlation: 0.9596569273169767
Pair: AMGN-SYY, Correlation: 0.9269384258357473
Pair: AMGN-TMUS, Correlation: 0.9580380674548835
Pair: AMGN-TEL, Correlation: 0.9427151056858222
Pair: AMGN-TDY, Correlation: 0.9294586937031627
Pair: AMGN-TXN, Correlation: 0.9476326833888512
Pair: AMGN-TMO, Correlation: 0.9301654411493658
Pair: AMGN-TJX, Correlation: 0.9663963168974369
Pair: AMGN-TSCO, Correlation: 0.9210143834168353
Pair: AMGN-TT, Correlation: 0.9019104651500892
Pair: AMGN-TDG, Correlation: 0.9269507712297272
Pair: AMGN-TRV, Correlation: 0.9589931519308335
Pair: AMGN-TYL, Correlation: 0.9445384042683872
Pair: AMGN-UNP, Correlation: 0.9573104367558417
Pair: AMGN-UNH, Correlation: 0.9507803722242797
Pair: AMGN-VLO, Correlation: 0.9092258849184582
Pair: AMGN-VRSK, Correlation: 0.9595589713580158
Pair: AMGN-VRTX, Correlation: 0.961184950904521
Pair: AMGN-V, Correlation: 0.969398551788985
Pair: AMGN-VMC, Correlation: 0.9484553106818107
Pair: AMGN-WRB, Correlation: 0.9516131794869555
Pair: AMGN-WMT, Correlation: 0.9454156595603437
Pair: AMGN-WM, Correlation: 0.9547896113313618
Pair: AMGN-WAT, Correlation: 0.9184139412233634
Pair: AMGN-WEC, Correlation: 0.9388980180953265
Pair: AMGN-WELL, Correlation: 0.903346106495305
Pair: AMGN-WTW, Correlation: 0.9620142902000609
Pair: AMGN-XEL, Correlation: 0.9267736940152979
Pair: AMGN-XYL, Correlation: 0.9291650032262593
Pair: AMGN-YUM, Correlation: 0.9470734300594084
Pair: AMGN-ZTS, Correlation: 0.9005915270625319
Pair: APH-ADI, Correlation: 0.978950692509344
Pair: APH-AON, Correlation: 0.9477599396798417
Pair: APH-APO, Correlation: 0.977304402457231
Pair: APH-AAPL, Correlation: 0.9589939864750402
Pair: APH-AMAT, Correlation: 0.9716286411094531
Pair: APH-ACGL, Correlation: 0.9573630350397581
Pair: APH-ANET, Correlation: 0.9616656131911441
Pair: APH-AJG, Correlation: 0.9739643756569141
Pair: APH-AIZ, Correlation: 0.9427078171199011
Pair: APH-ATO, Correlation: 0.9101965535034232
Pair: APH-ADP, Correlation: 0.9621124215338764
Pair: APH-AZO, Correlation: 0.9584999331339993
Pair: APH-AVY, Correlation: 0.9521962531077294
Pair: APH-AXON, Correlation: 0.9539050094283614
Pair: APH-BLK, Correlation: 0.9500656509463616
Pair: APH-BX, Correlation: 0.9581931970884158
Pair: APH-BKNG, Correlation: 0.954247585181928
Pair: APH-BSX, Correlation: 0.9677082682434837
Pair: APH-AVGO, Correlation: 0.9580451241004514
Pair: APH-BR, Correlation: 0.9619108291329826
Pair: APH-BRO, Correlation: 0.9829871424125024
Pair: APH-BLDR, Correlation: 0.9233878874522042
Pair: APH-CDNS, Correlation: 0.9649144838971647
Pair: APH-COF, Correlation: 0.9007591254298318
Pair: APH-CARR, Correlation: 0.9222613565526401
Pair: APH-CAT, Correlation: 0.9733240345263134
Pair: APH-CBOE, Correlation: 0.9530582900219503
Pair: APH-CBRE, Correlation: 0.9479209960355878
Pair: APH-CDW, Correlation: 0.9408178304811443
Pair: APH-COR, Correlation: 0.9553315337505499
Pair: APH-CMG, Correlation: 0.9528170122646492
Pair: APH-CB, Correlation: 0.9752506644746426
Pair: APH-CHD, Correlation: 0.9302389739875955
Pair: APH-CI, Correlation: 0.9462522739533823
Pair: APH-CINF, Correlation: 0.9251345603799083
Pair: APH-CTAS, Correlation: 0.9891202220728508
Pair: APH-CME, Correlation: 0.90577015435808
Pair: APH-KO, Correlation: 0.9462754473576995
Pair: APH-CL, Correlation: 0.9183506243403199
Pair: APH-ED, Correlation: 0.9098578874093801
Pair: APH-CEG, Correlation: 0.9579489046328817
Pair: APH-CPRT, Correlation: 0.9717085171246944
Pair: APH-GLW, Correlation: 0.90514547524889
Pair: APH-COST, Correlation: 0.9863262660968394
Pair: APH-CSX, Correlation: 0.9255015147593829
Pair: APH-CMI, Correlation: 0.9671276609064576
Pair: APH-DHR, Correlation: 0.9272183312591105
Pair: APH-DRI, Correlation: 0.9418364724031821
Pair: APH-DECK, Correlation: 0.9401373922401769
Pair: APH-DE, Correlation: 0.9242732869288537
Pair: APH-DELL, Correlation: 0.9571932118347278
Pair: APH-DFS, Correlation: 0.9438756457931143
Pair: APH-DPZ, Correlation: 0.9088349050586374
Pair: APH-DOV, Correlation: 0.9648248805127136
Pair: APH-DHI, Correlation: 0.9764984041617802
Pair: APH-DTE, Correlation: 0.9028640498255927
Pair: APH-DUK, Correlation: 0.9337459649479013
Pair: APH-ETN, Correlation: 0.9707632532647675
Pair: APH-ELV, Correlation: 0.9441463275162695
Pair: APH-EMR, Correlation: 0.9662868538703124
Pair: APH-ETR, Correlation: 0.9354284585710125
Pair: APH-EFX, Correlation: 0.9365591714652943
Pair: APH-EQIX, Correlation: 0.923730856424748
Pair: APH-ERIE, Correlation: 0.9571444905617971
Pair: APH-EG, Correlation: 0.9414802044223604
Pair: APH-EXPD, Correlation: 0.9386953944573332
Pair: APH-EXR, Correlation: 0.9075308395252359
Pair: APH-FDS, Correlation: 0.9391474039541027
Pair: APH-FICO, Correlation: 0.9383600691059268
Pair: APH-FAST, Correlation: 0.9660455175596153
Pair: APH-FITB, Correlation: 0.9116590910252917
Pair: APH-FI, Correlation: 0.9475876742340082
Pair: APH-FTNT, Correlation: 0.9274189061937846
Pair: APH-GRMN, Correlation: 0.950793461984372
Pair: APH-IT, Correlation: 0.9763881625115083
Pair: APH-GEN, Correlation: 0.9000536132554023
Pair: APH-GD, Correlation: 0.9365648905658273
Pair: APH-GDDY, Correlation: 0.915350363260204
Pair: APH-GS, Correlation: 0.9672110997218407
Pair: APH-HIG, Correlation: 0.9720530226104814
Pair: APH-HCA, Correlation: 0.9769723074106611
Pair: APH-HLT, Correlation: 0.9856891214573943
Pair: APH-HOLX, Correlation: 0.9148744027213818
Pair: APH-HD, Correlation: 0.9552182546307595
Pair: APH-HON, Correlation: 0.913740146285834
Pair: APH-HWM, Correlation: 0.9246982845707903
Pair: APH-HPQ, Correlation: 0.9058731772493079
Pair: APH-HUBB, Correlation: 0.9642818936015441
Pair: APH-IEX, Correlation: 0.9139545375166939
Pair: APH-ITW, Correlation: 0.9529991903794357
Pair: APH-IR, Correlation: 0.9837745123793974
Pair: APH-ICE, Correlation: 0.9606442237543512
Pair: APH-INTU, Correlation: 0.9634490901478325
Pair: APH-ISRG, Correlation: 0.9711475487891773
Pair: APH-IRM, Correlation: 0.9459484084689607
Pair: APH-JBHT, Correlation: 0.9161525707000739
Pair: APH-JBL, Correlation: 0.9259179165190028
Pair: APH-J, Correlation: 0.9395005078133168
Pair: APH-JCI, Correlation: 0.9262841567984008
Pair: APH-JPM, Correlation: 0.9797936419484379
Pair: APH-KKR, Correlation: 0.963176317850262
Pair: APH-KLAC, Correlation: 0.9717786052073801
Pair: APH-LH, Correlation: 0.9145852780375564
Pair: APH-LRCX, Correlation: 0.9596443180496621
Pair: APH-LDOS, Correlation: 0.9551660388905396
Pair: APH-LEN, Correlation: 0.971429912388049
Pair: APH-LII, Correlation: 0.9714393112397461
Pair: APH-LLY, Correlation: 0.931559294824918
Pair: APH-LIN, Correlation: 0.975058947701803
Pair: APH-LYV, Correlation: 0.9230663517092684
Pair: APH-LMT, Correlation: 0.9308028174256542
Pair: APH-L, Correlation: 0.9220064726393161
Pair: APH-LOW, Correlation: 0.961414625661331
Pair: APH-MPC, Correlation: 0.9105875159239853
Pair: APH-MAR, Correlation: 0.9675601968610668
Pair: APH-MMC, Correlation: 0.9794026854860978
Pair: APH-MLM, Correlation: 0.9814490677245038
Pair: APH-MAS, Correlation: 0.955932282318362
Pair: APH-MA, Correlation: 0.953209605181455
Pair: APH-MCD, Correlation: 0.9426534701446976
Pair: APH-MCK, Correlation: 0.9009980917947273
Pair: APH-MRK, Correlation: 0.9500507730190719
Pair: APH-META, Correlation: 0.9244436022786215
Pair: APH-MET, Correlation: 0.9479452275210546
Pair: APH-MTD, Correlation: 0.9146953616933897
Pair: APH-MCHP, Correlation: 0.9483026104829118
Pair: APH-MU, Correlation: 0.946821396157756
Pair: APH-MSFT, Correlation: 0.9723437240355642
Pair: APH-MOH, Correlation: 0.9316519066402132
Pair: APH-MDLZ, Correlation: 0.9302415945874213
Pair: APH-MPWR, Correlation: 0.9733813306050548
Pair: APH-MNST, Correlation: 0.9168357507377018
Pair: APH-MCO, Correlation: 0.9642826817400321
Pair: APH-MS, Correlation: 0.9565587099004896
Pair: APH-MSI, Correlation: 0.9838515855492603
Pair: APH-MSCI, Correlation: 0.9221767651769168
Pair: APH-NDAQ, Correlation: 0.9500696849510103
Pair: APH-NTAP, Correlation: 0.9309706663299577
Pair: APH-NDSN, Correlation: 0.9436619651191692
Pair: APH-NSC, Correlation: 0.9033875723872319
Pair: APH-NOC, Correlation: 0.9187280611474312
Pair: APH-NRG, Correlation: 0.9037742515156492
Pair: APH-NUE, Correlation: 0.9082645832777241
Pair: APH-NVR, Correlation: 0.9844451982685306
Pair: APH-NXPI, Correlation: 0.9611228714654827
Pair: APH-ORLY, Correlation: 0.9709565558830799
Pair: APH-ODFL, Correlation: 0.9538790332788127
Pair: APH-ON, Correlation: 0.9004145446320885
Pair: APH-OKE, Correlation: 0.9268963674628558
Pair: APH-ORCL, Correlation: 0.9706023047082953
Pair: APH-OTIS, Correlation: 0.9005081304963618
Pair: APH-PCAR, Correlation: 0.9667207232861919
Pair: APH-PKG, Correlation: 0.9731644144653843
Pair: APH-PANW, Correlation: 0.9651177323951399
Pair: APH-PH, Correlation: 0.9820326934266035
Pair: APH-PAYX, Correlation: 0.9571421040354956
Pair: APH-PNR, Correlation: 0.9295514554113083
Pair: APH-PEP, Correlation: 0.9336268049501137
Pair: APH-PM, Correlation: 0.9072419175340691
Pair: APH-PFG, Correlation: 0.9268312622365333
Pair: APH-PG, Correlation: 0.9533741446773504
Pair: APH-PGR, Correlation: 0.9797765337122615
Pair: APH-PLD, Correlation: 0.908317943705227
Pair: APH-PRU, Correlation: 0.9112055661934743
Pair: APH-PEG, Correlation: 0.9598818258424312
Pair: APH-PTC, Correlation: 0.9686169795735684
Pair: APH-PSA, Correlation: 0.9132475951327546
Pair: APH-PHM, Correlation: 0.9586181932737909
Pair: APH-PWR, Correlation: 0.9376717105177406
Pair: APH-QCOM, Correlation: 0.929794251958474
Pair: APH-DGX, Correlation: 0.9297198317588409
Pair: APH-RJF, Correlation: 0.9683936487054775
Pair: APH-RTX, Correlation: 0.9234926541566364
Pair: APH-REGN, Correlation: 0.904848072613331
Pair: APH-RF, Correlation: 0.9166654041836622
Pair: APH-RSG, Correlation: 0.9870493781695173
Pair: APH-ROK, Correlation: 0.9172499387598023
Pair: APH-ROL, Correlation: 0.9584783175354794
Pair: APH-ROP, Correlation: 0.9489771925942487
Pair: APH-ROST, Correlation: 0.9231539207889907
Pair: APH-SPGI, Correlation: 0.9489198117091069
Pair: APH-CRM, Correlation: 0.9172526180756099
Pair: APH-STX, Correlation: 0.9319778755353891
Pair: APH-SRE, Correlation: 0.9105082150802877
Pair: APH-NOW, Correlation: 0.9540070237383932
Pair: APH-SHW, Correlation: 0.9606592101853904
Pair: APH-SNA, Correlation: 0.9472399235933134
Pair: APH-SO, Correlation: 0.9617143385421694
Pair: APH-STLD, Correlation: 0.9415175003390559
Pair: APH-STE, Correlation: 0.9296359244173389
Pair: APH-SYK, Correlation: 0.9715257043050055
Pair: APH-SNPS, Correlation: 0.9647962541600161
Pair: APH-TMUS, Correlation: 0.967955767498625
Pair: APH-TEL, Correlation: 0.948119205245759
Pair: APH-TDY, Correlation: 0.9024334722216334
Pair: APH-TER, Correlation: 0.9073649844389589
Pair: APH-TXN, Correlation: 0.9473613430895176
Pair: APH-TPL, Correlation: 0.932617681736929
Pair: APH-TXT, Correlation: 0.9154317753556737
Pair: APH-TMO, Correlation: 0.9278063128033235
Pair: APH-TJX, Correlation: 0.9805468782443523
Pair: APH-TSCO, Correlation: 0.9666909662249086
Pair: APH-TT, Correlation: 0.9830617445421536
Pair: APH-TDG, Correlation: 0.9835849134654048
Pair: APH-TRV, Correlation: 0.965990219446499
Pair: APH-TYL, Correlation: 0.9335659183634027
Pair: APH-UNP, Correlation: 0.9365501210256283
Pair: APH-URI, Correlation: 0.9722661410690918
Pair: APH-UNH, Correlation: 0.9507965219478061
Pair: APH-VLO, Correlation: 0.9224527223912912
Pair: APH-VLTO, Correlation: 0.907838595380269
Pair: APH-VRSK, Correlation: 0.9608700224472716
Pair: APH-VRTX, Correlation: 0.9572679476463991
Pair: APH-V, Correlation: 0.9468903207963781
Pair: APH-VMC, Correlation: 0.9694302467056726
Pair: APH-WRB, Correlation: 0.9715027786116607
Pair: APH-GWW, Correlation: 0.9571384986376466
Pair: APH-WMT, Correlation: 0.9740915870489305
Pair: APH-WM, Correlation: 0.9786850645569662
Pair: APH-WAT, Correlation: 0.9117509629892697
Pair: APH-WELL, Correlation: 0.9328285331354517
Pair: APH-WTW, Correlation: 0.9556965220019118
Pair: APH-XYL, Correlation: 0.9450681113847677
Pair: APH-YUM, Correlation: 0.9396274047260815
Pair: ADI-ANSS, Correlation: 0.9355457188870798
Pair: ADI-AON, Correlation: 0.9799339433188262
Pair: ADI-APO, Correlation: 0.9446803659860993
Pair: ADI-AAPL, Correlation: 0.9755142894490362
Pair: ADI-AMAT, Correlation: 0.965162960958149
Pair: ADI-ACGL, Correlation: 0.9267026641574647
Pair: ADI-AJG, Correlation: 0.9696484513883386
Pair: ADI-AIZ, Correlation: 0.9545737911325142
Pair: ADI-ATO, Correlation: 0.9316887485821469
Pair: ADI-ADSK, Correlation: 0.9204580431693864
Pair: ADI-ADP, Correlation: 0.9819882750956617
Pair: ADI-AZO, Correlation: 0.9581023279167176
Pair: ADI-AVY, Correlation: 0.9802622683766089
Pair: ADI-AXON, Correlation: 0.9223573097099051
Pair: ADI-BAC, Correlation: 0.9218024551170207
Pair: ADI-BLK, Correlation: 0.9688944277303837
Pair: ADI-BX, Correlation: 0.9566510390442204
Pair: ADI-BKNG, Correlation: 0.9280064612008824
Pair: ADI-BSX, Correlation: 0.9552238595038575
Pair: ADI-AVGO, Correlation: 0.9051101225245206
Pair: ADI-BR, Correlation: 0.9771285759682836
Pair: ADI-BRO, Correlation: 0.9766916380925701
Pair: ADI-CDNS, Correlation: 0.9631311194448138
Pair: ADI-COF, Correlation: 0.9025680967622798
Pair: ADI-CARR, Correlation: 0.9303185219469986
Pair: ADI-CAT, Correlation: 0.9535614353509356
Pair: ADI-CBOE, Correlation: 0.9407056413429737
Pair: ADI-CBRE, Correlation: 0.96280197418454
Pair: ADI-CDW, Correlation: 0.9797045742351925
Pair: ADI-CE, Correlation: 0.9162281351870897
Pair: ADI-COR, Correlation: 0.92882251797898
Pair: ADI-SCHW, Correlation: 0.9170240695773493
Pair: ADI-CMG, Correlation: 0.9360404506430763
Pair: ADI-CB, Correlation: 0.9635127677706202
Pair: ADI-CHD, Correlation: 0.9604394963001367
Pair: ADI-CI, Correlation: 0.946701933557195
Pair: ADI-CINF, Correlation: 0.9483383014361508
Pair: ADI-CTAS, Correlation: 0.9732446523621743
Pair: ADI-CSCO, Correlation: 0.9288278743982946
Pair: ADI-CME, Correlation: 0.94065271725192
Pair: ADI-CMS, Correlation: 0.9250159343469961
Pair: ADI-KO, Correlation: 0.9673455235908269
Pair: ADI-CL, Correlation: 0.9117847510608041
Pair: ADI-ED, Correlation: 0.9272953346328489
Pair: ADI-COO, Correlation: 0.9288167127331315
Pair: ADI-CPRT, Correlation: 0.9796156385660048
Pair: ADI-GLW, Correlation: 0.9255689612644267
Pair: ADI-CSGP, Correlation: 0.932669379426736
Pair: ADI-COST, Correlation: 0.9680583735275908
Pair: ADI-CSX, Correlation: 0.9654645000102143
Pair: ADI-CMI, Correlation: 0.9693602131276324
Pair: ADI-DHR, Correlation: 0.9688470993350012
Pair: ADI-DRI, Correlation: 0.9700086316718288
Pair: ADI-DE, Correlation: 0.9615259713246767
Pair: ADI-DXCM, Correlation: 0.911096434343664
Pair: ADI-DLR, Correlation: 0.9139069937996337
Pair: ADI-DFS, Correlation: 0.9455531261411669
Pair: ADI-DPZ, Correlation: 0.9412936941067177
Pair: ADI-DOV, Correlation: 0.9824228127273879
Pair: ADI-DHI, Correlation: 0.959480538520629
Pair: ADI-DTE, Correlation: 0.9375690993520045
Pair: ADI-DUK, Correlation: 0.9553294865913755
Pair: ADI-ETN, Correlation: 0.9282117732369706
Pair: ADI-EBAY, Correlation: 0.9000002444024428
Pair: ADI-ECL, Correlation: 0.9059764287173352
Pair: ADI-ELV, Correlation: 0.9729315871473886
Pair: ADI-EMR, Correlation: 0.9669074225061969
Pair: ADI-ETR, Correlation: 0.9557687498625758
Pair: ADI-EFX, Correlation: 0.9568645358367197
Pair: ADI-EQIX, Correlation: 0.9590527790448091
Pair: ADI-ERIE, Correlation: 0.9312216279490526
Pair: ADI-EG, Correlation: 0.9477941598510679
Pair: ADI-EXC, Correlation: 0.9228396363972724
Pair: ADI-EXPD, Correlation: 0.9766844389362417
Pair: ADI-EXR, Correlation: 0.9443558392063315
Pair: ADI-FDS, Correlation: 0.9723567730615572
Pair: ADI-FAST, Correlation: 0.9733037916207207
Pair: ADI-FITB, Correlation: 0.9177818582207476
Pair: ADI-FI, Correlation: 0.953504562599074
Pair: ADI-FTNT, Correlation: 0.952237880176984
Pair: ADI-GRMN, Correlation: 0.9549521677661584
Pair: ADI-IT, Correlation: 0.960672010965249
Pair: ADI-GEN, Correlation: 0.9223885889017865
Pair: ADI-GD, Correlation: 0.9220250175970436
Pair: ADI-GPC, Correlation: 0.9250494549594517
Pair: ADI-GS, Correlation: 0.9511622576581561
Pair: ADI-HIG, Correlation: 0.9442645193827791
Pair: ADI-HCA, Correlation: 0.9775251743159965
Pair: ADI-HSY, Correlation: 0.937650398698001
Pair: ADI-HLT, Correlation: 0.9684268433773396
Pair: ADI-HOLX, Correlation: 0.9594286288044197
Pair: ADI-HD, Correlation: 0.9793027561626263
Pair: ADI-HON, Correlation: 0.9541504260327186
Pair: ADI-HPQ, Correlation: 0.9252830514497786
Pair: ADI-HUBB, Correlation: 0.9297540225567602
Pair: ADI-IEX, Correlation: 0.9585608873582172
Pair: ADI-IDXX, Correlation: 0.9446162389349021
Pair: ADI-ITW, Correlation: 0.9801390859024072
Pair: ADI-IR, Correlation: 0.9427201294055712
Pair: ADI-ICE, Correlation: 0.9759060981627327
Pair: ADI-IPG, Correlation: 0.9325101206534319
Pair: ADI-INTU, Correlation: 0.9788178826500505
Pair: ADI-ISRG, Correlation: 0.9718252685130091
Pair: ADI-IQV, Correlation: 0.9471160265492717
Pair: ADI-JBHT, Correlation: 0.9528664768995799
Pair: ADI-JBL, Correlation: 0.9062301025224947
Pair: ADI-JKHY, Correlation: 0.9098391644257434
Pair: ADI-J, Correlation: 0.9655172414487222
Pair: ADI-JNJ, Correlation: 0.9292574575462899
Pair: ADI-JCI, Correlation: 0.9395738604480774
Pair: ADI-JPM, Correlation: 0.9737768478018499
Pair: ADI-KDP, Correlation: 0.9469863798352134
Pair: ADI-KEYS, Correlation: 0.918177322066913
Pair: ADI-KKR, Correlation: 0.921456688414672
Pair: ADI-KLAC, Correlation: 0.947899763076217
Pair: ADI-LHX, Correlation: 0.9382507389513619
Pair: ADI-LH, Correlation: 0.9542958300952535
Pair: ADI-LRCX, Correlation: 0.9585514581674573
Pair: ADI-LDOS, Correlation: 0.9572571849895007
Pair: ADI-LEN, Correlation: 0.9457237231809923
Pair: ADI-LII, Correlation: 0.9459221076787848
Pair: ADI-LIN, Correlation: 0.9791521766090748
Pair: ADI-LYV, Correlation: 0.9513179588437078
Pair: ADI-LMT, Correlation: 0.9499984251801046
Pair: ADI-LOW, Correlation: 0.982264351154881
Pair: ADI-LULU, Correlation: 0.9130586579797471
Pair: ADI-MAR, Correlation: 0.9559985292530494
Pair: ADI-MMC, Correlation: 0.9883394640357828
Pair: ADI-MLM, Correlation: 0.9708260883789043
Pair: ADI-MAS, Correlation: 0.9620991127366537
Pair: ADI-MA, Correlation: 0.9792743614168905
Pair: ADI-MCD, Correlation: 0.9775624049976195
Pair: ADI-MRK, Correlation: 0.9577771711584885
Pair: ADI-MET, Correlation: 0.9424501164417626
Pair: ADI-MTD, Correlation: 0.9647871828500977
Pair: ADI-MCHP, Correlation: 0.9836697872165397
Pair: ADI-MU, Correlation: 0.943390757554714
Pair: ADI-MSFT, Correlation: 0.9812082603625863
Pair: ADI-MAA, Correlation: 0.9229136702311534
Pair: ADI-MOH, Correlation: 0.9612805791106157
Pair: ADI-MDLZ, Correlation: 0.9619635179562609
Pair: ADI-MPWR, Correlation: 0.9656524891906528
Pair: ADI-MNST, Correlation: 0.9519205854411358
Pair: ADI-MCO, Correlation: 0.9826493069883447
Pair: ADI-MS, Correlation: 0.9693733440071208
Pair: ADI-MSI, Correlation: 0.9740402968399416
Pair: ADI-MSCI, Correlation: 0.9664031789399506
Pair: ADI-NDAQ, Correlation: 0.9757391468375533
Pair: ADI-NTAP, Correlation: 0.9058649524232255
Pair: ADI-NFLX, Correlation: 0.9030842799058246
Pair: ADI-NEE, Correlation: 0.9452707919924133
Pair: ADI-NDSN, Correlation: 0.9762624196088693
Pair: ADI-NSC, Correlation: 0.9485643336966311
Pair: ADI-NOC, Correlation: 0.9440669786081093
Pair: ADI-NUE, Correlation: 0.9082778275303752
Pair: ADI-NVR, Correlation: 0.977815275484055
Pair: ADI-NXPI, Correlation: 0.9670998279364237
Pair: ADI-ORLY, Correlation: 0.9683396661808708
Pair: ADI-ODFL, Correlation: 0.9712284723101853
Pair: ADI-ON, Correlation: 0.9266593102093464
Pair: ADI-OKE, Correlation: 0.9013196607763619
Pair: ADI-ORCL, Correlation: 0.9457368390518415
Pair: ADI-OTIS, Correlation: 0.9431414134374392
Pair: ADI-PCAR, Correlation: 0.9367701986612954
Pair: ADI-PKG, Correlation: 0.964489428414892
Pair: ADI-PANW, Correlation: 0.9330897905477054
Pair: ADI-PH, Correlation: 0.950326123234994
Pair: ADI-PAYX, Correlation: 0.98092796031852
Pair: ADI-PNR, Correlation: 0.9019306395043849
Pair: ADI-PEP, Correlation: 0.9697852714105577
Pair: ADI-PNC, Correlation: 0.9166888782728003
Pair: ADI-POOL, Correlation: 0.9384872061570149
Pair: ADI-PFG, Correlation: 0.9273758756887595
Pair: ADI-PG, Correlation: 0.9779653106133399
Pair: ADI-PGR, Correlation: 0.9560141969068162
Pair: ADI-PLD, Correlation: 0.9578588575887831
Pair: ADI-PEG, Correlation: 0.9668964040581729
Pair: ADI-PTC, Correlation: 0.9757459386059499
Pair: ADI-PSA, Correlation: 0.935106438421391
Pair: ADI-PHM, Correlation: 0.9150957189440032
Pair: ADI-QCOM, Correlation: 0.935682913781187
Pair: ADI-DGX, Correlation: 0.9640006037781571
Pair: ADI-RJF, Correlation: 0.9679750268240972
Pair: ADI-RTX, Correlation: 0.9213633640843573
Pair: ADI-RF, Correlation: 0.9361800102844539
Pair: ADI-RSG, Correlation: 0.9823546834634798
Pair: ADI-RMD, Correlation: 0.9384838856064375
Pair: ADI-ROK, Correlation: 0.9611400196420564
Pair: ADI-ROL, Correlation: 0.9778401008759324
Pair: ADI-ROP, Correlation: 0.9770811509319673
Pair: ADI-ROST, Correlation: 0.9396370421484144
Pair: ADI-SPGI, Correlation: 0.9783574496959563
Pair: ADI-CRM, Correlation: 0.93992458650443
Pair: ADI-STX, Correlation: 0.9333632936713357
Pair: ADI-SRE, Correlation: 0.9318223696837694
Pair: ADI-NOW, Correlation: 0.963857848997157
Pair: ADI-SHW, Correlation: 0.9769581777868622
Pair: ADI-SNA, Correlation: 0.9452759260775624
Pair: ADI-SO, Correlation: 0.9724739781963208
Pair: ADI-SBUX, Correlation: 0.9160924981294017
Pair: ADI-STLD, Correlation: 0.9240829156144202
Pair: ADI-STE, Correlation: 0.9715619443223243
Pair: ADI-SYK, Correlation: 0.9848423494696702
Pair: ADI-SNPS, Correlation: 0.9628245161967073
Pair: ADI-SYY, Correlation: 0.9228193954489614
Pair: ADI-TMUS, Correlation: 0.9803785330844481
Pair: ADI-TEL, Correlation: 0.9730973297226702
Pair: ADI-TDY, Correlation: 0.9565697290633365
Pair: ADI-TER, Correlation: 0.9512971154422196
Pair: ADI-TXN, Correlation: 0.9837939188616494
Pair: ADI-TPL, Correlation: 0.9228062111251198
Pair: ADI-TXT, Correlation: 0.9037454274306883
Pair: ADI-TMO, Correlation: 0.9712308392529981
Pair: ADI-TJX, Correlation: 0.9732027744971787
Pair: ADI-TSCO, Correlation: 0.9699318449680601
Pair: ADI-TT, Correlation: 0.9517558335843352
Pair: ADI-TDG, Correlation: 0.9605384648040516
Pair: ADI-TRV, Correlation: 0.9567994753525668
Pair: ADI-TYL, Correlation: 0.9574144339888704
Pair: ADI-ULTA, Correlation: 0.9081161235095633
Pair: ADI-UNP, Correlation: 0.9675481557591056
Pair: ADI-UPS, Correlation: 0.9018623554900929
Pair: ADI-URI, Correlation: 0.9342049951783573
Pair: ADI-UNH, Correlation: 0.9777008450616935
Pair: ADI-VLO, Correlation: 0.9079446308759047
Pair: ADI-VRSK, Correlation: 0.9795035687782491
Pair: ADI-VRTX, Correlation: 0.9467162030071397
Pair: ADI-VICI, Correlation: 0.9234711957101414
Pair: ADI-V, Correlation: 0.9746675795567844
Pair: ADI-VMC, Correlation: 0.9647742031553131
Pair: ADI-WRB, Correlation: 0.9711248887949557
Pair: ADI-GWW, Correlation: 0.9240247955121538
Pair: ADI-WMT, Correlation: 0.9679101140780974
Pair: ADI-WM, Correlation: 0.9877805334639531
Pair: ADI-WAT, Correlation: 0.9500314955664041
Pair: ADI-WEC, Correlation: 0.9181395433549605
Pair: ADI-WELL, Correlation: 0.9107557747718786
Pair: ADI-WST, Correlation: 0.9407043474601827
Pair: ADI-WTW, Correlation: 0.9768366424741546
Pair: ADI-XEL, Correlation: 0.9105175778258916
Pair: ADI-XYL, Correlation: 0.9685329902363311
Pair: ADI-YUM, Correlation: 0.9749314938087592
Pair: ADI-ZTS, Correlation: 0.9421387199328148
Pair: ANSS-AON, Correlation: 0.9288450956190301
Pair: ANSS-AAPL, Correlation: 0.9142927752860031
Pair: ANSS-AIZ, Correlation: 0.9168290980604774
Pair: ANSS-ADSK, Correlation: 0.9815185789854108
Pair: ANSS-ADP, Correlation: 0.9168047129816673
Pair: ANSS-AVY, Correlation: 0.9482342124682601
Pair: ANSS-BALL, Correlation: 0.93212676975272
Pair: ANSS-BAC, Correlation: 0.9067291694187338
Pair: ANSS-BBY, Correlation: 0.9603285015593542
Pair: ANSS-TECH, Correlation: 0.9462852940389115
Pair: ANSS-BLK, Correlation: 0.9486482614856158
Pair: ANSS-BR, Correlation: 0.9460489999715248
Pair: ANSS-CPT, Correlation: 0.900091621838995
Pair: ANSS-CBRE, Correlation: 0.9131997095581494
Pair: ANSS-CDW, Correlation: 0.9167188333197764
Pair: ANSS-CE, Correlation: 0.9293577550232038
Pair: ANSS-CRL, Correlation: 0.9352739315406604
Pair: ANSS-CHD, Correlation: 0.9527228018298438
Pair: ANSS-CINF, Correlation: 0.9035628440577036
Pair: ANSS-CSCO, Correlation: 0.930005336213773
Pair: ANSS-CLX, Correlation: 0.9033603924377598
Pair: ANSS-CME, Correlation: 0.9366190754819951
Pair: ANSS-CMS, Correlation: 0.9242825660155054
Pair: ANSS-CMCSA, Correlation: 0.9033413384444858
Pair: ANSS-COO, Correlation: 0.9550870587926974
Pair: ANSS-CPRT, Correlation: 0.9235218967086136
Pair: ANSS-GLW, Correlation: 0.9002156477726315
Pair: ANSS-CSGP, Correlation: 0.9805930940806477
Pair: ANSS-CCI, Correlation: 0.9141722709097985
Pair: ANSS-CSX, Correlation: 0.9583985413713443
Pair: ANSS-CMI, Correlation: 0.910568804583504
Pair: ANSS-DHR, Correlation: 0.9605338635040516
Pair: ANSS-DRI, Correlation: 0.9146341520537036
Pair: ANSS-DE, Correlation: 0.9031690930427707
Pair: ANSS-DXCM, Correlation: 0.9452322510025798
Pair: ANSS-DLR, Correlation: 0.9353957120297856
Pair: ANSS-DPZ, Correlation: 0.9660623980898349
Pair: ANSS-DOV, Correlation: 0.9477264904555872
Pair: ANSS-DTE, Correlation: 0.9108441919326409
Pair: ANSS-DUK, Correlation: 0.9084602475042536
Pair: ANSS-EBAY, Correlation: 0.9407673371919607
Pair: ANSS-ECL, Correlation: 0.9348680112639572
Pair: ANSS-EW, Correlation: 0.9522783909659035
Pair: ANSS-ELV, Correlation: 0.9044649064844711
Pair: ANSS-ETR, Correlation: 0.9197324820368752
Pair: ANSS-EFX, Correlation: 0.926782660255683
Pair: ANSS-EQIX, Correlation: 0.9679126830669823
Pair: ANSS-ES, Correlation: 0.9050715195974162
Pair: ANSS-EXPD, Correlation: 0.9483036019487
Pair: ANSS-EXR, Correlation: 0.9094434754450409
Pair: ANSS-FDS, Correlation: 0.9398797626760648
Pair: ANSS-FAST, Correlation: 0.9230534123225388
Pair: ANSS-FI, Correlation: 0.924340665793544
Pair: ANSS-GRMN, Correlation: 0.9370954013989934
Pair: ANSS-GEN, Correlation: 0.9097421148527864
Pair: ANSS-HOLX, Correlation: 0.9442638256323581
Pair: ANSS-HD, Correlation: 0.95821963985232
Pair: ANSS-HON, Correlation: 0.9510485627050256
Pair: ANSS-HUM, Correlation: 0.9092495463363609
Pair: ANSS-IEX, Correlation: 0.9590327898769309
Pair: ANSS-IDXX, Correlation: 0.9760817333349227
Pair: ANSS-ITW, Correlation: 0.9510221947210391
Pair: ANSS-PODD, Correlation: 0.9488828561935247
Pair: ANSS-ICE, Correlation: 0.9561337078083866
Pair: ANSS-INTU, Correlation: 0.9425990282504072
Pair: ANSS-ISRG, Correlation: 0.9320584490648871
Pair: ANSS-IQV, Correlation: 0.9435709069088812
Pair: ANSS-JBHT, Correlation: 0.9230944706901782
Pair: ANSS-JKHY, Correlation: 0.9224808617418656
Pair: ANSS-J, Correlation: 0.931944377884647
Pair: ANSS-JNJ, Correlation: 0.91928958252142
Pair: ANSS-JPM, Correlation: 0.9112288371381772
Pair: ANSS-KDP, Correlation: 0.9435936912289286
Pair: ANSS-KEYS, Correlation: 0.9212047527770673
Pair: ANSS-LHX, Correlation: 0.9340563374123592
Pair: ANSS-LH, Correlation: 0.9456793151066784
Pair: ANSS-LDOS, Correlation: 0.9182320177745622
Pair: ANSS-LYV, Correlation: 0.9323079473446805
Pair: ANSS-LOW, Correlation: 0.9384031346854471
Pair: ANSS-LULU, Correlation: 0.9558184410567916
Pair: ANSS-MMC, Correlation: 0.9058796135331341
Pair: ANSS-MAS, Correlation: 0.9371986093850798
Pair: ANSS-MA, Correlation: 0.9629736357416463
Pair: ANSS-MKC, Correlation: 0.93881851435027
Pair: ANSS-MCD, Correlation: 0.9350530673193127
Pair: ANSS-MTD, Correlation: 0.9531264612885951
Pair: ANSS-MCHP, Correlation: 0.9480766712425692
Pair: ANSS-MU, Correlation: 0.9089899229141152
Pair: ANSS-MSFT, Correlation: 0.9250193568625682
Pair: ANSS-MAA, Correlation: 0.9195812801634373
Pair: ANSS-MOH, Correlation: 0.9118193142379398
Pair: ANSS-MDLZ, Correlation: 0.9180597889038781
Pair: ANSS-MNST, Correlation: 0.9225789649578657
Pair: ANSS-MCO, Correlation: 0.9609926494566071
Pair: ANSS-MSCI, Correlation: 0.9592127769456267
Pair: ANSS-NDAQ, Correlation: 0.9405877214208865
Pair: ANSS-NFLX, Correlation: 0.9375346065897601
Pair: ANSS-NEE, Correlation: 0.9602494973428072
Pair: ANSS-NKE, Correlation: 0.9436467361373371
Pair: ANSS-NDSN, Correlation: 0.9567297516580101
Pair: ANSS-NSC, Correlation: 0.9639921574000154
Pair: ANSS-NVR, Correlation: 0.9063298693214749
Pair: ANSS-NXPI, Correlation: 0.9018048804053146
Pair: ANSS-ODFL, Correlation: 0.9067759177267468
Pair: ANSS-PAYX, Correlation: 0.9211449592926217
Pair: ANSS-PEP, Correlation: 0.9197143715311158
Pair: ANSS-POOL, Correlation: 0.9686510925229305
Pair: ANSS-PG, Correlation: 0.9426938250945124
Pair: ANSS-PLD, Correlation: 0.955570278210191
Pair: ANSS-PEG, Correlation: 0.9069930481152951
Pair: ANSS-PTC, Correlation: 0.9170511850393834
Pair: ANSS-QCOM, Correlation: 0.902981546340674
Pair: ANSS-DGX, Correlation: 0.9356128145238781
Pair: ANSS-RMD, Correlation: 0.9612117948888268
Pair: ANSS-RVTY, Correlation: 0.9371810477339707
Pair: ANSS-ROK, Correlation: 0.9594697874944903
Pair: ANSS-ROL, Correlation: 0.9431971500037083
Pair: ANSS-ROP, Correlation: 0.9624133887927033
Pair: ANSS-ROST, Correlation: 0.9236925810386826
Pair: ANSS-SPGI, Correlation: 0.9721952121679046
Pair: ANSS-CRM, Correlation: 0.9720388608711545
Pair: ANSS-SBAC, Correlation: 0.9287638968705532
Pair: ANSS-NOW, Correlation: 0.9365740103014683
Pair: ANSS-SHW, Correlation: 0.9586493894422049
Pair: ANSS-SBUX, Correlation: 0.9425862291020914
Pair: ANSS-STE, Correlation: 0.9661774107480416
Pair: ANSS-SYK, Correlation: 0.9392105965478744
Pair: ANSS-SYY, Correlation: 0.909696793712442
Pair: ANSS-TMUS, Correlation: 0.9226347363016328
Pair: ANSS-TROW, Correlation: 0.9408453631237886
Pair: ANSS-TTWO, Correlation: 0.9559980038432153
Pair: ANSS-TGT, Correlation: 0.9263225816165835
Pair: ANSS-TEL, Correlation: 0.9413524764123304
Pair: ANSS-TDY, Correlation: 0.9747327944094235
Pair: ANSS-TER, Correlation: 0.9666189145271769
Pair: ANSS-TXN, Correlation: 0.9633630436912349
Pair: ANSS-TMO, Correlation: 0.9591779646418693
Pair: ANSS-TRMB, Correlation: 0.9053331674920206
Pair: ANSS-TYL, Correlation: 0.9668025646471713
Pair: ANSS-UNP, Correlation: 0.9550139998928194
Pair: ANSS-UPS, Correlation: 0.9124762369041388
Pair: ANSS-UNH, Correlation: 0.9143932695317638
Pair: ANSS-VRSN, Correlation: 0.9484517020446337
Pair: ANSS-VRSK, Correlation: 0.9536394730075725
Pair: ANSS-V, Correlation: 0.962027482601248
Pair: ANSS-WMT, Correlation: 0.9106642285900616
Pair: ANSS-WM, Correlation: 0.9160511351121959
Pair: ANSS-WAT, Correlation: 0.9280597511982361
Pair: ANSS-WEC, Correlation: 0.935700623358321
Pair: ANSS-WST, Correlation: 0.9567711143269306
Pair: ANSS-WTW, Correlation: 0.9478830535486501
Pair: ANSS-WDAY, Correlation: 0.9529027206665809
Pair: ANSS-XEL, Correlation: 0.9368565592591619
Pair: ANSS-XYL, Correlation: 0.9357352596972613
Pair: ANSS-YUM, Correlation: 0.938248147702435
Pair: ANSS-ZBRA, Correlation: 0.9408490962864524
Pair: ANSS-ZTS, Correlation: 0.9738900994153337
Pair: AON-APO, Correlation: 0.9132359586616672
Pair: AON-AAPL, Correlation: 0.9628151770649208
Pair: AON-AMAT, Correlation: 0.9239941047514539
Pair: AON-ACGL, Correlation: 0.9038518914441813
Pair: AON-ADM, Correlation: 0.9089419180465211
Pair: AON-AJG, Correlation: 0.9575277467144964
Pair: AON-AIZ, Correlation: 0.9582135295202352
Pair: AON-ATO, Correlation: 0.9490261206562073
Pair: AON-ADSK, Correlation: 0.9113753095691642
Pair: AON-ADP, Correlation: 0.9890235365978225
Pair: AON-AZO, Correlation: 0.9558011056306925
Pair: AON-AVY, Correlation: 0.9701658515309945
Pair: AON-BAC, Correlation: 0.9163526342470091
Pair: AON-BDX, Correlation: 0.9006207320439796
Pair: AON-TECH, Correlation: 0.9026312834330169
Pair: AON-BLK, Correlation: 0.9569824508925314
Pair: AON-BX, Correlation: 0.9466475267124344
Pair: AON-BKNG, Correlation: 0.9034519765077478
Pair: AON-BSX, Correlation: 0.9385604475663339
Pair: AON-BR, Correlation: 0.9689896700345537
Pair: AON-BRO, Correlation: 0.9623363028602112
Pair: AON-CHRW, Correlation: 0.9027346812311113
Pair: AON-CDNS, Correlation: 0.9389750100282115
Pair: AON-CPT, Correlation: 0.920231994775731
Pair: AON-CAT, Correlation: 0.9176467149108953
Pair: AON-CBOE, Correlation: 0.9347427298747417
Pair: AON-CBRE, Correlation: 0.9570439217330181
Pair: AON-CDW, Correlation: 0.9743334597044787
Pair: AON-CE, Correlation: 0.9054099116080935
Pair: AON-COR, Correlation: 0.9157864622668334
Pair: AON-CNC, Correlation: 0.9102835701970758
Pair: AON-SCHW, Correlation: 0.9236342890755241
Pair: AON-CMG, Correlation: 0.9011230766985924
Pair: AON-CB, Correlation: 0.9573764638755233
Pair: AON-CHD, Correlation: 0.9655415022462897
Pair: AON-CI, Correlation: 0.946650768529009
Pair: AON-CINF, Correlation: 0.9599586248835806
Pair: AON-CTAS, Correlation: 0.9473525426259392
Pair: AON-CSCO, Correlation: 0.9439126137718935
Pair: AON-CME, Correlation: 0.9526024801437529
Pair: AON-CMS, Correlation: 0.9446649848278196
Pair: AON-KO, Correlation: 0.9767505509379717
Pair: AON-ED, Correlation: 0.9454092039448522
Pair: AON-STZ, Correlation: 0.9056529477620406
Pair: AON-COO, Correlation: 0.9387483879892838
Pair: AON-CPRT, Correlation: 0.9589220045996436
Pair: AON-GLW, Correlation: 0.9116277629637888
Pair: AON-CSGP, Correlation: 0.9362874219416712
Pair: AON-COST, Correlation: 0.9441933376546573
Pair: AON-CSX, Correlation: 0.9679659640698681
Pair: AON-CMI, Correlation: 0.9478738860518053
Pair: AON-DHR, Correlation: 0.9682718841799013
Pair: AON-DRI, Correlation: 0.9706400730873568
Pair: AON-DE, Correlation: 0.9625330968245351
Pair: AON-DXCM, Correlation: 0.9186570831103337
Pair: AON-DLR, Correlation: 0.9056209418240051
Pair: AON-DFS, Correlation: 0.9343572403387327
Pair: AON-DPZ, Correlation: 0.9350966566326182
Pair: AON-DOV, Correlation: 0.9716001052025913
Pair: AON-DHI, Correlation: 0.925288832770542
Pair: AON-DTE, Correlation: 0.9550494364474893
Pair: AON-DUK, Correlation: 0.9642107826815747
Pair: AON-EW, Correlation: 0.9100503016213239
Pair: AON-ELV, Correlation: 0.9785284349746367
Pair: AON-EMR, Correlation: 0.9493812296187284
Pair: AON-ETR, Correlation: 0.966017778661961
Pair: AON-EFX, Correlation: 0.9512662296890975
Pair: AON-EQIX, Correlation: 0.9620231409029566
Pair: AON-EG, Correlation: 0.9535396839188603
Pair: AON-EVRG, Correlation: 0.9087502844950418
Pair: AON-EXC, Correlation: 0.9466346728674297
Pair: AON-EXPD, Correlation: 0.9662635410335106
Pair: AON-EXR, Correlation: 0.9597074299088567
Pair: AON-FDS, Correlation: 0.9859202206659314
Pair: AON-FAST, Correlation: 0.9578145225740492
Pair: AON-FITB, Correlation: 0.9087162392392614
Pair: AON-FI, Correlation: 0.9437052078788265
Pair: AON-FTNT, Correlation: 0.9548292316147071
Pair: AON-GRMN, Correlation: 0.9242011203993796
Pair: AON-IT, Correlation: 0.9466496234031269
Pair: AON-GEN, Correlation: 0.9192374835421683
Pair: AON-GD, Correlation: 0.9203638996976823
Pair: AON-GIS, Correlation: 0.919300653937351
Pair: AON-GPC, Correlation: 0.9443484157767875
Pair: AON-GL, Correlation: 0.9237688648461065
Pair: AON-GS, Correlation: 0.9216708223763845
Pair: AON-HIG, Correlation: 0.9271722302976356
Pair: AON-HCA, Correlation: 0.9632908193607362
Pair: AON-HSY, Correlation: 0.9659079040710699
Pair: AON-HLT, Correlation: 0.93875620783973
Pair: AON-HOLX, Correlation: 0.9647082283272461
Pair: AON-HD, Correlation: 0.9788459594660589
Pair: AON-HON, Correlation: 0.9586362898420114
Pair: AON-HPQ, Correlation: 0.9151704352177502
Pair: AON-HUBB, Correlation: 0.9006795200765112
Pair: AON-HUM, Correlation: 0.9239403357390927
Pair: AON-IEX, Correlation: 0.9689411232543532
Pair: AON-IDXX, Correlation: 0.9378975264659332
Pair: AON-ITW, Correlation: 0.9792654349610749
Pair: AON-PODD, Correlation: 0.9139194139999464
Pair: AON-ICE, Correlation: 0.9674775923876392
Pair: AON-IPG, Correlation: 0.9476709475911427
Pair: AON-INTU, Correlation: 0.9641188235871291
Pair: AON-ISRG, Correlation: 0.9448519290147106
Pair: AON-IQV, Correlation: 0.9537339514110112
Pair: AON-JBHT, Correlation: 0.9671388494333275
Pair: AON-JKHY, Correlation: 0.9323360615164122
Pair: AON-J, Correlation: 0.9601991075680274
Pair: AON-JNJ, Correlation: 0.953440324375783
Pair: AON-JCI, Correlation: 0.9352616801578016
Pair: AON-JPM, Correlation: 0.9486433394442374
Pair: AON-KDP, Correlation: 0.9628513753983176
Pair: AON-KEYS, Correlation: 0.9402463744937186
Pair: AON-KLAC, Correlation: 0.9035755677931376
Pair: AON-KR, Correlation: 0.903963405514737
Pair: AON-LHX, Correlation: 0.9511718473815615
Pair: AON-LH, Correlation: 0.9588223964960965
Pair: AON-LRCX, Correlation: 0.9170341624123833
Pair: AON-LDOS, Correlation: 0.9385014749501575
Pair: AON-LEN, Correlation: 0.9086413954973004
Pair: AON-LII, Correlation: 0.9112171179595631
Pair: AON-LIN, Correlation: 0.9620652932353365
Pair: AON-LYV, Correlation: 0.9606851986753062
Pair: AON-LMT, Correlation: 0.9621908705955561
Pair: AON-LOW, Correlation: 0.9812676964276539
Pair: AON-LULU, Correlation: 0.9226909729660452
Pair: AON-MAR, Correlation: 0.943279562281936
Pair: AON-MMC, Correlation: 0.9869788374414343
Pair: AON-MLM, Correlation: 0.9495560273681929
Pair: AON-MAS, Correlation: 0.9475800857499597
Pair: AON-MA, Correlation: 0.9743300091266826
Pair: AON-MKC, Correlation: 0.9036509533455372
Pair: AON-MCD, Correlation: 0.987188550505712
Pair: AON-MRK, Correlation: 0.9532168849263885
Pair: AON-MET, Correlation: 0.9390812611108212
Pair: AON-MTD, Correlation: 0.9656142877755931
Pair: AON-MCHP, Correlation: 0.9680344670714371
Pair: AON-MU, Correlation: 0.9016134290951602
Pair: AON-MSFT, Correlation: 0.9609779621466107
Pair: AON-MAA, Correlation: 0.9472289922628035
Pair: AON-MOH, Correlation: 0.9702987614948606
Pair: AON-MDLZ, Correlation: 0.9739691501844419
Pair: AON-MPWR, Correlation: 0.927170515768148
Pair: AON-MNST, Correlation: 0.9604852895919798
Pair: AON-MCO, Correlation: 0.9711580970763041
Pair: AON-MS, Correlation: 0.9580683483991516
Pair: AON-MSI, Correlation: 0.9554769705954517
Pair: AON-MSCI, Correlation: 0.9669104070933391
Pair: AON-NDAQ, Correlation: 0.9784039846593006
Pair: AON-NEE, Correlation: 0.9566498393116378
Pair: AON-NI, Correlation: 0.9090054955532688
Pair: AON-NDSN, Correlation: 0.9789111364349018
Pair: AON-NSC, Correlation: 0.9545709922477472
Pair: AON-NOC, Correlation: 0.965287494758101
Pair: AON-NUE, Correlation: 0.9059425951793263
Pair: AON-NVR, Correlation: 0.9530730252481692
Pair: AON-NXPI, Correlation: 0.9424330275387649
Pair: AON-ORLY, Correlation: 0.9643415142376719
Pair: AON-ODFL, Correlation: 0.9678670762637371
Pair: AON-ON, Correlation: 0.9280283684740455
Pair: AON-ORCL, Correlation: 0.9204414393969481
Pair: AON-PCAR, Correlation: 0.9040744849400241
Pair: AON-PKG, Correlation: 0.9498385117507709
Pair: AON-PANW, Correlation: 0.9046820074764071
Pair: AON-PH, Correlation: 0.9128342834350575
Pair: AON-PAYX, Correlation: 0.9892754340083251
Pair: AON-PEP, Correlation: 0.9869412499586833
Pair: AON-PNC, Correlation: 0.9155134173071177
Pair: AON-POOL, Correlation: 0.9438033289392037
Pair: AON-PFG, Correlation: 0.9328376387003071
Pair: AON-PG, Correlation: 0.9804018818333233
Pair: AON-PGR, Correlation: 0.9281472491536078
Pair: AON-PLD, Correlation: 0.9731479558609669
Pair: AON-PEG, Correlation: 0.9635933245453294
Pair: AON-PTC, Correlation: 0.9496825211436853
Pair: AON-PSA, Correlation: 0.952785168473551
Pair: AON-DGX, Correlation: 0.9684507243627024
Pair: AON-RJF, Correlation: 0.9655927787992512
Pair: AON-RTX, Correlation: 0.9230811398985632
Pair: AON-O, Correlation: 0.9043464406503863
Pair: AON-RF, Correlation: 0.9363392206279294
Pair: AON-RSG, Correlation: 0.9689916316494908
Pair: AON-RMD, Correlation: 0.945789582692345
Pair: AON-RVTY, Correlation: 0.9028200279849602
Pair: AON-ROK, Correlation: 0.9656744063236739
Pair: AON-ROL, Correlation: 0.9661440181880591
Pair: AON-ROP, Correlation: 0.974970962264803
Pair: AON-ROST, Correlation: 0.9277975468714054
Pair: AON-SPGI, Correlation: 0.9739283184045348
Pair: AON-CRM, Correlation: 0.9258616809775527
Pair: AON-STX, Correlation: 0.9093386773622749
Pair: AON-SRE, Correlation: 0.954748930381641
Pair: AON-NOW, Correlation: 0.9389855605584561
Pair: AON-SHW, Correlation: 0.9680785855418621
Pair: AON-SNA, Correlation: 0.9440554930273471
Pair: AON-SO, Correlation: 0.9709452069958164
Pair: AON-SBUX, Correlation: 0.9354785916948669
Pair: AON-STLD, Correlation: 0.9067124113998573
Pair: AON-STE, Correlation: 0.9783957555732772
Pair: AON-SYK, Correlation: 0.97374100564136
Pair: AON-SNPS, Correlation: 0.9383444316482128
Pair: AON-SYY, Correlation: 0.9395797197911838
Pair: AON-TMUS, Correlation: 0.9678608277597937
Pair: AON-TEL, Correlation: 0.9647427317563317
Pair: AON-TDY, Correlation: 0.9687904306255941
Pair: AON-TER, Correlation: 0.9252647271781482
Pair: AON-TXN, Correlation: 0.97575005061793
Pair: AON-TPL, Correlation: 0.915347304433276
Pair: AON-TMO, Correlation: 0.9759878878372005
Pair: AON-TJX, Correlation: 0.9567079316805707
Pair: AON-TSCO, Correlation: 0.9555754222199143
Pair: AON-TT, Correlation: 0.9102019069348027
Pair: AON-TDG, Correlation: 0.9262099759100115
Pair: AON-TRV, Correlation: 0.9522709305120242
Pair: AON-TYL, Correlation: 0.9471825406748517
Pair: AON-ULTA, Correlation: 0.9299034282004609
Pair: AON-UNP, Correlation: 0.9717099111564466
Pair: AON-UPS, Correlation: 0.922915268679807
Pair: AON-UNH, Correlation: 0.9869363026655704
Pair: AON-VLO, Correlation: 0.9022391806660446
Pair: AON-VRSN, Correlation: 0.9112890475278674
Pair: AON-VRSK, Correlation: 0.9733491169680497
Pair: AON-VRTX, Correlation: 0.9324192729158234
Pair: AON-VICI, Correlation: 0.9449632458740291
Pair: AON-V, Correlation: 0.9726683991029019
Pair: AON-VMC, Correlation: 0.9525509191603808
Pair: AON-WRB, Correlation: 0.968527807044709
Pair: AON-WMT, Correlation: 0.9493480465763299
Pair: AON-WM, Correlation: 0.9813510377620568
Pair: AON-WAT, Correlation: 0.9542695674464164
Pair: AON-WEC, Correlation: 0.9447435351689254
Pair: AON-WELL, Correlation: 0.9011305772082904
Pair: AON-WST, Correlation: 0.9464593852202755
Pair: AON-WTW, Correlation: 0.9747351402263124
Pair: AON-XEL, Correlation: 0.9394222062335507
Pair: AON-XYL, Correlation: 0.9445399852047435
Pair: AON-YUM, Correlation: 0.9799874277634201
Pair: AON-ZTS, Correlation: 0.9512174277725659
Pair: APO-AAPL, Correlation: 0.9439985759220868
Pair: APO-AMAT, Correlation: 0.9592644414022846
Pair: APO-ACGL, Correlation: 0.9548204821406231
Pair: APO-ANET, Correlation: 0.9646739957478497
Pair: APO-AJG, Correlation: 0.9721370117428974
Pair: APO-ADP, Correlation: 0.9236754051555428
Pair: APO-AZO, Correlation: 0.9455979184082542
Pair: APO-AVY, Correlation: 0.9005365833816981
Pair: APO-AXON, Correlation: 0.9741892041018897
Pair: APO-BLK, Correlation: 0.9089037211354679
Pair: APO-BX, Correlation: 0.9574779969745913
Pair: APO-BKNG, Correlation: 0.9362353733131995
Pair: APO-BSX, Correlation: 0.9322512655987216
Pair: APO-AVGO, Correlation: 0.9719760235912233
Pair: APO-BR, Correlation: 0.9187680105461213
Pair: APO-BRO, Correlation: 0.9756426543548612
Pair: APO-BLDR, Correlation: 0.9536625143313016
Pair: APO-CDNS, Correlation: 0.9671202046562879
Pair: APO-CAT, Correlation: 0.9745322265721151
Pair: APO-CBOE, Correlation: 0.9209351404847993
Pair: APO-CBRE, Correlation: 0.9155970437625812
Pair: APO-CDW, Correlation: 0.9110209099365906
Pair: APO-COR, Correlation: 0.9439827315267514
Pair: APO-CMG, Correlation: 0.9580455196420231
Pair: APO-CB, Correlation: 0.9440686768684173
Pair: APO-CTAS, Correlation: 0.9833328989787462
Pair: APO-KO, Correlation: 0.9053816949307912
Pair: APO-CEG, Correlation: 0.9348176612959048
Pair: APO-CPRT, Correlation: 0.9655221128636677
Pair: APO-COST, Correlation: 0.9792217226672326
Pair: APO-CMI, Correlation: 0.9470884293122449
Pair: APO-DECK, Correlation: 0.9688465169230102
Pair: APO-DELL, Correlation: 0.9436699094547005
Pair: APO-DFS, Correlation: 0.9056900842238396
Pair: APO-DOV, Correlation: 0.9357615354248583
Pair: APO-DHI, Correlation: 0.9750004035266813
Pair: APO-ETN, Correlation: 0.9861214885381895
Pair: APO-EMR, Correlation: 0.9450861500523905
Pair: APO-ERIE, Correlation: 0.9468807057713166
Pair: APO-EG, Correlation: 0.903549661773269
Pair: APO-EXPD, Correlation: 0.9015958560205047
Pair: APO-FDS, Correlation: 0.9010403561288731
Pair: APO-FICO, Correlation: 0.965990249137926
Pair: APO-FAST, Correlation: 0.9625959457798209
Pair: APO-FI, Correlation: 0.9082540709968242
Pair: APO-FTNT, Correlation: 0.9205660124457842
Pair: APO-GRMN, Correlation: 0.9266919802132947
Pair: APO-IT, Correlation: 0.968118186366172
Pair: APO-GEV, Correlation: 0.9155486399969788
Pair: APO-GS, Correlation: 0.9454622396398358
Pair: APO-HIG, Correlation: 0.9413559295105544
Pair: APO-HCA, Correlation: 0.9534114332562378
Pair: APO-HLT, Correlation: 0.974261773539967
Pair: APO-HD, Correlation: 0.9133679375054496
Pair: APO-HWM, Correlation: 0.9208930711578882
Pair: APO-HUBB, Correlation: 0.9766861896869214
Pair: APO-ITW, Correlation: 0.9090656918454956
Pair: APO-IR, Correlation: 0.9749670057808776
Pair: APO-ICE, Correlation: 0.9190120715983252
Pair: APO-INTU, Correlation: 0.9410424299216419
Pair: APO-ISRG, Correlation: 0.9500330796054199
Pair: APO-IRM, Correlation: 0.9519600075993979
Pair: APO-JBL, Correlation: 0.9523246764081161
Pair: APO-J, Correlation: 0.9232503494409403
Pair: APO-JPM, Correlation: 0.9493374317351694
Pair: APO-KKR, Correlation: 0.9794977500946945
Pair: APO-KLAC, Correlation: 0.9747482716226787
Pair: APO-LRCX, Correlation: 0.9562618771540778
Pair: APO-LDOS, Correlation: 0.9216688509620864
Pair: APO-LEN, Correlation: 0.9683136137057244
Pair: APO-LII, Correlation: 0.946261559411274
Pair: APO-LLY, Correlation: 0.9548059986081127
Pair: APO-LIN, Correlation: 0.9712878937516986
Pair: APO-L, Correlation: 0.9138777802609823
Pair: APO-LOW, Correlation: 0.9281913729689687
Pair: APO-MPC, Correlation: 0.9126592896960454
Pair: APO-MAR, Correlation: 0.9327668293305074
Pair: APO-MMC, Correlation: 0.9561956929460472
Pair: APO-MLM, Correlation: 0.9582616478722015
Pair: APO-MAS, Correlation: 0.9107357959246968
Pair: APO-MA, Correlation: 0.9204577783927744
Pair: APO-MCD, Correlation: 0.9008758773283966
Pair: APO-MCK, Correlation: 0.9043171172987541
Pair: APO-MRK, Correlation: 0.9188425254232707
Pair: APO-META, Correlation: 0.9086904375659438
Pair: APO-MET, Correlation: 0.9171910729771126
Pair: APO-MU, Correlation: 0.9063689753364257
Pair: APO-MSFT, Correlation: 0.9617649788331352
Pair: APO-MOH, Correlation: 0.9001111561809334
Pair: APO-MPWR, Correlation: 0.9632446498396368
Pair: APO-MCO, Correlation: 0.9353374608188625
Pair: APO-MS, Correlation: 0.9283706467575183
Pair: APO-MSI, Correlation: 0.9790670633667821
Pair: APO-NDAQ, Correlation: 0.9050867020641532
Pair: APO-NTAP, Correlation: 0.9212355591537238
Pair: APO-NDSN, Correlation: 0.9015456051020564
Pair: APO-NRG, Correlation: 0.9165892323092466
Pair: APO-NUE, Correlation: 0.9026038226487308
Pair: APO-NVDA, Correlation: 0.9188375438413
Pair: APO-NVR, Correlation: 0.9658058390920482
Pair: APO-NXPI, Correlation: 0.9158783259497871
Pair: APO-ORLY, Correlation: 0.9579918565055914
Pair: APO-ODFL, Correlation: 0.9483050490410503
Pair: APO-OKE, Correlation: 0.9081058895216383
Pair: APO-ORCL, Correlation: 0.9819950421396858
Pair: APO-PCAR, Correlation: 0.9731513741748156
Pair: APO-PKG, Correlation: 0.9388890631219958
Pair: APO-PANW, Correlation: 0.967880923254781
Pair: APO-PH, Correlation: 0.9868776408438861
Pair: APO-PAYX, Correlation: 0.9138609399487397
Pair: APO-PNR, Correlation: 0.9247885683981769
Pair: APO-PG, Correlation: 0.9214371809301617
Pair: APO-PGR, Correlation: 0.9765228127646909
Pair: APO-PEG, Correlation: 0.9085035302519061
Pair: APO-PTC, Correlation: 0.9333923766793842
Pair: APO-PHM, Correlation: 0.9728337939046177
Pair: APO-PWR, Correlation: 0.9628935619432589
Pair: APO-QCOM, Correlation: 0.9036996607963041
Pair: APO-RJF, Correlation: 0.9403819797194504
Pair: APO-RSG, Correlation: 0.9666715174214267
Pair: APO-ROL, Correlation: 0.9090137023038511
Pair: APO-ROP, Correlation: 0.9066352085524959
Pair: APO-SPGI, Correlation: 0.9121581618359502
Pair: APO-STX, Correlation: 0.9056388895509475
Pair: APO-NOW, Correlation: 0.9460931480483394
Pair: APO-SHW, Correlation: 0.9261011727327598
Pair: APO-SNA, Correlation: 0.913152787037521
Pair: APO-SO, Correlation: 0.932440704109746
Pair: APO-STLD, Correlation: 0.9380559671195561
Pair: APO-SYK, Correlation: 0.9344720718695638
Pair: APO-SNPS, Correlation: 0.9668522923928978
Pair: APO-TMUS, Correlation: 0.9365071737571463
Pair: APO-TPL, Correlation: 0.9226912366771058
Pair: APO-TJX, Correlation: 0.9618789796887521
Pair: APO-TSCO, Correlation: 0.950942950196047
Pair: APO-TT, Correlation: 0.9852039665606834
Pair: APO-TDG, Correlation: 0.9793265353748386
Pair: APO-TRV, Correlation: 0.9265351075116113
Pair: APO-URI, Correlation: 0.981381562820657
Pair: APO-UNH, Correlation: 0.9085466697242908
Pair: APO-VRSK, Correlation: 0.9342279628820509
Pair: APO-VRTX, Correlation: 0.9416845516853175
Pair: APO-V, Correlation: 0.9052272712644531
Pair: APO-VMC, Correlation: 0.9301671187131946
Pair: APO-WRB, Correlation: 0.9465967325608076
Pair: APO-GWW, Correlation: 0.9737795088511492
Pair: APO-WMT, Correlation: 0.9648404125065172
Pair: APO-WM, Correlation: 0.9447959338395552
Pair: APO-WELL, Correlation: 0.9074819988844793
Pair: APO-WTW, Correlation: 0.921281270349442
Pair: AAPL-AMAT, Correlation: 0.9622698991392763
Pair: AAPL-ACGL, Correlation: 0.9060491192287586
Pair: AAPL-AJG, Correlation: 0.9775129375827468
Pair: AAPL-AIZ, Correlation: 0.9269662921782451
Pair: AAPL-ADP, Correlation: 0.9565423778308652
Pair: AAPL-AZO, Correlation: 0.9620691466169036
Pair: AAPL-AVY, Correlation: 0.9521087185555919
Pair: AAPL-AXON, Correlation: 0.9271121497284812
Pair: AAPL-BLK, Correlation: 0.9458760802531566
Pair: AAPL-BX, Correlation: 0.9713554939870351
Pair: AAPL-BSX, Correlation: 0.903671967980302
Pair: AAPL-AVGO, Correlation: 0.9080484139364674
Pair: AAPL-BR, Correlation: 0.9446150310865209
Pair: AAPL-BRO, Correlation: 0.9813120168346067
Pair: AAPL-BLDR, Correlation: 0.9036563227546268
Pair: AAPL-CDNS, Correlation: 0.9744809908707196
Pair: AAPL-CARR, Correlation: 0.914862491502552
Pair: AAPL-CAT, Correlation: 0.9469641757533647
Pair: AAPL-CBRE, Correlation: 0.9475958451805524
Pair: AAPL-CDW, Correlation: 0.9590152057853143
Pair: AAPL-COR, Correlation: 0.9232835069741371
Pair: AAPL-CMG, Correlation: 0.9534527550579033
Pair: AAPL-CB, Correlation: 0.9307800195416
Pair: AAPL-CHD, Correlation: 0.9308495059641771
Pair: AAPL-CI, Correlation: 0.9049528322204974
Pair: AAPL-CTAS, Correlation: 0.968883447070946
Pair: AAPL-KO, Correlation: 0.9391912292911586
Pair: AAPL-CPRT, Correlation: 0.9761598705097144
Pair: AAPL-CSGP, Correlation: 0.902912501021206
Pair: AAPL-COST, Correlation: 0.9726623801603828
Pair: AAPL-CSX, Correlation: 0.9309216515454404
Pair: AAPL-CMI, Correlation: 0.9495939465231241
Pair: AAPL-DHR, Correlation: 0.9614121159789566
Pair: AAPL-DRI, Correlation: 0.9279629470977884
Pair: AAPL-DECK, Correlation: 0.9080852549598929
Pair: AAPL-DE, Correlation: 0.9696796511068629
Pair: AAPL-DXCM, Correlation: 0.9161818105244653
Pair: AAPL-DFS, Correlation: 0.9092641216127789
Pair: AAPL-DPZ, Correlation: 0.9036917611450356
Pair: AAPL-DOV, Correlation: 0.9647127807247015
Pair: AAPL-DHI, Correlation: 0.9584351210640812
Pair: AAPL-DUK, Correlation: 0.9166145978489237
Pair: AAPL-ETN, Correlation: 0.931596314375029
Pair: AAPL-ELV, Correlation: 0.9509714422508067
Pair: AAPL-EMR, Correlation: 0.9490581822238878
Pair: AAPL-ETR, Correlation: 0.9266441133952469
Pair: AAPL-EFX, Correlation: 0.930590805502555
Pair: AAPL-EQIX, Correlation: 0.9313788443875024
Pair: AAPL-ERIE, Correlation: 0.9089587322566783
Pair: AAPL-EG, Correlation: 0.901488206359367
Pair: AAPL-EXC, Correlation: 0.9130042431405718
Pair: AAPL-EXPD, Correlation: 0.9630759774611409
Pair: AAPL-EXR, Correlation: 0.925979973920542
Pair: AAPL-FDS, Correlation: 0.9630861778159131
Pair: AAPL-FAST, Correlation: 0.9803914791402057
Pair: AAPL-FI, Correlation: 0.9029504763768337
Pair: AAPL-FTNT, Correlation: 0.9753986636126754
Pair: AAPL-GRMN, Correlation: 0.9382463162238689
Pair: AAPL-IT, Correlation: 0.9550960807761583
Pair: AAPL-GEN, Correlation: 0.9139445125591057
Pair: AAPL-GS, Correlation: 0.9362617715156168
Pair: AAPL-HIG, Correlation: 0.9053783233306961
Pair: AAPL-HCA, Correlation: 0.9646483983630056
Pair: AAPL-HSY, Correlation: 0.9268942664431072
Pair: AAPL-HLT, Correlation: 0.9499338043791796
Pair: AAPL-HOLX, Correlation: 0.9357032742295498
Pair: AAPL-HD, Correlation: 0.95539691644632
Pair: AAPL-HON, Correlation: 0.9015654831874773
Pair: AAPL-HPQ, Correlation: 0.921572822601928
Pair: AAPL-HUBB, Correlation: 0.9301916334524274
Pair: AAPL-IEX, Correlation: 0.9136030490817216
Pair: AAPL-IDXX, Correlation: 0.9285979327527516
Pair: AAPL-ITW, Correlation: 0.9485666279191726
Pair: AAPL-IR, Correlation: 0.905462231323091
Pair: AAPL-ICE, Correlation: 0.94398345474927
Pair: AAPL-IPG, Correlation: 0.9020418984001671
Pair: AAPL-INTU, Correlation: 0.9740126947602539
Pair: AAPL-ISRG, Correlation: 0.956549743687785
Pair: AAPL-IQV, Correlation: 0.9275010987689891
Pair: AAPL-JBHT, Correlation: 0.9368964312114977
Pair: AAPL-JBL, Correlation: 0.9215019539215843
Pair: AAPL-J, Correlation: 0.9638081400996117
Pair: AAPL-JCI, Correlation: 0.9221430556112986
Pair: AAPL-JPM, Correlation: 0.9327267422197733
Pair: AAPL-KDP, Correlation: 0.9126735742071769
Pair: AAPL-KEYS, Correlation: 0.9115549175028005
Pair: AAPL-KKR, Correlation: 0.9310211693172764
Pair: AAPL-KLAC, Correlation: 0.9569103105174503
Pair: AAPL-LH, Correlation: 0.9332488379940869
Pair: AAPL-LRCX, Correlation: 0.9688027949544744
Pair: AAPL-LDOS, Correlation: 0.9226535116807276
Pair: AAPL-LEN, Correlation: 0.940423573244946
Pair: AAPL-LII, Correlation: 0.9063868425188176
Pair: AAPL-LIN, Correlation: 0.9825429199088792
Pair: AAPL-LYV, Correlation: 0.923515141901576
Pair: AAPL-LMT, Correlation: 0.9026671396005886
Pair: AAPL-LOW, Correlation: 0.9789911156917955
Pair: AAPL-LULU, Correlation: 0.9224891715936024
Pair: AAPL-MAR, Correlation: 0.9103951297611044
Pair: AAPL-MMC, Correlation: 0.9769904363165992
Pair: AAPL-MLM, Correlation: 0.950114212388946
Pair: AAPL-MAS, Correlation: 0.9269424421561439
Pair: AAPL-MA, Correlation: 0.9523822862869754
Pair: AAPL-MCD, Correlation: 0.9508645013832134
Pair: AAPL-MRK, Correlation: 0.9240114583603624
Pair: AAPL-MET, Correlation: 0.9240682698227634
Pair: AAPL-MTD, Correlation: 0.9423709533945673
Pair: AAPL-MCHP, Correlation: 0.9548263410843246
Pair: AAPL-MU, Correlation: 0.9108424798599783
Pair: AAPL-MSFT, Correlation: 0.9872348641794451
Pair: AAPL-MAA, Correlation: 0.9055286889757794
Pair: AAPL-MOH, Correlation: 0.9694018645377731
Pair: AAPL-MDLZ, Correlation: 0.9304082720835705
Pair: AAPL-MPWR, Correlation: 0.9746118632121532
Pair: AAPL-MNST, Correlation: 0.9189735848431706
Pair: AAPL-MCO, Correlation: 0.96539084383676
Pair: AAPL-MS, Correlation: 0.9634621222577842
Pair: AAPL-MSI, Correlation: 0.9665664782778828
Pair: AAPL-MSCI, Correlation: 0.9689626746624347
Pair: AAPL-NDAQ, Correlation: 0.9611950919959485
Pair: AAPL-NEE, Correlation: 0.9228242635342514
Pair: AAPL-NDSN, Correlation: 0.9532858269928511
Pair: AAPL-NSC, Correlation: 0.9180663150493347
Pair: AAPL-NUE, Correlation: 0.9189874534809881
Pair: AAPL-NVR, Correlation: 0.9553691923403621
Pair: AAPL-NXPI, Correlation: 0.9410338534934173
Pair: AAPL-ORLY, Correlation: 0.964201402179888
Pair: AAPL-ODFL, Correlation: 0.9839677750205382
Pair: AAPL-ON, Correlation: 0.9438822529677948
Pair: AAPL-ORCL, Correlation: 0.9462918795601136
Pair: AAPL-OTIS, Correlation: 0.9003771579252003
Pair: AAPL-PCAR, Correlation: 0.9266053210520713
Pair: AAPL-PKG, Correlation: 0.9286408844590659
Pair: AAPL-PANW, Correlation: 0.9445258340760927
Pair: AAPL-PH, Correlation: 0.9448750629653295
Pair: AAPL-PAYX, Correlation: 0.9630685096738187
Pair: AAPL-PEP, Correlation: 0.9444198965154734
Pair: AAPL-POOL, Correlation: 0.9362988488392135
Pair: AAPL-PG, Correlation: 0.968603944127209
Pair: AAPL-PGR, Correlation: 0.9501086954884457
Pair: AAPL-PLD, Correlation: 0.9508071873905718
Pair: AAPL-PEG, Correlation: 0.9268910935737963
Pair: AAPL-PTC, Correlation: 0.9442065376460514
Pair: AAPL-PSA, Correlation: 0.916373187774752
Pair: AAPL-PHM, Correlation: 0.909938562204694
Pair: AAPL-PWR, Correlation: 0.9227797618692597
Pair: AAPL-QCOM, Correlation: 0.9533265986844421
Pair: AAPL-DGX, Correlation: 0.9336827279261413
Pair: AAPL-RJF, Correlation: 0.9528873093963061
Pair: AAPL-RSG, Correlation: 0.9711771419825029
Pair: AAPL-RMD, Correlation: 0.9268502734835442
Pair: AAPL-ROK, Correlation: 0.9366530196067088
Pair: AAPL-ROL, Correlation: 0.9508443175148906
Pair: AAPL-ROP, Correlation: 0.9418721370662512
Pair: AAPL-SPGI, Correlation: 0.9621955897989971
Pair: AAPL-CRM, Correlation: 0.9089077589720416
Pair: AAPL-STX, Correlation: 0.9215270439469234
Pair: AAPL-NOW, Correlation: 0.9665101688323835
Pair: AAPL-SHW, Correlation: 0.9587235788117334
Pair: AAPL-SNA, Correlation: 0.9130155384158248
Pair: AAPL-SO, Correlation: 0.9605412718909533
Pair: AAPL-STLD, Correlation: 0.9211922542019667
Pair: AAPL-STE, Correlation: 0.955294497356622
Pair: AAPL-SYK, Correlation: 0.9458754768253901
Pair: AAPL-SNPS, Correlation: 0.9767546646616078
Pair: AAPL-TMUS, Correlation: 0.9653545606257489
Pair: AAPL-TEL, Correlation: 0.9394748424261627
Pair: AAPL-TDY, Correlation: 0.9301799128353235
Pair: AAPL-TER, Correlation: 0.9478965063876014
Pair: AAPL-TSLA, Correlation: 0.9281571306618398
Pair: AAPL-TXN, Correlation: 0.9547748106534123
Pair: AAPL-TPL, Correlation: 0.9188737338750221
Pair: AAPL-TMO, Correlation: 0.9638116256929448
Pair: AAPL-TJX, Correlation: 0.945206496705743
Pair: AAPL-TSCO, Correlation: 0.977597451276874
Pair: AAPL-TT, Correlation: 0.9487104847296115
Pair: AAPL-TDG, Correlation: 0.9440375034209659
Pair: AAPL-TRV, Correlation: 0.9113702084885275
Pair: AAPL-TYL, Correlation: 0.9371593556368417
Pair: AAPL-UNP, Correlation: 0.9405016377390875
Pair: AAPL-URI, Correlation: 0.9330085693278969
Pair: AAPL-UNH, Correlation: 0.9697073817408364
Pair: AAPL-VRSK, Correlation: 0.9639848040549908
Pair: AAPL-VRTX, Correlation: 0.93046375938062
Pair: AAPL-VICI, Correlation: 0.9215903722336138
Pair: AAPL-V, Correlation: 0.9374339932955028
Pair: AAPL-VMC, Correlation: 0.9283689822248357
Pair: AAPL-WRB, Correlation: 0.9542963161552059
Pair: AAPL-GWW, Correlation: 0.9331210220383668
Pair: AAPL-WMT, Correlation: 0.959339651057092
Pair: AAPL-WM, Correlation: 0.9651743505588078
Pair: AAPL-WAT, Correlation: 0.9085438410106503
Pair: AAPL-WST, Correlation: 0.951770565388233
Pair: AAPL-WTW, Correlation: 0.9414327752476924
Pair: AAPL-XYL, Correlation: 0.9205026571607535
Pair: AAPL-YUM, Correlation: 0.931472372092018
Pair: AAPL-ZTS, Correlation: 0.9357689260227882
Pair: AMAT-ACGL, Correlation: 0.9221478511864966
Pair: AMAT-ANET, Correlation: 0.9095053245358143
Pair: AMAT-AJG, Correlation: 0.960618947055557
Pair: AMAT-AIZ, Correlation: 0.9138138932514743
Pair: AMAT-ADP, Correlation: 0.9273512507460905
Pair: AMAT-AZO, Correlation: 0.9378370746913866
Pair: AMAT-AVY, Correlation: 0.9514616343279797
Pair: AMAT-AXON, Correlation: 0.9345239481030222
Pair: AMAT-BLK, Correlation: 0.9412946812760575
Pair: AMAT-BX, Correlation: 0.9617418295506371
Pair: AMAT-BKNG, Correlation: 0.9055320929622303
Pair: AMAT-BSX, Correlation: 0.9120812026634137
Pair: AMAT-AVGO, Correlation: 0.941572281618109
Pair: AMAT-BR, Correlation: 0.9317972798620873
Pair: AMAT-BRO, Correlation: 0.9668142438797158
Pair: AMAT-BLDR, Correlation: 0.9286443745643377
Pair: AMAT-CDNS, Correlation: 0.9713311041572354
Pair: AMAT-COF, Correlation: 0.9000407197415758
Pair: AMAT-CARR, Correlation: 0.9068213799105307
Pair: AMAT-CAT, Correlation: 0.9693579167809078
Pair: AMAT-CBOE, Correlation: 0.9033385357594312
Pair: AMAT-CBRE, Correlation: 0.9394150007078089
Pair: AMAT-CDW, Correlation: 0.9473382496560853
Pair: AMAT-COR, Correlation: 0.9250073654647967
Pair: AMAT-CMG, Correlation: 0.9564573958751601
Pair: AMAT-CB, Correlation: 0.9350218176284104
Pair: AMAT-CTAS, Correlation: 0.9641137836022987
Pair: AMAT-KO, Correlation: 0.9038935860790884
Pair: AMAT-CPRT, Correlation: 0.9714516650039653
Pair: AMAT-COST, Correlation: 0.9664355415459875
Pair: AMAT-CSX, Correlation: 0.9077026685777896
Pair: AMAT-CMI, Correlation: 0.9452339859029374
Pair: AMAT-DHR, Correlation: 0.9280103395256483
Pair: AMAT-DRI, Correlation: 0.9183042790930035
Pair: AMAT-DECK, Correlation: 0.9423562192704007
Pair: AMAT-DE, Correlation: 0.9380803439566188
Pair: AMAT-DELL, Correlation: 0.9173727969987303
Pair: AMAT-DFS, Correlation: 0.9173619628694032
Pair: AMAT-DOV, Correlation: 0.9586320045009771
Pair: AMAT-DHI, Correlation: 0.9692268559102206
Pair: AMAT-ETN, Correlation: 0.9643231391533943
Pair: AMAT-ELV, Correlation: 0.9222687093159656
Pair: AMAT-EMR, Correlation: 0.9606347202120171
Pair: AMAT-EFX, Correlation: 0.9263961579755756
Pair: AMAT-EQIX, Correlation: 0.9014081636228468
Pair: AMAT-ERIE, Correlation: 0.9147336388171433
Pair: AMAT-EXPD, Correlation: 0.9470993198961134
Pair: AMAT-FDS, Correlation: 0.916628534545445
Pair: AMAT-FICO, Correlation: 0.9047514801086641
Pair: AMAT-FAST, Correlation: 0.9638700393909032
Pair: AMAT-FTNT, Correlation: 0.9406805734637058
Pair: AMAT-GRMN, Correlation: 0.9474906151969082
Pair: AMAT-IT, Correlation: 0.9607151995297009
Pair: AMAT-GS, Correlation: 0.9584998840208131
Pair: AMAT-HIG, Correlation: 0.9331958711735779
Pair: AMAT-HCA, Correlation: 0.9621503484371586
Pair: AMAT-HLT, Correlation: 0.9648930397223396
Pair: AMAT-HD, Correlation: 0.9337204148848298
Pair: AMAT-HPQ, Correlation: 0.9162120975409074
Pair: AMAT-HUBB, Correlation: 0.9454054497772231
Pair: AMAT-IDXX, Correlation: 0.9112793011173429
Pair: AMAT-ITW, Correlation: 0.9331064627642974
Pair: AMAT-IR, Correlation: 0.9587380339482968
Pair: AMAT-ICE, Correlation: 0.9346869173228316
Pair: AMAT-INTU, Correlation: 0.9687094747781535
Pair: AMAT-ISRG, Correlation: 0.9577429283093932
Pair: AMAT-IRM, Correlation: 0.9128067648391491
Pair: AMAT-JBHT, Correlation: 0.906333504772785
Pair: AMAT-JBL, Correlation: 0.9372761313651894
Pair: AMAT-J, Correlation: 0.9477236376039068
Pair: AMAT-JCI, Correlation: 0.9219103380790381
Pair: AMAT-JPM, Correlation: 0.9562157038224295
Pair: AMAT-KKR, Correlation: 0.954827607879252
Pair: AMAT-KLAC, Correlation: 0.9804121988946006
Pair: AMAT-LH, Correlation: 0.915462586093231
Pair: AMAT-LRCX, Correlation: 0.9914734775988241
Pair: AMAT-LDOS, Correlation: 0.9169065517165369
Pair: AMAT-LEN, Correlation: 0.9617433324207277
Pair: AMAT-LII, Correlation: 0.9318231075990518
Pair: AMAT-LLY, Correlation: 0.9207363903635536
Pair: AMAT-LIN, Correlation: 0.9732386640720339
Pair: AMAT-LYV, Correlation: 0.9061819132773801
Pair: AMAT-L, Correlation: 0.9089625607821564
Pair: AMAT-LOW, Correlation: 0.951320897544751
Pair: AMAT-MAR, Correlation: 0.928276968017718
Pair: AMAT-MMC, Correlation: 0.9585678306842502
Pair: AMAT-MLM, Correlation: 0.9739908384159549
Pair: AMAT-MAS, Correlation: 0.9280463251006431
Pair: AMAT-MA, Correlation: 0.928712824811812
Pair: AMAT-MCD, Correlation: 0.9143669616064927
Pair: AMAT-MRK, Correlation: 0.9100193471382854
Pair: AMAT-META, Correlation: 0.9153947057477122
Pair: AMAT-MET, Correlation: 0.9274674960043969
Pair: AMAT-MTD, Correlation: 0.9117356878991605
Pair: AMAT-MCHP, Correlation: 0.952741157042737
Pair: AMAT-MU, Correlation: 0.9492902812501907
Pair: AMAT-MSFT, Correlation: 0.9790758986717139
Pair: AMAT-MOH, Correlation: 0.9291109964416097
Pair: AMAT-MPWR, Correlation: 0.9784211873096267
Pair: AMAT-MCO, Correlation: 0.9499499150853449
Pair: AMAT-MS, Correlation: 0.9559965540868289
Pair: AMAT-MSI, Correlation: 0.958113764675719
Pair: AMAT-MSCI, Correlation: 0.9344598687668239
Pair: AMAT-NDAQ, Correlation: 0.9318165816510559
Pair: AMAT-NTAP, Correlation: 0.9275632647988288
Pair: AMAT-NWS, Correlation: 0.9103244275992661
Pair: AMAT-NDSN, Correlation: 0.9279342394667911
Pair: AMAT-NUE, Correlation: 0.9195880604869707
Pair: AMAT-NVR, Correlation: 0.9641129349569094
Pair: AMAT-NXPI, Correlation: 0.9607753565314774
Pair: AMAT-ORLY, Correlation: 0.9440294366727002
Pair: AMAT-ODFL, Correlation: 0.9630273634847694
Pair: AMAT-ON, Correlation: 0.9123314578642341
Pair: AMAT-ORCL, Correlation: 0.9540427672039841
Pair: AMAT-OTIS, Correlation: 0.9140990562709049
Pair: AMAT-PCAR, Correlation: 0.9499816716836073
Pair: AMAT-PKG, Correlation: 0.9345957213792923
Pair: AMAT-PANW, Correlation: 0.9442922421247466
Pair: AMAT-PH, Correlation: 0.9684279334050403
Pair: AMAT-PAYX, Correlation: 0.9323501950028578
Pair: AMAT-PNR, Correlation: 0.9217578814021536
Pair: AMAT-PEP, Correlation: 0.9016607794707491
Pair: AMAT-POOL, Correlation: 0.9011440548327223
Pair: AMAT-PG, Correlation: 0.9344506274591526
Pair: AMAT-PGR, Correlation: 0.9481651289249404
Pair: AMAT-PLD, Correlation: 0.9098933572135985
Pair: AMAT-PEG, Correlation: 0.9076625183506083
Pair: AMAT-PTC, Correlation: 0.9522940391936583
Pair: AMAT-PHM, Correlation: 0.941944390246562
Pair: AMAT-PWR, Correlation: 0.934071444088171
Pair: AMAT-QCOM, Correlation: 0.9481301518843911
Pair: AMAT-DGX, Correlation: 0.9036748846880046
Pair: AMAT-RJF, Correlation: 0.9473537335713887
Pair: AMAT-RSG, Correlation: 0.9637014752318137
Pair: AMAT-ROK, Correlation: 0.9135857646137104
Pair: AMAT-ROL, Correlation: 0.9229294324812418
Pair: AMAT-ROP, Correlation: 0.9218847229527701
Pair: AMAT-SPGI, Correlation: 0.9364884850424525
Pair: AMAT-STX, Correlation: 0.936008283638995
Pair: AMAT-NOW, Correlation: 0.9515134873220211
Pair: AMAT-SHW, Correlation: 0.9452048327013496
Pair: AMAT-SNA, Correlation: 0.9082531251249206
Pair: AMAT-SO, Correlation: 0.9270578090452715
Pair: AMAT-STLD, Correlation: 0.9312594571161278
Pair: AMAT-STE, Correlation: 0.9202054000381659
Pair: AMAT-SYK, Correlation: 0.9461007712434765
Pair: AMAT-SNPS, Correlation: 0.9730779590764833
Pair: AMAT-TMUS, Correlation: 0.9385340981491589
Pair: AMAT-TEL, Correlation: 0.9353169504146812
Pair: AMAT-TER, Correlation: 0.935115424094511
Pair: AMAT-TXN, Correlation: 0.9322797773858544
Pair: AMAT-TMO, Correlation: 0.921649749964824
Pair: AMAT-TJX, Correlation: 0.9399210331539705
Pair: AMAT-TSCO, Correlation: 0.9581302817061403
Pair: AMAT-TT, Correlation: 0.96948478103905
Pair: AMAT-TDG, Correlation: 0.959682936658737
Pair: AMAT-TRV, Correlation: 0.9152345944750769
Pair: AMAT-TYL, Correlation: 0.9146676048176556
Pair: AMAT-UNP, Correlation: 0.9120963230658433
Pair: AMAT-URI, Correlation: 0.962920616208381
Pair: AMAT-UNH, Correlation: 0.9261825083215953
Pair: AMAT-VRSK, Correlation: 0.934472640948809
Pair: AMAT-VRTX, Correlation: 0.9078510790258877
Pair: AMAT-V, Correlation: 0.9163724594301984
Pair: AMAT-VMC, Correlation: 0.9456418098234838
Pair: AMAT-WRB, Correlation: 0.9373112587916057
Pair: AMAT-GWW, Correlation: 0.9363052492498021
Pair: AMAT-WMT, Correlation: 0.9410682426371039
Pair: AMAT-WM, Correlation: 0.9541112724778913
Pair: AMAT-WST, Correlation: 0.9183729143125925
Pair: AMAT-WTW, Correlation: 0.9271048211967228
Pair: AMAT-XYL, Correlation: 0.9353865777606242
Pair: AMAT-YUM, Correlation: 0.9110297969587662
Pair: APTV-CZR, Correlation: 0.9235306159980822
Pair: APTV-KMX, Correlation: 0.9179684396951973
Pair: APTV-CRL, Correlation: 0.9042442167957357
Pair: APTV-EPAM, Correlation: 0.9005097742259627
Pair: APTV-EL, Correlation: 0.9193614620313297
Pair: APTV-NKE, Correlation: 0.9272255324229003
Pair: APTV-SWKS, Correlation: 0.9151148266354076
Pair: APTV-TROW, Correlation: 0.922557323114857
Pair: ACGL-ANET, Correlation: 0.9580651069491026
Pair: ACGL-AJG, Correlation: 0.9631612353536123
Pair: ACGL-ADP, Correlation: 0.9124372046853032
Pair: ACGL-AZO, Correlation: 0.9551023413387499
Pair: ACGL-AXON, Correlation: 0.9318100836661587
Pair: ACGL-BKNG, Correlation: 0.9367897809308777
Pair: ACGL-BSX, Correlation: 0.939495100705183
Pair: ACGL-AVGO, Correlation: 0.9618546287154016
Pair: ACGL-BRO, Correlation: 0.9429023316943059
Pair: ACGL-BLDR, Correlation: 0.9517953361979458
Pair: ACGL-CDNS, Correlation: 0.9445676054962089
Pair: ACGL-CAT, Correlation: 0.9462898492846771
Pair: ACGL-CBOE, Correlation: 0.9364995117374442
Pair: ACGL-COR, Correlation: 0.9613603285131994
Pair: ACGL-CMG, Correlation: 0.9231577853713282
Pair: ACGL-CB, Correlation: 0.9557472493373818
Pair: ACGL-CI, Correlation: 0.9180305278719878
Pair: ACGL-CTAS, Correlation: 0.9621546681976534
Pair: ACGL-KO, Correlation: 0.9107473731247546
Pair: ACGL-CEG, Correlation: 0.9001739308024249
Pair: ACGL-CPRT, Correlation: 0.9343017458955427
Pair: ACGL-COST, Correlation: 0.9524358026302883
Pair: ACGL-CMI, Correlation: 0.9096966392095381
Pair: ACGL-DECK, Correlation: 0.9365022542591555
Pair: ACGL-DHI, Correlation: 0.9580214929257065
Pair: ACGL-ETN, Correlation: 0.9631249983169373
Pair: ACGL-EMR, Correlation: 0.9009636378493665
Pair: ACGL-ERIE, Correlation: 0.9469562260731699
Pair: ACGL-EG, Correlation: 0.9493974495309738
Pair: ACGL-FICO, Correlation: 0.9491637506931715
Pair: ACGL-FAST, Correlation: 0.9115730388435827
Pair: ACGL-IT, Correlation: 0.9607987616648632
Pair: ACGL-GD, Correlation: 0.9135218357980944
Pair: ACGL-GS, Correlation: 0.9113706182536441
Pair: ACGL-HIG, Correlation: 0.9578740167079065
Pair: ACGL-HCA, Correlation: 0.9405703777085911
Pair: ACGL-HLT, Correlation: 0.9341569721212777
Pair: ACGL-HWM, Correlation: 0.9406947641043178
Pair: ACGL-HUBB, Correlation: 0.9767955639129606
Pair: ACGL-IR, Correlation: 0.9333046664380519
Pair: ACGL-ISRG, Correlation: 0.9024707101237309
Pair: ACGL-IRM, Correlation: 0.9564487591747876
Pair: ACGL-JBL, Correlation: 0.9519231041742453
Pair: ACGL-JPM, Correlation: 0.9259579869943894
Pair: ACGL-KKR, Correlation: 0.9201953110139139
Pair: ACGL-KLAC, Correlation: 0.9544329595783558
Pair: ACGL-LRCX, Correlation: 0.9099409035466399
Pair: ACGL-LEN, Correlation: 0.9556224666669211
Pair: ACGL-LII, Correlation: 0.9339759153639061
Pair: ACGL-LLY, Correlation: 0.9592430076186873
Pair: ACGL-LIN, Correlation: 0.9470064097954295
Pair: ACGL-L, Correlation: 0.925353072824304
Pair: ACGL-MPC, Correlation: 0.9577881978201765
Pair: ACGL-MAR, Correlation: 0.9408264760946495
Pair: ACGL-MMC, Correlation: 0.9474022024870566
Pair: ACGL-MLM, Correlation: 0.9506135720278748
Pair: ACGL-MCK, Correlation: 0.9368576382244792
Pair: ACGL-MRK, Correlation: 0.9480709569865613
Pair: ACGL-MET, Correlation: 0.9081859371439894
Pair: ACGL-MSFT, Correlation: 0.9210430727473775
Pair: ACGL-MPWR, Correlation: 0.9313001377263052
Pair: ACGL-MSI, Correlation: 0.9629186031315199
Pair: ACGL-NUE, Correlation: 0.9140019224506478
Pair: ACGL-NVR, Correlation: 0.9507880894225752
Pair: ACGL-ORLY, Correlation: 0.964835301551405
Pair: ACGL-ODFL, Correlation: 0.9143303038459046
Pair: ACGL-OKE, Correlation: 0.9263658882323341
Pair: ACGL-ORCL, Correlation: 0.9616283818970097
Pair: ACGL-PCAR, Correlation: 0.9672228262447926
Pair: ACGL-PKG, Correlation: 0.9241896369677838
Pair: ACGL-PANW, Correlation: 0.954300121943598
Pair: ACGL-PH, Correlation: 0.9655789237115668
Pair: ACGL-PSX, Correlation: 0.904409228214634
Pair: ACGL-PFG, Correlation: 0.9074237502104692
Pair: ACGL-PG, Correlation: 0.9002870548717878
Pair: ACGL-PGR, Correlation: 0.9646777337341671
Pair: ACGL-PEG, Correlation: 0.9027856663988435
Pair: ACGL-PTC, Correlation: 0.909844136404443
Pair: ACGL-PHM, Correlation: 0.9634822461972252
Pair: ACGL-PWR, Correlation: 0.9498288355965094
Pair: ACGL-RJF, Correlation: 0.9224451444115214
Pair: ACGL-RSG, Correlation: 0.9555803359877507
Pair: ACGL-SNA, Correlation: 0.9293506083075641
Pair: ACGL-SO, Correlation: 0.9301629405997351
Pair: ACGL-STLD, Correlation: 0.9516513520751129
Pair: ACGL-SYK, Correlation: 0.9228634165013616
Pair: ACGL-SNPS, Correlation: 0.9426447762990389
Pair: ACGL-TMUS, Correlation: 0.9104325217294749
Pair: ACGL-TJX, Correlation: 0.9593632707937826
Pair: ACGL-TSCO, Correlation: 0.9287390137432892
Pair: ACGL-TT, Correlation: 0.952809123139044
Pair: ACGL-TDG, Correlation: 0.9713894450917093
Pair: ACGL-TRV, Correlation: 0.9389611339650709
Pair: ACGL-URI, Correlation: 0.9573387411619663
Pair: ACGL-VLO, Correlation: 0.9337732433596051
Pair: ACGL-VLTO, Correlation: 0.9115229320915005
Pair: ACGL-VRSK, Correlation: 0.9052175967031946
Pair: ACGL-VRTX, Correlation: 0.943956891299056
Pair: ACGL-VMC, Correlation: 0.9357437183550769
Pair: ACGL-WRB, Correlation: 0.9458456198291537
Pair: ACGL-GWW, Correlation: 0.9651605808961029
Pair: ACGL-WMT, Correlation: 0.9276133303260317
Pair: ACGL-WM, Correlation: 0.9314839855497038
Pair: ACGL-WELL, Correlation: 0.9168501328759728
Pair: ADM-CF, Correlation: 0.915918090710431
Pair: ADM-CVX, Correlation: 0.9000492210375931
Pair: ADM-DE, Correlation: 0.9249086362015532
Pair: ADM-ELV, Correlation: 0.9226685896139019
Pair: ADM-EXC, Correlation: 0.9060634141654305
Pair: ADM-EXR, Correlation: 0.9027291885307523
Pair: ADM-GIS, Correlation: 0.9057203248049916
Pair: ADM-GPC, Correlation: 0.944493909199374
Pair: ADM-HSY, Correlation: 0.9415999875071783
Pair: ADM-IPG, Correlation: 0.917495404839907
Pair: ADM-JBHT, Correlation: 0.9189496813720247
Pair: ADM-LKQ, Correlation: 0.902822538984927
Pair: ADM-MOH, Correlation: 0.9148391156735309
Pair: ADM-ON, Correlation: 0.906625149990172
Pair: ADM-PAYX, Correlation: 0.9091072733038317
Pair: ADM-PEP, Correlation: 0.9164846157134325
Pair: ADM-PFG, Correlation: 0.9033892669738058
Pair: ADM-RJF, Correlation: 0.9020290018773853
Pair: ADM-TMO, Correlation: 0.9008208286383219
Pair: ADM-UPS, Correlation: 0.9221338402697884
Pair: ADM-UNH, Correlation: 0.919600800740676
Pair: ANET-AJG, Correlation: 0.9342527392733236
Pair: ANET-AZO, Correlation: 0.9035695725376418
Pair: ANET-AXON, Correlation: 0.9449630054445003
Pair: ANET-BKNG, Correlation: 0.9528381956112126
Pair: ANET-BSX, Correlation: 0.9316078070220036
Pair: ANET-AVGO, Correlation: 0.9892244203783462
Pair: ANET-BRO, Correlation: 0.9291468061293023
Pair: ANET-BLDR, Correlation: 0.9517759751419258
Pair: ANET-CDNS, Correlation: 0.9204262677584989
Pair: ANET-CAT, Correlation: 0.9491126634191953
Pair: ANET-CBOE, Correlation: 0.93106972887237
Pair: ANET-COR, Correlation: 0.9388424396073088
Pair: ANET-CMG, Correlation: 0.9063770418094392
Pair: ANET-CB, Correlation: 0.9388199715832731
Pair: ANET-CTAS, Correlation: 0.9566829580234353
Pair: ANET-CEG, Correlation: 0.9564269165728848
Pair: ANET-COST, Correlation: 0.9518306862324986
Pair: ANET-DECK, Correlation: 0.9673512757860794
Pair: ANET-DELL, Correlation: 0.954882106803953
Pair: ANET-DHI, Correlation: 0.9476808358690886
Pair: ANET-ETN, Correlation: 0.9747937403368331
Pair: ANET-ERIE, Correlation: 0.9339460478788786
Pair: ANET-FICO, Correlation: 0.9723773126229757
Pair: ANET-IT, Correlation: 0.9457598337061606
Pair: ANET-GD, Correlation: 0.9138872319825306
Pair: ANET-GDDY, Correlation: 0.9005476076730504
Pair: ANET-GS, Correlation: 0.9072386101771859
Pair: ANET-HIG, Correlation: 0.954467653376007
Pair: ANET-HCA, Correlation: 0.9200536415755064
Pair: ANET-HLT, Correlation: 0.946996538801844
Pair: ANET-HWM, Correlation: 0.9575980375077984
Pair: ANET-HUBB, Correlation: 0.9649637668129453
Pair: ANET-IBM, Correlation: 0.9183222453162546
Pair: ANET-IR, Correlation: 0.9513464634066446
Pair: ANET-IRM, Correlation: 0.974905086266154
Pair: ANET-JBL, Correlation: 0.9251398105410084
Pair: ANET-JPM, Correlation: 0.9133789572361211
Pair: ANET-KKR, Correlation: 0.9549824274293913
Pair: ANET-KLAC, Correlation: 0.9553376952036007
Pair: ANET-LEN, Correlation: 0.9485088831012304
Pair: ANET-LII, Correlation: 0.9394836109362766
Pair: ANET-LLY, Correlation: 0.9752097458168985
Pair: ANET-LIN, Correlation: 0.9163084147677606
Pair: ANET-L, Correlation: 0.9172658868532448
Pair: ANET-MPC, Correlation: 0.927148552675278
Pair: ANET-MAR, Correlation: 0.9356764465302259
Pair: ANET-MMC, Correlation: 0.9072654308051216
Pair: ANET-MLM, Correlation: 0.9254363952459711
Pair: ANET-MCK, Correlation: 0.9010889878703308
Pair: ANET-MPWR, Correlation: 0.9300079670359619
Pair: ANET-MSI, Correlation: 0.949526448751203
Pair: ANET-NTAP, Correlation: 0.9087896035342223
Pair: ANET-NRG, Correlation: 0.926114708861822
Pair: ANET-NVDA, Correlation: 0.9660541628317053
Pair: ANET-NVR, Correlation: 0.9369867943259836
Pair: ANET-ORLY, Correlation: 0.9237457549472068
Pair: ANET-OKE, Correlation: 0.900658374628377
Pair: ANET-ORCL, Correlation: 0.9609089621150758
Pair: ANET-PCAR, Correlation: 0.9500963116449719
Pair: ANET-PKG, Correlation: 0.9274598250830729
Pair: ANET-PANW, Correlation: 0.9624636284675122
Pair: ANET-PH, Correlation: 0.9697891544637217
Pair: ANET-PGR, Correlation: 0.9643271280891604
Pair: ANET-PHM, Correlation: 0.9708719003283595
Pair: ANET-PWR, Correlation: 0.9614027850355783
Pair: ANET-RSG, Correlation: 0.9362534296878683
Pair: ANET-SNA, Correlation: 0.9048045378982088
Pair: ANET-STLD, Correlation: 0.9203474142259899
Pair: ANET-SNPS, Correlation: 0.9179233098660952
Pair: ANET-TJX, Correlation: 0.9400564408736155
Pair: ANET-TT, Correlation: 0.9631109200603706
Pair: ANET-TDG, Correlation: 0.9606492831930191
Pair: ANET-TRV, Correlation: 0.9341903789450899
Pair: ANET-URI, Correlation: 0.9710330043183129
Pair: ANET-VLTO, Correlation: 0.9074697169138327
Pair: ANET-VRTX, Correlation: 0.920233593381287
Pair: ANET-VMC, Correlation: 0.9096087885119435
Pair: ANET-WRB, Correlation: 0.9058456400602003
Pair: ANET-GWW, Correlation: 0.9671498351403567
Pair: ANET-WMT, Correlation: 0.9126946696998234
Pair: AJG-AIZ, Correlation: 0.9130544971958621
Pair: AJG-ADP, Correlation: 0.9598212083964868
Pair: AJG-AZO, Correlation: 0.9865268795925776
Pair: AJG-AVY, Correlation: 0.9327988606293122
Pair: AJG-AXON, Correlation: 0.9516248202220524
Pair: AJG-BLK, Correlation: 0.9183386087734801
Pair: AJG-BX, Correlation: 0.9620040829770743
Pair: AJG-BKNG, Correlation: 0.9063982999422406
Pair: AJG-BSX, Correlation: 0.9291558085966581
Pair: AJG-AVGO, Correlation: 0.9489151449975145
Pair: AJG-BR, Correlation: 0.9365720400705976
Pair: AJG-BRO, Correlation: 0.9867238939409365
Pair: AJG-BLDR, Correlation: 0.9482789335634526
Pair: AJG-CDNS, Correlation: 0.9865240651807018
Pair: AJG-CAT, Correlation: 0.971113107325963
Pair: AJG-CBOE, Correlation: 0.9224847186528963
Pair: AJG-CBRE, Correlation: 0.9290459518024923
Pair: AJG-CDW, Correlation: 0.9493023698148081
Pair: AJG-COR, Correlation: 0.9582601936741718
Pair: AJG-CVX, Correlation: 0.9062573903168275
Pair: AJG-CMG, Correlation: 0.9598581748030919
Pair: AJG-CB, Correlation: 0.9569207601656703
Pair: AJG-CHD, Correlation: 0.9087592419198931
Pair: AJG-CI, Correlation: 0.9259114131166785
Pair: AJG-CTAS, Correlation: 0.9872060324031391
Pair: AJG-KO, Correlation: 0.941394918022772
Pair: AJG-CEG, Correlation: 0.9085507092570638
Pair: AJG-CPRT, Correlation: 0.9782281534001883
Pair: AJG-COST, Correlation: 0.9853656753099983
Pair: AJG-CSX, Correlation: 0.9061395108323324
Pair: AJG-CMI, Correlation: 0.9477512090009073
Pair: AJG-DHR, Correlation: 0.9227507245783911
Pair: AJG-DRI, Correlation: 0.9311570280380845
Pair: AJG-DECK, Correlation: 0.9463968748858824
Pair: AJG-DE, Correlation: 0.9512166223435392
Pair: AJG-DFS, Correlation: 0.9086596335099822
Pair: AJG-DOV, Correlation: 0.9476985935561132
Pair: AJG-DHI, Correlation: 0.9745423300524967
Pair: AJG-DUK, Correlation: 0.9075415308395989
Pair: AJG-ETN, Correlation: 0.967152329774886
Pair: AJG-ELV, Correlation: 0.9482125279947092
Pair: AJG-EMR, Correlation: 0.9499895134485784
Pair: AJG-ETR, Correlation: 0.920014076019008
Pair: AJG-EFX, Correlation: 0.9050781788130016
Pair: AJG-EQIX, Correlation: 0.9011123392957795
Pair: AJG-ERIE, Correlation: 0.945751003705153
Pair: AJG-EG, Correlation: 0.9333942486865368
Pair: AJG-EXC, Correlation: 0.9113698893941933
Pair: AJG-EXPD, Correlation: 0.9382129929895361
Pair: AJG-FDS, Correlation: 0.9457852482727664
Pair: AJG-FICO, Correlation: 0.9349899593466448
Pair: AJG-FAST, Correlation: 0.9725412403542535
Pair: AJG-FI, Correlation: 0.9066608411261668
Pair: AJG-FTNT, Correlation: 0.9585891244163434
Pair: AJG-GRMN, Correlation: 0.9170601588468105
Pair: AJG-IT, Correlation: 0.9832553626841802
Pair: AJG-GPC, Correlation: 0.9103323059360642
Pair: AJG-GS, Correlation: 0.9426620859338578
Pair: AJG-HIG, Correlation: 0.9423316145815701
Pair: AJG-HCA, Correlation: 0.9743398482439539
Pair: AJG-HSY, Correlation: 0.9177073097302225
Pair: AJG-HLT, Correlation: 0.971840779929057
Pair: AJG-HOLX, Correlation: 0.9013987894433271
Pair: AJG-HD, Correlation: 0.933817102943811
Pair: AJG-HPQ, Correlation: 0.9005015692967315
Pair: AJG-HUBB, Correlation: 0.9735010858251016
Pair: AJG-ITW, Correlation: 0.9348402428788571
Pair: AJG-IR, Correlation: 0.9529561494322005
Pair: AJG-ICE, Correlation: 0.9267763869067718
Pair: AJG-INTU, Correlation: 0.9573275740269365
Pair: AJG-ISRG, Correlation: 0.9473131993131386
Pair: AJG-IRM, Correlation: 0.9441934482283537
Pair: AJG-JBHT, Correlation: 0.9133214258026737
Pair: AJG-JBL, Correlation: 0.9611904604788564
Pair: AJG-J, Correlation: 0.9474752500990706
Pair: AJG-JCI, Correlation: 0.9059245947425731
Pair: AJG-JPM, Correlation: 0.9414114240701533
Pair: AJG-KKR, Correlation: 0.9475717360417168
Pair: AJG-KLAC, Correlation: 0.9774399194416117
Pair: AJG-LRCX, Correlation: 0.961464026608864
Pair: AJG-LDOS, Correlation: 0.921163786328181
Pair: AJG-LEN, Correlation: 0.9592221379192796
Pair: AJG-LII, Correlation: 0.9275383726056812
Pair: AJG-LLY, Correlation: 0.9484722724583811
Pair: AJG-LIN, Correlation: 0.9915503982164735
Pair: AJG-LMT, Correlation: 0.9092518061753792
Pair: AJG-L, Correlation: 0.9164940721953766
Pair: AJG-LOW, Correlation: 0.958322702749544
Pair: AJG-MPC, Correlation: 0.9283068607098898
Pair: AJG-MAR, Correlation: 0.9377407285738901
Pair: AJG-MMC, Correlation: 0.9849757473851545
Pair: AJG-MLM, Correlation: 0.9640917718087451
Pair: AJG-MAS, Correlation: 0.9120156774802164
Pair: AJG-MA, Correlation: 0.940349497664495
Pair: AJG-MCD, Correlation: 0.9465309186963952
Pair: AJG-MCK, Correlation: 0.9266965791151706
Pair: AJG-MRK, Correlation: 0.9544174657234862
Pair: AJG-MET, Correlation: 0.9407134124657113
Pair: AJG-MTD, Correlation: 0.9026791179157396
Pair: AJG-MCHP, Correlation: 0.9356267036689683
Pair: AJG-MSFT, Correlation: 0.9778835115682224
Pair: AJG-MOH, Correlation: 0.9564315113401826
Pair: AJG-MDLZ, Correlation: 0.9256237086397492
Pair: AJG-MPWR, Correlation: 0.9739686712076641
Pair: AJG-MNST, Correlation: 0.9044250727631648
Pair: AJG-MCO, Correlation: 0.9446247281405599
Pair: AJG-MS, Correlation: 0.9485465142801206
Pair: AJG-MSI, Correlation: 0.9884938036882712
Pair: AJG-MSCI, Correlation: 0.9330636615560198
Pair: AJG-NDAQ, Correlation: 0.9387580915597936
Pair: AJG-NTAP, Correlation: 0.9019839223971647
Pair: AJG-NDSN, Correlation: 0.9319681254122898
Pair: AJG-NOC, Correlation: 0.906601598002764
Pair: AJG-NUE, Correlation: 0.9506691828985117
Pair: AJG-NVR, Correlation: 0.9648366167042188
Pair: AJG-NXPI, Correlation: 0.92652450499013
Pair: AJG-ORLY, Correlation: 0.987762375913216
Pair: AJG-ODFL, Correlation: 0.9790000455040213
Pair: AJG-ON, Correlation: 0.951665235845345
Pair: AJG-OKE, Correlation: 0.9072277157798063
Pair: AJG-ORCL, Correlation: 0.9725454010227795
Pair: AJG-PCAR, Correlation: 0.9638835532494228
Pair: AJG-PKG, Correlation: 0.9371537835955943
Pair: AJG-PANW, Correlation: 0.9736231739174654
Pair: AJG-PH, Correlation: 0.9728997779140416
Pair: AJG-PAYX, Correlation: 0.9544920755093094
Pair: AJG-PEP, Correlation: 0.9363087759748702
Pair: AJG-PFG, Correlation: 0.9123429935464247
Pair: AJG-PG, Correlation: 0.9537227743626627
Pair: AJG-PGR, Correlation: 0.9810733897344309
Pair: AJG-PLD, Correlation: 0.91037359045861
Pair: AJG-PEG, Correlation: 0.9274202790625032
Pair: AJG-PTC, Correlation: 0.9479913021741669
Pair: AJG-PSA, Correlation: 0.9014261483780794
Pair: AJG-PHM, Correlation: 0.9485095334739676
Pair: AJG-PWR, Correlation: 0.964488097402432
Pair: AJG-QCOM, Correlation: 0.9154826911804959
Pair: AJG-DGX, Correlation: 0.9083966857715183
Pair: AJG-RJF, Correlation: 0.9634447111890189
Pair: AJG-RSG, Correlation: 0.9865943553875332
Pair: AJG-ROK, Correlation: 0.9029464762035825
Pair: AJG-ROL, Correlation: 0.9393311808312557
Pair: AJG-ROP, Correlation: 0.9276907007091071
Pair: AJG-SPGI, Correlation: 0.9324734176350423
Pair: AJG-STX, Correlation: 0.9008182891310321
Pair: AJG-NOW, Correlation: 0.9403699237948873
Pair: AJG-SHW, Correlation: 0.9358679252463968
Pair: AJG-SNA, Correlation: 0.9314087486967662
Pair: AJG-SO, Correlation: 0.963848159065659
Pair: AJG-STLD, Correlation: 0.9652621373145526
Pair: AJG-STE, Correlation: 0.9237525751785545
Pair: AJG-SYK, Correlation: 0.9474879626227677
Pair: AJG-SNPS, Correlation: 0.9867070492080585
Pair: AJG-TMUS, Correlation: 0.9584495347456452
Pair: AJG-TEL, Correlation: 0.9154902508601108
Pair: AJG-TXN, Correlation: 0.9267526224445447
Pair: AJG-TPL, Correlation: 0.9449950095496494
Pair: AJG-TMO, Correlation: 0.9272832736345008
Pair: AJG-TJX, Correlation: 0.9658302218479168
Pair: AJG-TSCO, Correlation: 0.9788527216480434
Pair: AJG-TT, Correlation: 0.9694939420502523
Pair: AJG-TDG, Correlation: 0.9720557102703341
Pair: AJG-TRV, Correlation: 0.937414834812169
Pair: AJG-UNP, Correlation: 0.917275349263428
Pair: AJG-URI, Correlation: 0.9653234221078513
Pair: AJG-UNH, Correlation: 0.9608855077444246
Pair: AJG-VLO, Correlation: 0.9169138927395166
Pair: AJG-VRSK, Correlation: 0.9522116313557646
Pair: AJG-VRTX, Correlation: 0.9543137599489825
Pair: AJG-VICI, Correlation: 0.9134178511007225
Pair: AJG-V, Correlation: 0.9256680111651517
Pair: AJG-VMC, Correlation: 0.9397034863538667
Pair: AJG-WRB, Correlation: 0.9758355429338488
Pair: AJG-GWW, Correlation: 0.974756583863646
Pair: AJG-WMT, Correlation: 0.9628704374609164
Pair: AJG-WM, Correlation: 0.9716995200109954
Pair: AJG-WELL, Correlation: 0.9011981975337314
Pair: AJG-WTW, Correlation: 0.9357714387152671
Pair: AJG-XYL, Correlation: 0.9065721951851724
Pair: AJG-YUM, Correlation: 0.9275669716446249
Pair: AIZ-ATO, Correlation: 0.948594601902906
Pair: AIZ-ADSK, Correlation: 0.91708948843918
Pair: AIZ-ADP, Correlation: 0.9642304199307402
Pair: AIZ-AZO, Correlation: 0.9075803183858503
Pair: AIZ-AVB, Correlation: 0.9300362185996637
Pair: AIZ-AVY, Correlation: 0.9655962941370972
Pair: AIZ-BAC, Correlation: 0.9397012740472437
Pair: AIZ-BDX, Correlation: 0.9044005392484127
Pair: AIZ-BLK, Correlation: 0.9589271142657285
Pair: AIZ-BX, Correlation: 0.9352073995227849
Pair: AIZ-BKNG, Correlation: 0.9201332193825997
Pair: AIZ-BSX, Correlation: 0.9421841573367373
Pair: AIZ-BR, Correlation: 0.9698893944069276
Pair: AIZ-BRO, Correlation: 0.9439028311106805
Pair: AIZ-CPT, Correlation: 0.9305300577213604
Pair: AIZ-COF, Correlation: 0.9272827582238339
Pair: AIZ-CBOE, Correlation: 0.936328300162659
Pair: AIZ-CBRE, Correlation: 0.9524773765739745
Pair: AIZ-CDW, Correlation: 0.9454660004289851
Pair: AIZ-CE, Correlation: 0.939066624994917
Pair: AIZ-CNC, Correlation: 0.9175625300731077
Pair: AIZ-SCHW, Correlation: 0.9301566084338451
Pair: AIZ-CB, Correlation: 0.9561797262991687
Pair: AIZ-CHD, Correlation: 0.9616879586180777
Pair: AIZ-CI, Correlation: 0.9409080383094677
Pair: AIZ-CINF, Correlation: 0.9728310718823151
Pair: AIZ-CTAS, Correlation: 0.9278191505991336
Pair: AIZ-CSCO, Correlation: 0.9268250354619274
Pair: AIZ-CME, Correlation: 0.9582464568262625
Pair: AIZ-CMS, Correlation: 0.9560043376918717
Pair: AIZ-KO, Correlation: 0.9600619999072685
Pair: AIZ-CL, Correlation: 0.9328218597447074
Pair: AIZ-ED, Correlation: 0.9327885972254422
Pair: AIZ-STZ, Correlation: 0.9249021500355682
Pair: AIZ-COO, Correlation: 0.9440867690460766
Pair: AIZ-CPRT, Correlation: 0.9272933473024209
Pair: AIZ-GLW, Correlation: 0.9304243008279265
Pair: AIZ-CSGP, Correlation: 0.9173487707659976
Pair: AIZ-COST, Correlation: 0.9313347256591824
Pair: AIZ-CSX, Correlation: 0.9559245693733452
Pair: AIZ-CMI, Correlation: 0.9355258400063113
Pair: AIZ-DHR, Correlation: 0.9518748806624571
Pair: AIZ-DRI, Correlation: 0.9426160775694162
Pair: AIZ-DE, Correlation: 0.9106856205709638
Pair: AIZ-DLR, Correlation: 0.9461286749006467
Pair: AIZ-DFS, Correlation: 0.9455819123444741
Pair: AIZ-DPZ, Correlation: 0.9502313381226808
Pair: AIZ-DOV, Correlation: 0.9578009527814715
Pair: AIZ-DHI, Correlation: 0.9052458520243556
Pair: AIZ-DTE, Correlation: 0.9662358312923163
Pair: AIZ-DUK, Correlation: 0.9724271316796252
Pair: AIZ-EBAY, Correlation: 0.9136748706043237
Pair: AIZ-ECL, Correlation: 0.9285436671214826
Pair: AIZ-EW, Correlation: 0.9129868960629623
Pair: AIZ-EA, Correlation: 0.9108175890200507
Pair: AIZ-ELV, Correlation: 0.949258774761136
Pair: AIZ-EMR, Correlation: 0.9405605726902275
Pair: AIZ-ETR, Correlation: 0.9599255204116117
Pair: AIZ-EFX, Correlation: 0.9624478002256254
Pair: AIZ-EQIX, Correlation: 0.958157237325771
Pair: AIZ-ESS, Correlation: 0.91173924460447
Pair: AIZ-EG, Correlation: 0.926181955819602
Pair: AIZ-EVRG, Correlation: 0.925039680737118
Pair: AIZ-EXPD, Correlation: 0.9381464221672857
Pair: AIZ-EXR, Correlation: 0.9577148412909302
Pair: AIZ-FDS, Correlation: 0.9511290844769885
Pair: AIZ-FAST, Correlation: 0.9364908076323767
Pair: AIZ-FITB, Correlation: 0.9433148805935057
Pair: AIZ-FI, Correlation: 0.9542976123257069
Pair: AIZ-FTNT, Correlation: 0.9022722345995271
Pair: AIZ-GRMN, Correlation: 0.9386052967629855
Pair: AIZ-IT, Correlation: 0.916310362708242
Pair: AIZ-GEN, Correlation: 0.9423392351099399
Pair: AIZ-GD, Correlation: 0.9336751042222562
Pair: AIZ-GL, Correlation: 0.9136380837334402
Pair: AIZ-GS, Correlation: 0.9211376953067125
Pair: AIZ-HIG, Correlation: 0.9360355279726192
Pair: AIZ-HCA, Correlation: 0.932292211683048
Pair: AIZ-HSY, Correlation: 0.9047494539763867
Pair: AIZ-HLT, Correlation: 0.9332241413133169
Pair: AIZ-HOLX, Correlation: 0.9452308006667012
Pair: AIZ-HD, Correlation: 0.9716935642478461
Pair: AIZ-HON, Correlation: 0.9587627181808778
Pair: AIZ-HPQ, Correlation: 0.9014458444052544
Pair: AIZ-HBAN, Correlation: 0.912190631623146
Pair: AIZ-IEX, Correlation: 0.94950488991386
Pair: AIZ-IDXX, Correlation: 0.9190056444120303
Pair: AIZ-ITW, Correlation: 0.9618577803077303
Pair: AIZ-ICE, Correlation: 0.9739857970265604
Pair: AIZ-IPG, Correlation: 0.9183994784712058
Pair: AIZ-INTU, Correlation: 0.9487618040421167
Pair: AIZ-ISRG, Correlation: 0.9339643075669221
Pair: AIZ-INVH, Correlation: 0.9011238399709733
Pair: AIZ-IQV, Correlation: 0.9388238018686537
Pair: AIZ-JBHT, Correlation: 0.9429356987083705
Pair: AIZ-JKHY, Correlation: 0.9383294063851554
Pair: AIZ-J, Correlation: 0.9465407824908861
Pair: AIZ-JNJ, Correlation: 0.9526625098212607
Pair: AIZ-JCI, Correlation: 0.9221887097539434
Pair: AIZ-JPM, Correlation: 0.9554477804591675
Pair: AIZ-KDP, Correlation: 0.9481321772883353
Pair: AIZ-KMB, Correlation: 0.9072713312122999
Pair: AIZ-KR, Correlation: 0.9049138792604878
Pair: AIZ-LHX, Correlation: 0.9598283968516437
Pair: AIZ-LH, Correlation: 0.9568902295364345
Pair: AIZ-LRCX, Correlation: 0.9000200551113874
Pair: AIZ-LDOS, Correlation: 0.9537682333234647
Pair: AIZ-LII, Correlation: 0.9291035747865614
Pair: AIZ-LIN, Correlation: 0.923244744627152
Pair: AIZ-LYV, Correlation: 0.9651237416994262
Pair: AIZ-LMT, Correlation: 0.9512148259062844
Pair: AIZ-LOW, Correlation: 0.9576046047192754
Pair: AIZ-MAR, Correlation: 0.9409458860246581
Pair: AIZ-MMC, Correlation: 0.9568835928636525
Pair: AIZ-MLM, Correlation: 0.9486517908187778
Pair: AIZ-MAS, Correlation: 0.9700342398337892
Pair: AIZ-MA, Correlation: 0.960245343123869
Pair: AIZ-MKC, Correlation: 0.9014525437736874
Pair: AIZ-MCD, Correlation: 0.9508700819046401
Pair: AIZ-MRK, Correlation: 0.9127594012976868
Pair: AIZ-MET, Correlation: 0.9316449171021206
Pair: AIZ-MTD, Correlation: 0.9366866443129349
Pair: AIZ-MCHP, Correlation: 0.941576472237502
Pair: AIZ-MU, Correlation: 0.9238592345179936
Pair: AIZ-MSFT, Correlation: 0.9374403415412359
Pair: AIZ-MAA, Correlation: 0.9415131495864604
Pair: AIZ-MOH, Correlation: 0.9332819697864913
Pair: AIZ-MDLZ, Correlation: 0.9533545662951717
Pair: AIZ-MPWR, Correlation: 0.9086999045890168
Pair: AIZ-MNST, Correlation: 0.9376632972484408
Pair: AIZ-MCO, Correlation: 0.9649822665624596
Pair: AIZ-MS, Correlation: 0.9355400385878635
Pair: AIZ-MSI, Correlation: 0.9248767954984786
Pair: AIZ-MSCI, Correlation: 0.9285681319049582
Pair: AIZ-NDAQ, Correlation: 0.9641232940522222
Pair: AIZ-NEE, Correlation: 0.9394346085209877
Pair: AIZ-NI, Correlation: 0.9308354559915966
Pair: AIZ-NDSN, Correlation: 0.9603656078681801
Pair: AIZ-NSC, Correlation: 0.9514166529097526
Pair: AIZ-NOC, Correlation: 0.9509549418601528
Pair: AIZ-NVR, Correlation: 0.9424097958883743
Pair: AIZ-NXPI, Correlation: 0.9504089607390831
Pair: AIZ-ORLY, Correlation: 0.9217157142305307
Pair: AIZ-ODFL, Correlation: 0.9184528623849769
Pair: AIZ-PKG, Correlation: 0.9677290281873183
Pair: AIZ-PH, Correlation: 0.901968711894341
Pair: AIZ-PAYX, Correlation: 0.972549751855916
Pair: AIZ-PEP, Correlation: 0.9523150604815422
Pair: AIZ-PM, Correlation: 0.9027771670102662
Pair: AIZ-PNC, Correlation: 0.950626688122709
Pair: AIZ-POOL, Correlation: 0.9333655830998085
Pair: AIZ-PFG, Correlation: 0.9118304701401793
Pair: AIZ-PG, Correlation: 0.9589316360620919
Pair: AIZ-PGR, Correlation: 0.9083976171898761
Pair: AIZ-PLD, Correlation: 0.9490294496358319
Pair: AIZ-PRU, Correlation: 0.9190435444061306
Pair: AIZ-PEG, Correlation: 0.9695910614579869
Pair: AIZ-PTC, Correlation: 0.9398653319440122
Pair: AIZ-PSA, Correlation: 0.9528883019781689
Pair: AIZ-QCOM, Correlation: 0.9008562333611647
Pair: AIZ-DGX, Correlation: 0.9543334189916935
Pair: AIZ-RJF, Correlation: 0.9446290673609976
Pair: AIZ-RTX, Correlation: 0.9197518688338951
Pair: AIZ-O, Correlation: 0.9162576623216511
Pair: AIZ-RF, Correlation: 0.9378538767481805
Pair: AIZ-RSG, Correlation: 0.950942536031985
Pair: AIZ-RMD, Correlation: 0.9273686486453677
Pair: AIZ-ROK, Correlation: 0.9329974397224741
Pair: AIZ-ROL, Correlation: 0.9513127377884284
Pair: AIZ-ROP, Correlation: 0.9653689483042284
Pair: AIZ-ROST, Correlation: 0.9375257289232287
Pair: AIZ-SPGI, Correlation: 0.9644906888570955
Pair: AIZ-CRM, Correlation: 0.9386758043168085
Pair: AIZ-STX, Correlation: 0.9330802534179832
Pair: AIZ-SRE, Correlation: 0.9511485373243955
Pair: AIZ-NOW, Correlation: 0.9371192854312518
Pair: AIZ-SHW, Correlation: 0.973217840381231
Pair: AIZ-SNA, Correlation: 0.9355668425209877
Pair: AIZ-SO, Correlation: 0.9568732544463383
Pair: AIZ-SBUX, Correlation: 0.9194002224778018
Pair: AIZ-STE, Correlation: 0.964812236284995
Pair: AIZ-SYK, Correlation: 0.962362903980329
Pair: AIZ-SYY, Correlation: 0.949061225371494
Pair: AIZ-TMUS, Correlation: 0.9597023464845458
Pair: AIZ-TTWO, Correlation: 0.9038554302269138
Pair: AIZ-TEL, Correlation: 0.9639052190918657
Pair: AIZ-TDY, Correlation: 0.9475709115810962
Pair: AIZ-TER, Correlation: 0.9149803724950921
Pair: AIZ-TXN, Correlation: 0.9632463132301402
Pair: AIZ-TXT, Correlation: 0.9004000839467352
Pair: AIZ-TMO, Correlation: 0.9496997487200118
Pair: AIZ-TJX, Correlation: 0.9401699133517208
Pair: AIZ-TSCO, Correlation: 0.9194637935737761
Pair: AIZ-TT, Correlation: 0.9035398442754076
Pair: AIZ-TDG, Correlation: 0.9160811346980963
Pair: AIZ-TRV, Correlation: 0.954616625385054
Pair: AIZ-TYL, Correlation: 0.9620928970759915
Pair: AIZ-UDR, Correlation: 0.9197921772149139
Pair: AIZ-UNP, Correlation: 0.968138067979722
Pair: AIZ-UPS, Correlation: 0.9023104565088398
Pair: AIZ-UNH, Correlation: 0.9572541797317378
Pair: AIZ-VRSK, Correlation: 0.9556258592743876
Pair: AIZ-VRTX, Correlation: 0.904808778752038
Pair: AIZ-V, Correlation: 0.9648720540620336
Pair: AIZ-VMC, Correlation: 0.9564837432820945
Pair: AIZ-WRB, Correlation: 0.9528421683445644
Pair: AIZ-WMT, Correlation: 0.9330056147320538
Pair: AIZ-WM, Correlation: 0.965420217031478
Pair: AIZ-WAT, Correlation: 0.9560349283890193
Pair: AIZ-WEC, Correlation: 0.941869019895302
Pair: AIZ-WELL, Correlation: 0.9262085778165091
Pair: AIZ-WST, Correlation: 0.9192444285129384
Pair: AIZ-WTW, Correlation: 0.9623134349213994
Pair: AIZ-XEL, Correlation: 0.9338418075094268
Pair: AIZ-XYL, Correlation: 0.9368661385330275
Pair: AIZ-YUM, Correlation: 0.951826336540525
Pair: AIZ-ZTS, Correlation: 0.9301821813262992
Pair: T-GEV, Correlation: 0.9140089778809457
Pair: T-KMB, Correlation: 0.9010209161304168
Pair: T-PNW, Correlation: 0.9165962407320627
Pair: T-PPL, Correlation: 0.9247929658077041
Pair: ATO-ADP, Correlation: 0.9560365985844218
Pair: ATO-AVB, Correlation: 0.9231795312744898
Pair: ATO-AVY, Correlation: 0.9219574369138014
Pair: ATO-BAC, Correlation: 0.9002547405784651
Pair: ATO-BDX, Correlation: 0.963718256645726
Pair: ATO-BLK, Correlation: 0.9088115861190923
Pair: ATO-BKNG, Correlation: 0.9163847095469724
Pair: ATO-BSX, Correlation: 0.9589894413860583
Pair: ATO-BR, Correlation: 0.9552677352180359
Pair: ATO-BRO, Correlation: 0.900233988717612
Pair: ATO-CHRW, Correlation: 0.900792547093496
Pair: ATO-CBOE, Correlation: 0.9501728083012009
Pair: ATO-CDW, Correlation: 0.9125753221886446
Pair: ATO-CNC, Correlation: 0.9435484850110365
Pair: ATO-CNP, Correlation: 0.9224908216566722
Pair: ATO-CB, Correlation: 0.9390188011223018
Pair: ATO-CHD, Correlation: 0.9612417088584798
Pair: ATO-CI, Correlation: 0.9504294939703042
Pair: ATO-CINF, Correlation: 0.961597821785906
Pair: ATO-CSCO, Correlation: 0.9485459960985452
Pair: ATO-CLX, Correlation: 0.9013722294797213
Pair: ATO-CME, Correlation: 0.9683852151453081
Pair: ATO-CMS, Correlation: 0.9836619918907202
Pair: ATO-KO, Correlation: 0.9631665819705768
Pair: ATO-CL, Correlation: 0.9266293030899185
Pair: ATO-ED, Correlation: 0.9836568085276756
Pair: ATO-STZ, Correlation: 0.9565925094346844
Pair: ATO-COO, Correlation: 0.9458469332694122
Pair: ATO-GLW, Correlation: 0.915034159329086
Pair: ATO-CPAY, Correlation: 0.9148477604077757
Pair: ATO-CSGP, Correlation: 0.9084550202102681
Pair: ATO-CSX, Correlation: 0.9418745194759812
Pair: ATO-DHR, Correlation: 0.9034492260296432
Pair: ATO-DRI, Correlation: 0.9424357237405496
Pair: ATO-DLR, Correlation: 0.9347091974645395
Pair: ATO-DPZ, Correlation: 0.9268422383915027
Pair: ATO-DOV, Correlation: 0.9109205035148303
Pair: ATO-DTE, Correlation: 0.9781418993533598
Pair: ATO-DUK, Correlation: 0.9678921394538635
Pair: ATO-ECL, Correlation: 0.9282653407872427
Pair: ATO-EIX, Correlation: 0.9275453610744706
Pair: ATO-EA, Correlation: 0.9329849908879614
Pair: ATO-ELV, Correlation: 0.9376488537712206
Pair: ATO-ETR, Correlation: 0.9630746221045576
Pair: ATO-EFX, Correlation: 0.9171990813496943
Pair: ATO-EQIX, Correlation: 0.9501306346179416
Pair: ATO-EQR, Correlation: 0.9022170912038731
Pair: ATO-ESS, Correlation: 0.9116721908423598
Pair: ATO-EG, Correlation: 0.9485624829396923
Pair: ATO-EVRG, Correlation: 0.9666479982580433
Pair: ATO-ES, Correlation: 0.9097273063782823
Pair: ATO-EXR, Correlation: 0.922354458102051
Pair: ATO-FDS, Correlation: 0.9343676662876956
Pair: ATO-FI, Correlation: 0.968487163977036
Pair: ATO-GEV, Correlation: 0.9095559571779798
Pair: ATO-GD, Correlation: 0.9416685740671086
Pair: ATO-GL, Correlation: 0.953007117584985
Pair: ATO-HIG, Correlation: 0.9095521258939149
Pair: ATO-HSY, Correlation: 0.90885869731908
Pair: ATO-HOLX, Correlation: 0.9313438310631152
Pair: ATO-HD, Correlation: 0.9474522091992218
Pair: ATO-HON, Correlation: 0.9558639097855736
Pair: ATO-HUM, Correlation: 0.9107776430375052
Pair: ATO-HBAN, Correlation: 0.9054659076555124
Pair: ATO-HII, Correlation: 0.9297848236958023
Pair: ATO-IEX, Correlation: 0.951262749240982
Pair: ATO-ITW, Correlation: 0.9531736343287982
Pair: ATO-ICE, Correlation: 0.952048651021949
Pair: ATO-JBHT, Correlation: 0.9122170062751936
Pair: ATO-JKHY, Correlation: 0.9671381752457626
Pair: ATO-JNJ, Correlation: 0.965016172493226
Pair: ATO-JPM, Correlation: 0.9273957877232699
Pair: ATO-KDP, Correlation: 0.9522821127146456
Pair: ATO-KMB, Correlation: 0.946118916765268
Pair: ATO-LHX, Correlation: 0.9630206653971779
Pair: ATO-LH, Correlation: 0.9071050170910898
Pair: ATO-LDOS, Correlation: 0.9400820413598341
Pair: ATO-LII, Correlation: 0.9149450228431903
Pair: ATO-LYV, Correlation: 0.9262029078780996
Pair: ATO-LMT, Correlation: 0.9876158513667538
Pair: ATO-LOW, Correlation: 0.9164623035343243
Pair: ATO-MAR, Correlation: 0.9380648518467124
Pair: ATO-MMC, Correlation: 0.9349374909414206
Pair: ATO-MLM, Correlation: 0.904135690125298
Pair: ATO-MAS, Correlation: 0.9448228476116959
Pair: ATO-MA, Correlation: 0.9504346668598127
Pair: ATO-MKC, Correlation: 0.9295224728090801
Pair: ATO-MCD, Correlation: 0.9589174719098973
Pair: ATO-MRK, Correlation: 0.9329307086314015
Pair: ATO-MTD, Correlation: 0.9087548266512583
Pair: ATO-MCHP, Correlation: 0.9166124022401441
Pair: ATO-MAA, Correlation: 0.9043018519112588
Pair: ATO-MDLZ, Correlation: 0.9583686923593472
Pair: ATO-MNST, Correlation: 0.9453239917298452
Pair: ATO-MCO, Correlation: 0.929648823266974
Pair: ATO-NDAQ, Correlation: 0.927574786832817
Pair: ATO-NEE, Correlation: 0.9288857625518769
Pair: ATO-NI, Correlation: 0.9840026771721327
Pair: ATO-NDSN, Correlation: 0.9373984389881151
Pair: ATO-NSC, Correlation: 0.9227670653103595
Pair: ATO-NOC, Correlation: 0.9780966673878865
Pair: ATO-NVR, Correlation: 0.9216747954311276
Pair: ATO-ORLY, Correlation: 0.9076884461061727
Pair: ATO-PKG, Correlation: 0.9411097823954823
Pair: ATO-PAYX, Correlation: 0.9461144994914577
Pair: ATO-PEP, Correlation: 0.9597050035973143
Pair: ATO-PNW, Correlation: 0.9578610137238445
Pair: ATO-PNC, Correlation: 0.9087351869427508
Pair: ATO-PFG, Correlation: 0.9025288613537589
Pair: ATO-PG, Correlation: 0.9348605739749769
Pair: ATO-PLD, Correlation: 0.9134993629009813
Pair: ATO-PEG, Correlation: 0.9711854892918546
Pair: ATO-PTC, Correlation: 0.9150201847702057
Pair: ATO-PSA, Correlation: 0.926595356698515
Pair: ATO-DGX, Correlation: 0.9443298493388252
Pair: ATO-RJF, Correlation: 0.9068001914988039
Pair: ATO-RTX, Correlation: 0.928121800387416
Pair: ATO-O, Correlation: 0.9548337570825532
Pair: ATO-RF, Correlation: 0.9101864504295045
Pair: ATO-RSG, Correlation: 0.9239750043346576
Pair: ATO-ROK, Correlation: 0.9124820157609848
Pair: ATO-ROL, Correlation: 0.9490946682720287
Pair: ATO-ROP, Correlation: 0.9595368676817431
Pair: ATO-ROST, Correlation: 0.9549062700084023
Pair: ATO-SPGI, Correlation: 0.9330456796559273
Pair: ATO-CRM, Correlation: 0.9052698582734655
Pair: ATO-SRE, Correlation: 0.9759004430425916
Pair: ATO-SHW, Correlation: 0.9294201351531844
Pair: ATO-SNA, Correlation: 0.9220069226844506
Pair: ATO-SO, Correlation: 0.942001310212872
Pair: ATO-SBUX, Correlation: 0.9220249870318308
Pair: ATO-STE, Correlation: 0.9359160074687239
Pair: ATO-SYK, Correlation: 0.9550295462598639
Pair: ATO-SYY, Correlation: 0.9599677967563712
Pair: ATO-TMUS, Correlation: 0.9337255291909468
Pair: ATO-TTWO, Correlation: 0.903302398235446
Pair: ATO-TEL, Correlation: 0.9265956832929104
Pair: ATO-TDY, Correlation: 0.932373568694548
Pair: ATO-TXN, Correlation: 0.9401785095978222
Pair: ATO-TMO, Correlation: 0.9118218358648876
Pair: ATO-TJX, Correlation: 0.9356200242080376
Pair: ATO-TRV, Correlation: 0.9509809346068729
Pair: ATO-TYL, Correlation: 0.921800715142406
Pair: ATO-UDR, Correlation: 0.9213825869296614
Pair: ATO-ULTA, Correlation: 0.9264830724803167
Pair: ATO-UNP, Correlation: 0.9448262053223311
Pair: ATO-UNH, Correlation: 0.9395233247778384
Pair: ATO-VRSN, Correlation: 0.9306067346385724
Pair: ATO-VRSK, Correlation: 0.9398295750858627
Pair: ATO-VRTX, Correlation: 0.9207724200486707
Pair: ATO-V, Correlation: 0.9636391459793007
Pair: ATO-VMC, Correlation: 0.9361980864967093
Pair: ATO-WRB, Correlation: 0.9327838369669651
Pair: ATO-WMT, Correlation: 0.9097846576399761
Pair: ATO-WM, Correlation: 0.9457216527416418
Pair: ATO-WAT, Correlation: 0.9221699003472871
Pair: ATO-WEC, Correlation: 0.9681696436709594
Pair: ATO-WELL, Correlation: 0.900554665091263
Pair: ATO-WTW, Correlation: 0.9519838852706751
Pair: ATO-XEL, Correlation: 0.9592804271482531
Pair: ATO-XYL, Correlation: 0.9153051156274836
Pair: ATO-YUM, Correlation: 0.9577489241350983
Pair: ADSK-ADP, Correlation: 0.9090086412261177
Pair: ADSK-AVY, Correlation: 0.9443035395049022
Pair: ADSK-BALL, Correlation: 0.9331701805181611
Pair: ADSK-BAC, Correlation: 0.9225749737428225
Pair: ADSK-BBY, Correlation: 0.9737162512549923
Pair: ADSK-TECH, Correlation: 0.9425588333289576
Pair: ADSK-BLK, Correlation: 0.9508424734223768
Pair: ADSK-BR, Correlation: 0.943529989164125
Pair: ADSK-CBRE, Correlation: 0.9125028463181516
Pair: ADSK-CE, Correlation: 0.9283538425527674
Pair: ADSK-CRL, Correlation: 0.9422279024725919
Pair: ADSK-CHD, Correlation: 0.9336227729804721
Pair: ADSK-CSCO, Correlation: 0.9320060113878709
Pair: ADSK-CLX, Correlation: 0.9103648294381856
Pair: ADSK-CME, Correlation: 0.9325648061448784
Pair: ADSK-CMS, Correlation: 0.9213242055132901
Pair: ADSK-CMCSA, Correlation: 0.9105088954480898
Pair: ADSK-COO, Correlation: 0.951665570502775
Pair: ADSK-GLW, Correlation: 0.9305636973636987
Pair: ADSK-CSGP, Correlation: 0.9705109477877807
Pair: ADSK-CCI, Correlation: 0.9189753160758694
Pair: ADSK-CSX, Correlation: 0.9566215523728455
Pair: ADSK-CMI, Correlation: 0.9104986057163559
Pair: ADSK-DHR, Correlation: 0.9522303836113963
Pair: ADSK-DRI, Correlation: 0.9077799948281058
Pair: ADSK-DXCM, Correlation: 0.9119901512848729
Pair: ADSK-DLR, Correlation: 0.9457762306638464
Pair: ADSK-DPZ, Correlation: 0.9656492565559862
Pair: ADSK-DOV, Correlation: 0.9359006015739567
Pair: ADSK-DTE, Correlation: 0.9127891299377935
Pair: ADSK-DUK, Correlation: 0.9048962556855407
Pair: ADSK-EBAY, Correlation: 0.9498799149379532
Pair: ADSK-ECL, Correlation: 0.9377649303653873
Pair: ADSK-EW, Correlation: 0.9411505211369403
Pair: ADSK-EA, Correlation: 0.9028542310426179
Pair: ADSK-ETR, Correlation: 0.9151171066633051
Pair: ADSK-EFX, Correlation: 0.9197385348974526
Pair: ADSK-EQIX, Correlation: 0.9566209544076247
Pair: ADSK-ES, Correlation: 0.9059223736482254
Pair: ADSK-EXPD, Correlation: 0.9388731839738298
Pair: ADSK-FDS, Correlation: 0.9222771300017584
Pair: ADSK-FAST, Correlation: 0.9004802054776441
Pair: ADSK-FI, Correlation: 0.9239560415866878
Pair: ADSK-GRMN, Correlation: 0.9388155776455324
Pair: ADSK-GEV, Correlation: 0.9008222823173504
Pair: ADSK-GEN, Correlation: 0.9158936866926289
Pair: ADSK-HOLX, Correlation: 0.9318147299006648
Pair: ADSK-HD, Correlation: 0.9485873223261813
Pair: ADSK-HON, Correlation: 0.954650009819549
Pair: ADSK-IEX, Correlation: 0.9555885397184277
Pair: ADSK-IDXX, Correlation: 0.9665529040590785
Pair: ADSK-ITW, Correlation: 0.9401444474007329
Pair: ADSK-PODD, Correlation: 0.93344390429457
Pair: ADSK-ICE, Correlation: 0.9503991502382165
Pair: ADSK-INTU, Correlation: 0.9270641848964798
Pair: ADSK-ISRG, Correlation: 0.9271070550581193
Pair: ADSK-IQV, Correlation: 0.9333426172364385
Pair: ADSK-JBHT, Correlation: 0.9052467984190494
Pair: ADSK-JKHY, Correlation: 0.926350720757998
Pair: ADSK-J, Correlation: 0.9190699882687294
Pair: ADSK-JNJ, Correlation: 0.919636915136151
Pair: ADSK-JPM, Correlation: 0.9112261781193223
Pair: ADSK-KDP, Correlation: 0.9408069507042116
Pair: ADSK-LHX, Correlation: 0.9376655952528956
Pair: ADSK-LH, Correlation: 0.943841962379643
Pair: ADSK-LDOS, Correlation: 0.9221704537625839
Pair: ADSK-LYV, Correlation: 0.9284609383170318
Pair: ADSK-LOW, Correlation: 0.9214153636479923
Pair: ADSK-LULU, Correlation: 0.9282767568618494
Pair: ADSK-MKTX, Correlation: 0.9038785517874103
Pair: ADSK-MAS, Correlation: 0.9340650928414957
Pair: ADSK-MA, Correlation: 0.9507180685680817
Pair: ADSK-MKC, Correlation: 0.9296433955695989
Pair: ADSK-MCD, Correlation: 0.9189458406852475
Pair: ADSK-MTD, Correlation: 0.9445339778736551
Pair: ADSK-MCHP, Correlation: 0.931100839718068
Pair: ADSK-MU, Correlation: 0.9024312560813075
Pair: ADSK-MSFT, Correlation: 0.9004855338026285
Pair: ADSK-MAA, Correlation: 0.9101624222213627
Pair: ADSK-MNST, Correlation: 0.9081326471436951
Pair: ADSK-MCO, Correlation: 0.9497197225029309
Pair: ADSK-MSCI, Correlation: 0.944969141194159
Pair: ADSK-NDAQ, Correlation: 0.9388910664739994
Pair: ADSK-NFLX, Correlation: 0.9492106112276416
Pair: ADSK-NEE, Correlation: 0.9530325622724763
Pair: ADSK-NKE, Correlation: 0.9372118554779196
Pair: ADSK-NDSN, Correlation: 0.9458446327299557
Pair: ADSK-NSC, Correlation: 0.9678287333578247
Pair: ADSK-PAYX, Correlation: 0.9106229755872296
Pair: ADSK-PNC, Correlation: 0.9179967317913366
Pair: ADSK-POOL, Correlation: 0.9551781345449487
Pair: ADSK-PG, Correlation: 0.9183532077727695
Pair: ADSK-PLD, Correlation: 0.9345421719530215
Pair: ADSK-PEG, Correlation: 0.9062626627597675
Pair: ADSK-PTC, Correlation: 0.9196038162004923
Pair: ADSK-DGX, Correlation: 0.933418802993047
Pair: ADSK-RMD, Correlation: 0.9544259243999887
Pair: ADSK-RVTY, Correlation: 0.9405762442061016
Pair: ADSK-ROK, Correlation: 0.9459376869466042
Pair: ADSK-ROL, Correlation: 0.940787432760327
Pair: ADSK-ROP, Correlation: 0.9522887424488548
Pair: ADSK-ROST, Correlation: 0.9239010711654999
Pair: ADSK-SPGI, Correlation: 0.9617696541276846
Pair: ADSK-CRM, Correlation: 0.9682787952168869
Pair: ADSK-SBAC, Correlation: 0.9256546773444593
Pair: ADSK-NOW, Correlation: 0.9225326660491499
Pair: ADSK-SHW, Correlation: 0.9506206433067804
Pair: ADSK-SBUX, Correlation: 0.9361704383949608
Pair: ADSK-STE, Correlation: 0.9497664497864505
Pair: ADSK-SYK, Correlation: 0.9288851945257542
Pair: ADSK-SYY, Correlation: 0.9139477310748463
Pair: ADSK-TMUS, Correlation: 0.9247147410466573
Pair: ADSK-TROW, Correlation: 0.9480478380096811
Pair: ADSK-TTWO, Correlation: 0.9653858964162375
Pair: ADSK-TGT, Correlation: 0.9152938944740128
Pair: ADSK-TEL, Correlation: 0.9358009616753358
Pair: ADSK-TDY, Correlation: 0.9621813441335979
Pair: ADSK-TER, Correlation: 0.9506128740499934
Pair: ADSK-TXN, Correlation: 0.9590656947019393
Pair: ADSK-TMO, Correlation: 0.9426662185741927
Pair: ADSK-TRMB, Correlation: 0.9201801498774543
Pair: ADSK-TYL, Correlation: 0.961766809188972
Pair: ADSK-UNP, Correlation: 0.9458330262221585
Pair: ADSK-UNH, Correlation: 0.9029967102256882
Pair: ADSK-VRSN, Correlation: 0.9414189548399635
Pair: ADSK-VRSK, Correlation: 0.9324446279030001
Pair: ADSK-V, Correlation: 0.9526570516475579
Pair: ADSK-WM, Correlation: 0.9035743739179788
Pair: ADSK-WAT, Correlation: 0.9362059364478118
Pair: ADSK-WEC, Correlation: 0.9288734966142899
Pair: ADSK-WST, Correlation: 0.9291473714821444
Pair: ADSK-WTW, Correlation: 0.9419713546914459
Pair: ADSK-WDAY, Correlation: 0.9473249588012341
Pair: ADSK-XEL, Correlation: 0.9340390381985286
Pair: ADSK-XYL, Correlation: 0.9412749087078658
Pair: ADSK-YUM, Correlation: 0.923617382531052
Pair: ADSK-ZBRA, Correlation: 0.9482155904263359
Pair: ADSK-ZTS, Correlation: 0.9516999080285172
Pair: ADP-AZO, Correlation: 0.9577871509458531
Pair: ADP-AVB, Correlation: 0.9013982072533528
Pair: ADP-AVY, Correlation: 0.9730573635101261
Pair: ADP-BAC, Correlation: 0.9262585582477306
Pair: ADP-BDX, Correlation: 0.9011843895518167
Pair: ADP-BLK, Correlation: 0.9573351537932935
Pair: ADP-BX, Correlation: 0.94681965597817
Pair: ADP-BKNG, Correlation: 0.9155874957120806
Pair: ADP-BSX, Correlation: 0.9527531467330983
Pair: ADP-BR, Correlation: 0.9784142403966759
Pair: ADP-BRO, Correlation: 0.9671670138809106
Pair: ADP-CHRW, Correlation: 0.9079948985892334
Pair: ADP-CDNS, Correlation: 0.9382967354258033
Pair: ADP-CPT, Correlation: 0.9172472311325927
Pair: ADP-CAT, Correlation: 0.9305088117230786
Pair: ADP-CBOE, Correlation: 0.9475796965717466
Pair: ADP-CBRE, Correlation: 0.9605566707973812
Pair: ADP-CDW, Correlation: 0.9766789413012138
Pair: ADP-CE, Correlation: 0.9089487584611674
Pair: ADP-COR, Correlation: 0.9216317866694019
Pair: ADP-CNC, Correlation: 0.9195913931307821
Pair: ADP-CNP, Correlation: 0.9012538349607696
Pair: ADP-SCHW, Correlation: 0.9325021396157837
Pair: ADP-CMG, Correlation: 0.9034972352081374
Pair: ADP-CB, Correlation: 0.9680785646938387
Pair: ADP-CHD, Correlation: 0.962211272126008
Pair: ADP-CI, Correlation: 0.9603678169676856
Pair: ADP-CINF, Correlation: 0.9635502655541778
Pair: ADP-CTAS, Correlation: 0.958113561353509
Pair: ADP-CSCO, Correlation: 0.9466131817612333
Pair: ADP-CME, Correlation: 0.9575884507126371
Pair: ADP-CMS, Correlation: 0.9462274526330802
Pair: ADP-KO, Correlation: 0.9802721122069864
Pair: ADP-CL, Correlation: 0.9081631203672497
Pair: ADP-ED, Correlation: 0.9527229945778573
Pair: ADP-STZ, Correlation: 0.9127955176264432
Pair: ADP-COO, Correlation: 0.9318600034661647
Pair: ADP-CPRT, Correlation: 0.9584396455407906
Pair: ADP-GLW, Correlation: 0.9200206334643526
Pair: ADP-CSGP, Correlation: 0.9296614298275185
Pair: ADP-COST, Correlation: 0.9551396273322391
Pair: ADP-CSX, Correlation: 0.9704385952403835
Pair: ADP-CMI, Correlation: 0.9515981811944202
Pair: ADP-DHR, Correlation: 0.9641186097102333
Pair: ADP-DRI, Correlation: 0.9752407931715498
Pair: ADP-DE, Correlation: 0.955081876575663
Pair: ADP-DLR, Correlation: 0.911993294073389
Pair: ADP-DFS, Correlation: 0.9451312644290003
Pair: ADP-DPZ, Correlation: 0.9386588921862941
Pair: ADP-DOV, Correlation: 0.97130289589133
Pair: ADP-DHI, Correlation: 0.9300865768160599
Pair: ADP-DTE, Correlation: 0.9602689403990917
Pair: ADP-DUK, Correlation: 0.9700622292466258
Pair: ADP-ECL, Correlation: 0.9016825561611561
Pair: ADP-ELV, Correlation: 0.9835817187869783
Pair: ADP-EMR, Correlation: 0.9578840110819642
Pair: ADP-ETR, Correlation: 0.9725249377827884
Pair: ADP-EFX, Correlation: 0.9475155774837476
Pair: ADP-EQIX, Correlation: 0.9529709446378308
Pair: ADP-ERIE, Correlation: 0.9187284991785445
Pair: ADP-EG, Correlation: 0.9525863018956283
Pair: ADP-EVRG, Correlation: 0.9112897470977732
Pair: ADP-EXC, Correlation: 0.9457470666752722
Pair: ADP-EXPD, Correlation: 0.9642326573799489
Pair: ADP-EXR, Correlation: 0.9600316945162828
Pair: ADP-FDS, Correlation: 0.982395173668322
Pair: ADP-FAST, Correlation: 0.9579132635827206
Pair: ADP-FITB, Correlation: 0.9224216949743996
Pair: ADP-FI, Correlation: 0.9542240713983349
Pair: ADP-FTNT, Correlation: 0.9432936921270199
Pair: ADP-GRMN, Correlation: 0.9289324283064853
Pair: ADP-IT, Correlation: 0.9547804070794582
Pair: ADP-GEV, Correlation: 0.9276424355612503
Pair: ADP-GEN, Correlation: 0.9120025485649227
Pair: ADP-GD, Correlation: 0.9355559042329639
Pair: ADP-GIS, Correlation: 0.9047742104198077
Pair: ADP-GPC, Correlation: 0.9444245406358232
Pair: ADP-GL, Correlation: 0.9220813649293416
Pair: ADP-GS, Correlation: 0.932305395917597
Pair: ADP-HIG, Correlation: 0.9429467403176179
Pair: ADP-HCA, Correlation: 0.9667991315672287
Pair: ADP-HSY, Correlation: 0.9504290149590401
Pair: ADP-HLT, Correlation: 0.955020210466689
Pair: ADP-HOLX, Correlation: 0.9534891506964127
Pair: ADP-HD, Correlation: 0.980216639231486
Pair: ADP-HON, Correlation: 0.9612333522700232
Pair: ADP-HPQ, Correlation: 0.9175778602123564
Pair: ADP-HUBB, Correlation: 0.9112170239417167
Pair: ADP-HUM, Correlation: 0.910543319849571
Pair: ADP-IEX, Correlation: 0.9688317488647878
Pair: ADP-IDXX, Correlation: 0.9252044091325451
Pair: ADP-ITW, Correlation: 0.9745807843629067
Pair: ADP-ICE, Correlation: 0.970628051895081
Pair: ADP-IPG, Correlation: 0.9351618230687123
Pair: ADP-INTU, Correlation: 0.9663952583712998
Pair: ADP-ISRG, Correlation: 0.9516422201693279
Pair: ADP-IQV, Correlation: 0.950360567939681
Pair: ADP-JBHT, Correlation: 0.9602065844740816
Pair: ADP-JKHY, Correlation: 0.9368962303251837
Pair: ADP-J, Correlation: 0.9603962017439873
Pair: ADP-JNJ, Correlation: 0.9500586367305939
Pair: ADP-JCI, Correlation: 0.9309672154641001
Pair: ADP-JPM, Correlation: 0.9610503898497048
Pair: ADP-KDP, Correlation: 0.9662949157555866
Pair: ADP-KEYS, Correlation: 0.9306394732476013
Pair: ADP-KLAC, Correlation: 0.9134605080767472
Pair: ADP-KR, Correlation: 0.9025838910475681
Pair: ADP-LHX, Correlation: 0.9573407186242334
Pair: ADP-LH, Correlation: 0.9538400262277675
Pair: ADP-LRCX, Correlation: 0.9191669865585664
Pair: ADP-LDOS, Correlation: 0.9521386950063925
Pair: ADP-LEN, Correlation: 0.9138412208116777
Pair: ADP-LII, Correlation: 0.9298390984432158
Pair: ADP-LIN, Correlation: 0.9615358941434254
Pair: ADP-LYV, Correlation: 0.963601107702538
Pair: ADP-LMT, Correlation: 0.9648527383037133
Pair: ADP-LOW, Correlation: 0.9782839920178354
Pair: ADP-LULU, Correlation: 0.9059094307989288
Pair: ADP-MAR, Correlation: 0.9582453119506313
Pair: ADP-MMC, Correlation: 0.9862708899456597
Pair: ADP-MLM, Correlation: 0.956312786145424
Pair: ADP-MAS, Correlation: 0.9515082613084375
Pair: ADP-MA, Correlation: 0.9761857204314065
Pair: ADP-MCD, Correlation: 0.9848175387603383
Pair: ADP-MRK, Correlation: 0.9575874784890291
Pair: ADP-MET, Correlation: 0.9491203853719103
Pair: ADP-MTD, Correlation: 0.9568517961182659
Pair: ADP-MCHP, Correlation: 0.9635272885637265
Pair: ADP-MU, Correlation: 0.9140250195583981
Pair: ADP-MSFT, Correlation: 0.959269472831791
Pair: ADP-MAA, Correlation: 0.9380895919253439
Pair: ADP-MOH, Correlation: 0.9689858096298708
Pair: ADP-MDLZ, Correlation: 0.9675374570832218
Pair: ADP-MPWR, Correlation: 0.9319437739097424
Pair: ADP-MNST, Correlation: 0.954235431450796
Pair: ADP-MCO, Correlation: 0.9703058100503018
Pair: ADP-MS, Correlation: 0.9570476386295647
Pair: ADP-MSI, Correlation: 0.9645731070445914
Pair: ADP-MSCI, Correlation: 0.9562650685218812
Pair: ADP-NDAQ, Correlation: 0.9793753341908541
Pair: ADP-NEE, Correlation: 0.9521276382973966
Pair: ADP-NI, Correlation: 0.9193737074878384
Pair: ADP-NDSN, Correlation: 0.9751263461113574
Pair: ADP-NSC, Correlation: 0.9570856838751656
Pair: ADP-NOC, Correlation: 0.969552299386439
Pair: ADP-NUE, Correlation: 0.9029518106006315
Pair: ADP-NVR, Correlation: 0.9584994659553706
Pair: ADP-NXPI, Correlation: 0.9440287217833222
Pair: ADP-ORLY, Correlation: 0.9667226474844272
Pair: ADP-ODFL, Correlation: 0.9599371210108912
Pair: ADP-ON, Correlation: 0.9189551912000256
Pair: ADP-OKE, Correlation: 0.915816275766375
Pair: ADP-ORCL, Correlation: 0.9239834653980864
Pair: ADP-PCAR, Correlation: 0.9115798363817298
Pair: ADP-PKG, Correlation: 0.9584541105799858
Pair: ADP-PANW, Correlation: 0.9157279094826838
Pair: ADP-PH, Correlation: 0.9250320676219367
Pair: ADP-PAYX, Correlation: 0.9939943584810866
Pair: ADP-PEP, Correlation: 0.9812479116219559
Pair: ADP-PNC, Correlation: 0.9273987446539023
Pair: ADP-POOL, Correlation: 0.9312564956824192
Pair: ADP-PFG, Correlation: 0.9394516839446287
Pair: ADP-PG, Correlation: 0.9747988154057263
Pair: ADP-PGR, Correlation: 0.9427395185967615
Pair: ADP-PLD, Correlation: 0.9599576304153382
Pair: ADP-PRU, Correlation: 0.9025288819998066
Pair: ADP-PEG, Correlation: 0.9749711596440462
Pair: ADP-PTC, Correlation: 0.9625430752473454
Pair: ADP-PSA, Correlation: 0.9536800999656844
Pair: ADP-QCOM, Correlation: 0.9021780774099403
Pair: ADP-DGX, Correlation: 0.9654601012783655
Pair: ADP-RJF, Correlation: 0.9745143395561214
Pair: ADP-RTX, Correlation: 0.9359160543702381
Pair: ADP-O, Correlation: 0.9077149848661693
Pair: ADP-RF, Correlation: 0.9483587678710549
Pair: ADP-RSG, Correlation: 0.9775189889913944
Pair: ADP-RMD, Correlation: 0.937006861467985
Pair: ADP-ROK, Correlation: 0.9524350957523225
Pair: ADP-ROL, Correlation: 0.9704034365396502
Pair: ADP-ROP, Correlation: 0.9753962908173399
Pair: ADP-ROST, Correlation: 0.9419358228467922
Pair: ADP-SPGI, Correlation: 0.9702237879808182
Pair: ADP-CRM, Correlation: 0.92506404248764
Pair: ADP-STX, Correlation: 0.9170273806774788
Pair: ADP-SRE, Correlation: 0.9589372345003145
Pair: ADP-NOW, Correlation: 0.9384946352620859
Pair: ADP-SHW, Correlation: 0.9708419993852307
Pair: ADP-SNA, Correlation: 0.9483426482799898
Pair: ADP-SO, Correlation: 0.9753782370626364
Pair: ADP-SBUX, Correlation: 0.9253729435739648
Pair: ADP-STLD, Correlation: 0.9120304815541351
Pair: ADP-STE, Correlation: 0.9731419938266967
Pair: ADP-SYK, Correlation: 0.9756406574411479
Pair: ADP-SNPS, Correlation: 0.9377883079112546
Pair: ADP-SYY, Correlation: 0.948853163419582
Pair: ADP-TMUS, Correlation: 0.971761634136891
Pair: ADP-TEL, Correlation: 0.9658872974251581
Pair: ADP-TDY, Correlation: 0.9619614218956394
Pair: ADP-TER, Correlation: 0.9191985564516467
Pair: ADP-TXN, Correlation: 0.9762480436747041
Pair: ADP-TPL, Correlation: 0.9361542903636888
Pair: ADP-TXT, Correlation: 0.9112329523806514
Pair: ADP-TMO, Correlation: 0.9687353962229186
Pair: ADP-TJX, Correlation: 0.9685692491565718
Pair: ADP-TSCO, Correlation: 0.9558042084993864
Pair: ADP-TT, Correlation: 0.9249673812051488
Pair: ADP-TDG, Correlation: 0.9392538205665872
Pair: ADP-TRV, Correlation: 0.9654073292272822
Pair: ADP-TYL, Correlation: 0.9467163337838673
Pair: ADP-ULTA, Correlation: 0.927537686805622
Pair: ADP-UNP, Correlation: 0.9750613153274491
Pair: ADP-UPS, Correlation: 0.9051960223850285
Pair: ADP-URI, Correlation: 0.9060042882449787
Pair: ADP-UNH, Correlation: 0.9882565745894601
Pair: ADP-VLO, Correlation: 0.9226746561467676
Pair: ADP-VRSN, Correlation: 0.9045835576900543
Pair: ADP-VRSK, Correlation: 0.973238579860096
Pair: ADP-VRTX, Correlation: 0.9407581997939322
Pair: ADP-VICI, Correlation: 0.9436838567460342
Pair: ADP-V, Correlation: 0.9744098478925409
Pair: ADP-VMC, Correlation: 0.958496747049446
Pair: ADP-WRB, Correlation: 0.9805630355249609
Pair: ADP-GWW, Correlation: 0.9060433200821773
Pair: ADP-WMT, Correlation: 0.9551250504049452
Pair: ADP-WM, Correlation: 0.9886016043646312
Pair: ADP-WAT, Correlation: 0.9576395925028546
Pair: ADP-WEC, Correlation: 0.9415495453435943
Pair: ADP-WELL, Correlation: 0.9170355150660372
Pair: ADP-WST, Correlation: 0.9238789702082976
Pair: ADP-WTW, Correlation: 0.9733988419829019
Pair: ADP-XEL, Correlation: 0.9329219345983736
Pair: ADP-XYL, Correlation: 0.9540168946689297
Pair: ADP-YUM, Correlation: 0.9803999152839973
Pair: ADP-ZTS, Correlation: 0.9379748183784704
Pair: AZO-AVY, Correlation: 0.9222807406631468
Pair: AZO-AXON, Correlation: 0.9259280493428582
Pair: AZO-BLK, Correlation: 0.9023012179329786
Pair: AZO-BX, Correlation: 0.9503008064228365
Pair: AZO-BSX, Correlation: 0.9167269478222186
Pair: AZO-AVGO, Correlation: 0.9244130244689492
Pair: AZO-BR, Correlation: 0.9210686935834498
Pair: AZO-BRO, Correlation: 0.968663734106004
Pair: AZO-BLDR, Correlation: 0.9338392135185146
Pair: AZO-CDNS, Correlation: 0.9733045835529089
Pair: AZO-CAT, Correlation: 0.9445799095375669
Pair: AZO-CBOE, Correlation: 0.9091960060182088
Pair: AZO-CBRE, Correlation: 0.9170916005019383
Pair: AZO-CDW, Correlation: 0.9372012734769044
Pair: AZO-COR, Correlation: 0.9658383589816643
Pair: AZO-CVX, Correlation: 0.9209071472503791
Pair: AZO-CMG, Correlation: 0.9503825058265923
Pair: AZO-CB, Correlation: 0.958423865233819
Pair: AZO-CHD, Correlation: 0.9097508626211941
Pair: AZO-CI, Correlation: 0.9318902731912223
Pair: AZO-CTAS, Correlation: 0.9689736529766529
Pair: AZO-KO, Correlation: 0.9486225316676778
Pair: AZO-COP, Correlation: 0.9064884749548833
Pair: AZO-ED, Correlation: 0.9050177776493659
Pair: AZO-CPRT, Correlation: 0.9583179256012714
Pair: AZO-COST, Correlation: 0.9732230600335414
Pair: AZO-CMI, Correlation: 0.929027157169126
Pair: AZO-DHR, Correlation: 0.9148707249568141
Pair: AZO-DRI, Correlation: 0.9253261936449219
Pair: AZO-DECK, Correlation: 0.9189353623730458
Pair: AZO-DE, Correlation: 0.9436370383027913
Pair: AZO-DFS, Correlation: 0.9070943155643159
Pair: AZO-DOV, Correlation: 0.9346743677692156
Pair: AZO-DHI, Correlation: 0.9536385034112691
Pair: AZO-DUK, Correlation: 0.9108656549270653
Pair: AZO-ETN, Correlation: 0.9455887921800346
Pair: AZO-ELV, Correlation: 0.9525292907840521
Pair: AZO-EMR, Correlation: 0.9294871905103245
Pair: AZO-ETR, Correlation: 0.9139611636264771
Pair: AZO-EFX, Correlation: 0.906204717889344
Pair: AZO-ERIE, Correlation: 0.9268176000417551
Pair: AZO-EG, Correlation: 0.9381053223507195
Pair: AZO-EXC, Correlation: 0.9134512284794487
Pair: AZO-EXPD, Correlation: 0.9240364618347979
Pair: AZO-EXR, Correlation: 0.9074106724655709
Pair: AZO-FDS, Correlation: 0.9491484829912132
Pair: AZO-FICO, Correlation: 0.9035339004593236
Pair: AZO-FAST, Correlation: 0.9591392160801703
Pair: AZO-FTNT, Correlation: 0.9551180255444373
Pair: AZO-IT, Correlation: 0.9774577492812988
Pair: AZO-GD, Correlation: 0.9013702110737596
Pair: AZO-GIS, Correlation: 0.9140718690106977
Pair: AZO-GPC, Correlation: 0.9405018571539812
Pair: AZO-GS, Correlation: 0.9243324839658295
Pair: AZO-HIG, Correlation: 0.940215619857977
Pair: AZO-HCA, Correlation: 0.9677409443456356
Pair: AZO-HSY, Correlation: 0.9375838042809278
Pair: AZO-HLT, Correlation: 0.9456156907492002
Pair: AZO-HOLX, Correlation: 0.9094280155104039
Pair: AZO-HD, Correlation: 0.9289474970963053
Pair: AZO-HUBB, Correlation: 0.9613833009301234
Pair: AZO-ITW, Correlation: 0.9271711525065041
Pair: AZO-IR, Correlation: 0.9211340346193067
Pair: AZO-ICE, Correlation: 0.9124652076004135
Pair: AZO-IPG, Correlation: 0.909435095408615
Pair: AZO-INTU, Correlation: 0.9418787129391767
Pair: AZO-ISRG, Correlation: 0.9175393847282557
Pair: AZO-IRM, Correlation: 0.926780131350785
Pair: AZO-JBHT, Correlation: 0.9151729565012324
Pair: AZO-JBL, Correlation: 0.9458160039278708
Pair: AZO-J, Correlation: 0.9279836483588135
Pair: AZO-JCI, Correlation: 0.9083906884126792
Pair: AZO-JPM, Correlation: 0.9186538014768665
Pair: AZO-KKR, Correlation: 0.9208361601963226
Pair: AZO-KLAC, Correlation: 0.9589775010857374
Pair: AZO-KR, Correlation: 0.9184476085018967
Pair: AZO-LRCX, Correlation: 0.9394856304252452
Pair: AZO-LEN, Correlation: 0.9438858274023249
Pair: AZO-LII, Correlation: 0.9008731061050843
Pair: AZO-LLY, Correlation: 0.9297938399460972
Pair: AZO-LIN, Correlation: 0.9778143950378909
Pair: AZO-LMT, Correlation: 0.9117708916160567
Pair: AZO-LOW, Correlation: 0.9563810656238576
Pair: AZO-MPC, Correlation: 0.9278138779289288
Pair: AZO-MAR, Correlation: 0.9266212926967372
Pair: AZO-MMC, Correlation: 0.9792135469709121
Pair: AZO-MLM, Correlation: 0.9565708178700413
Pair: AZO-MAS, Correlation: 0.9022078481886578
Pair: AZO-MA, Correlation: 0.9266849910852694
Pair: AZO-MCD, Correlation: 0.9431090343712537
Pair: AZO-MCK, Correlation: 0.936941673036462
Pair: AZO-MRK, Correlation: 0.9633502391699587
Pair: AZO-MET, Correlation: 0.9395368535400929
Pair: AZO-MTD, Correlation: 0.9014584941479001
Pair: AZO-MCHP, Correlation: 0.9238536919429291
Pair: AZO-MSFT, Correlation: 0.9606599278889275
Pair: AZO-MOH, Correlation: 0.9571363142523259
Pair: AZO-MDLZ, Correlation: 0.9390549387194764
Pair: AZO-MPWR, Correlation: 0.9553113941425656
Pair: AZO-MNST, Correlation: 0.9136486652436795
Pair: AZO-MCO, Correlation: 0.9278610533679088
Pair: AZO-MS, Correlation: 0.9349729799309588
Pair: AZO-MSI, Correlation: 0.9733196810160468
Pair: AZO-MSCI, Correlation: 0.9210949475669975
Pair: AZO-NDAQ, Correlation: 0.9354539530268648
Pair: AZO-NDSN, Correlation: 0.924378157306496
Pair: AZO-NOC, Correlation: 0.9152745797903822
Pair: AZO-NUE, Correlation: 0.9557540276375489
Pair: AZO-NVR, Correlation: 0.944223183495193
Pair: AZO-NXPI, Correlation: 0.9207723929219033
Pair: AZO-ORLY, Correlation: 0.9934351960293603
Pair: AZO-ODFL, Correlation: 0.9687720032698173
Pair: AZO-ON, Correlation: 0.9501138334522053
Pair: AZO-ORCL, Correlation: 0.9497508455849691
Pair: AZO-PCAR, Correlation: 0.9504878203746898
Pair: AZO-PKG, Correlation: 0.9201688755352722
Pair: AZO-PANW, Correlation: 0.9615160276827805
Pair: AZO-PH, Correlation: 0.94858631239797
Pair: AZO-PAYX, Correlation: 0.9552838719631325
Pair: AZO-PEP, Correlation: 0.9475892377606073
Pair: AZO-PFG, Correlation: 0.9224696895692831
Pair: AZO-PG, Correlation: 0.95097423302104
Pair: AZO-PGR, Correlation: 0.9638461719727544
Pair: AZO-PLD, Correlation: 0.9082784811496999
Pair: AZO-PEG, Correlation: 0.9203465450434402
Pair: AZO-PTC, Correlation: 0.9256620423697585
Pair: AZO-PSA, Correlation: 0.9228214624690082
Pair: AZO-PHM, Correlation: 0.9199520008870806
Pair: AZO-PWR, Correlation: 0.9478786994509032
Pair: AZO-QCOM, Correlation: 0.9016146260085195
Pair: AZO-DGX, Correlation: 0.9019575656919496
Pair: AZO-RJF, Correlation: 0.9585999536469473
Pair: AZO-REGN, Correlation: 0.9087139209575665
Pair: AZO-RSG, Correlation: 0.9763273200334285
Pair: AZO-ROL, Correlation: 0.9240950112073645
Pair: AZO-ROP, Correlation: 0.9168373607625188
Pair: AZO-SPGI, Correlation: 0.9168766949336538
Pair: AZO-SRE, Correlation: 0.9024948713334289
Pair: AZO-NOW, Correlation: 0.9082284534510774
Pair: AZO-SHW, Correlation: 0.9231475830749768
Pair: AZO-SNA, Correlation: 0.9409259183564168
Pair: AZO-SO, Correlation: 0.9627039686420568
Pair: AZO-STLD, Correlation: 0.9618632555977886
Pair: AZO-STE, Correlation: 0.9164051575135513
Pair: AZO-SYK, Correlation: 0.9344696637567094
Pair: AZO-SNPS, Correlation: 0.9725494726241528
Pair: AZO-TMUS, Correlation: 0.9446674057919332
Pair: AZO-TEL, Correlation: 0.9079181961037629
Pair: AZO-TXN, Correlation: 0.9145751764764787
Pair: AZO-TPL, Correlation: 0.9299075094652915
Pair: AZO-TMO, Correlation: 0.9265313884084497
Pair: AZO-TJX, Correlation: 0.9575314688742815
Pair: AZO-TSCO, Correlation: 0.9830676203991756
Pair: AZO-TT, Correlation: 0.9447779710207596
Pair: AZO-TDG, Correlation: 0.9538833376739576
Pair: AZO-TRV, Correlation: 0.9428676365207145
Pair: AZO-UNP, Correlation: 0.9111113576999588
Pair: AZO-URI, Correlation: 0.9438687709452749
Pair: AZO-UNH, Correlation: 0.9574197707698066
Pair: AZO-VLO, Correlation: 0.9270046457974238
Pair: AZO-VRSK, Correlation: 0.9374162435384517
Pair: AZO-VRTX, Correlation: 0.9433623669371775
Pair: AZO-VICI, Correlation: 0.9228517645380515
Pair: AZO-V, Correlation: 0.9153712718318272
Pair: AZO-VMC, Correlation: 0.9386791457145038
Pair: AZO-WRB, Correlation: 0.9763838595590442
Pair: AZO-GWW, Correlation: 0.9626609882542075
Pair: AZO-WMT, Correlation: 0.9384574371015771
Pair: AZO-WM, Correlation: 0.9663755201499684
Pair: AZO-WTW, Correlation: 0.925601935830188
Pair: AZO-YUM, Correlation: 0.9265762628435176
Pair: AVB-CPT, Correlation: 0.9539873195104246
Pair: AVB-COF, Correlation: 0.9059280856470189
Pair: AVB-CBRE, Correlation: 0.9055624541702905
Pair: AVB-CE, Correlation: 0.9038469673472335
Pair: AVB-CHD, Correlation: 0.9124595815987848
Pair: AVB-CINF, Correlation: 0.9513436465103969
Pair: AVB-CSCO, Correlation: 0.906824900889404
Pair: AVB-CME, Correlation: 0.922500201624579
Pair: AVB-CMS, Correlation: 0.936868729509719
Pair: AVB-KO, Correlation: 0.9186455222493278
Pair: AVB-CL, Correlation: 0.901292152265452
Pair: AVB-CMCSA, Correlation: 0.9116819216255826
Pair: AVB-ED, Correlation: 0.9153355168882711
Pair: AVB-STZ, Correlation: 0.912580873428081
Pair: AVB-COO, Correlation: 0.9325271421102839
Pair: AVB-DLR, Correlation: 0.9096936172050705
Pair: AVB-DFS, Correlation: 0.9145288897560118
Pair: AVB-DTE, Correlation: 0.9486322698143335
Pair: AVB-DUK, Correlation: 0.9457121604514968
Pair: AVB-ECL, Correlation: 0.9077250607735233
Pair: AVB-EIX, Correlation: 0.9011004670361704
Pair: AVB-ETR, Correlation: 0.9027407425421519
Pair: AVB-EFX, Correlation: 0.9243955132266409
Pair: AVB-EQR, Correlation: 0.9887103224153251
Pair: AVB-ESS, Correlation: 0.9843373034180104
Pair: AVB-EVRG, Correlation: 0.9425655991499837
Pair: AVB-EXR, Correlation: 0.9361309032333085
Pair: AVB-FITB, Correlation: 0.9108728882567013
Pair: AVB-HSIC, Correlation: 0.9032291772578661
Pair: AVB-HD, Correlation: 0.9102157056766738
Pair: AVB-HON, Correlation: 0.9216812059287971
Pair: AVB-HBAN, Correlation: 0.9186427480644118
Pair: AVB-ICE, Correlation: 0.9169237867953524
Pair: AVB-JNJ, Correlation: 0.9172143525804721
Pair: AVB-KDP, Correlation: 0.9068511158439598
Pair: AVB-KMB, Correlation: 0.9099336608722516
Pair: AVB-LHX, Correlation: 0.916714792954721
Pair: AVB-LH, Correlation: 0.9068865126443725
Pair: AVB-LYV, Correlation: 0.9274428888457891
Pair: AVB-MAS, Correlation: 0.902062681439168
Pair: AVB-MAA, Correlation: 0.9347597951225357
Pair: AVB-MDLZ, Correlation: 0.9057218821357484
Pair: AVB-NI, Correlation: 0.9445405714632745
Pair: AVB-NTRS, Correlation: 0.9066261822657793
Pair: AVB-PAYX, Correlation: 0.9103282348434831
Pair: AVB-PNW, Correlation: 0.90523558428681
Pair: AVB-PNC, Correlation: 0.9334870342899068
Pair: AVB-PPL, Correlation: 0.9044133963382435
Pair: AVB-PEG, Correlation: 0.9297333316445804
Pair: AVB-PSA, Correlation: 0.9427104263941368
Pair: AVB-DGX, Correlation: 0.9004154857503346
Pair: AVB-RTX, Correlation: 0.9018732694925373
Pair: AVB-O, Correlation: 0.9496297420711397
Pair: AVB-REG, Correlation: 0.9254478851097628
Pair: AVB-ROP, Correlation: 0.90349073917389
Pair: AVB-ROST, Correlation: 0.9020806054729374
Pair: AVB-SRE, Correlation: 0.9218151766036163
Pair: AVB-SHW, Correlation: 0.9041878889720831
Pair: AVB-SBUX, Correlation: 0.9034127933171108
Pair: AVB-SYY, Correlation: 0.9198311914994048
Pair: AVB-TEL, Correlation: 0.9142485756765567
Pair: AVB-TRV, Correlation: 0.9047036378858734
Pair: AVB-TYL, Correlation: 0.9054203229602461
Pair: AVB-UDR, Correlation: 0.9813702106606464
Pair: AVB-UNP, Correlation: 0.909260828703914
Pair: AVB-VLTO, Correlation: 0.9263871152561208
Pair: AVB-WAT, Correlation: 0.9159341176499957
Pair: AVB-WEC, Correlation: 0.9129084147315508
Pair: AVB-WELL, Correlation: 0.9211076547211738
Pair: AVB-XEL, Correlation: 0.9029617780275887
Pair: AVB-YUM, Correlation: 0.9110486267008783
Pair: AVY-BAC, Correlation: 0.9525434883358579
Pair: AVY-BBY, Correlation: 0.9230783790938238
Pair: AVY-TECH, Correlation: 0.9339084762148772
Pair: AVY-BLK, Correlation: 0.9826191800578666
Pair: AVY-BX, Correlation: 0.9438029783050775
Pair: AVY-BSX, Correlation: 0.9290929539498112
Pair: AVY-BR, Correlation: 0.9760033950666106
Pair: AVY-BRO, Correlation: 0.9494701198401275
Pair: AVY-CDNS, Correlation: 0.927953876401083
Pair: AVY-CPT, Correlation: 0.9258840758090128
Pair: AVY-COF, Correlation: 0.9285380537375957
Pair: AVY-CAT, Correlation: 0.9238845709132313
Pair: AVY-CBOE, Correlation: 0.925017209892664
Pair: AVY-CBRE, Correlation: 0.9676440751613431
Pair: AVY-CDW, Correlation: 0.9777913150899846
Pair: AVY-CE, Correlation: 0.9519511087138149
Pair: AVY-CNC, Correlation: 0.9090902771673517
Pair: AVY-CRL, Correlation: 0.91781547349369
Pair: AVY-SCHW, Correlation: 0.9506872133163511
Pair: AVY-CB, Correlation: 0.9443705232419282
Pair: AVY-CHD, Correlation: 0.952864327472296
Pair: AVY-CI, Correlation: 0.9397210979680312
Pair: AVY-CINF, Correlation: 0.9547670937317125
Pair: AVY-CTAS, Correlation: 0.9372660020102812
Pair: AVY-CSCO, Correlation: 0.9402320958950767
Pair: AVY-CME, Correlation: 0.949823822806716
Pair: AVY-CMS, Correlation: 0.9319648018471348
Pair: AVY-KO, Correlation: 0.9521294791147049
Pair: AVY-CL, Correlation: 0.9031201262623858
Pair: AVY-ED, Correlation: 0.9104763293010018
Pair: AVY-STZ, Correlation: 0.910675538076622
Pair: AVY-COO, Correlation: 0.9429743832198273
Pair: AVY-CPRT, Correlation: 0.9559775807190116
Pair: AVY-GLW, Correlation: 0.9401403301510084
Pair: AVY-CSGP, Correlation: 0.9462566423795322
Pair: AVY-COST, Correlation: 0.9337721334356893
Pair: AVY-CSX, Correlation: 0.9727066018994189
Pair: AVY-CMI, Correlation: 0.9544519734354802
Pair: AVY-DHR, Correlation: 0.9812927809558326
Pair: AVY-DRI, Correlation: 0.9664739736131304
Pair: AVY-DE, Correlation: 0.9593955104458775
Pair: AVY-DXCM, Correlation: 0.9219047574368918
Pair: AVY-DLR, Correlation: 0.9297675884611774
Pair: AVY-DFS, Correlation: 0.9446101424169255
Pair: AVY-DPZ, Correlation: 0.9622224444889452
Pair: AVY-DOV, Correlation: 0.9807588777196811
Pair: AVY-DHI, Correlation: 0.9273037224110084
Pair: AVY-DTE, Correlation: 0.947030404327845
Pair: AVY-DUK, Correlation: 0.9540431510646876
Pair: AVY-EBAY, Correlation: 0.9291589722664054
Pair: AVY-ECL, Correlation: 0.9118655073099774
Pair: AVY-EW, Correlation: 0.928686145512328
Pair: AVY-ELV, Correlation: 0.9679828206047479
Pair: AVY-EMR, Correlation: 0.9636839150765975
Pair: AVY-ETR, Correlation: 0.9462484157878327
Pair: AVY-EFX, Correlation: 0.9684123860972749
Pair: AVY-EQIX, Correlation: 0.9631196983802432
Pair: AVY-EG, Correlation: 0.923744658869717
Pair: AVY-EXC, Correlation: 0.9091937548870589
Pair: AVY-EXPD, Correlation: 0.9822116306952523
Pair: AVY-EXR, Correlation: 0.9596259084290173
Pair: AVY-FDS, Correlation: 0.9670054288377722
Pair: AVY-FAST, Correlation: 0.9527298872069719
Pair: AVY-FITB, Correlation: 0.9421581380398284
Pair: AVY-FI, Correlation: 0.9402330142014509
Pair: AVY-FTNT, Correlation: 0.9335792376707939
Pair: AVY-GRMN, Correlation: 0.9528736000260273
Pair: AVY-IT, Correlation: 0.9335008154378092
Pair: AVY-GEN, Correlation: 0.9397708466805357
Pair: AVY-GD, Correlation: 0.9136018846188868
Pair: AVY-GPC, Correlation: 0.9168724796193009
Pair: AVY-GL, Correlation: 0.9024108716962028
Pair: AVY-GS, Correlation: 0.9436639609429652
Pair: AVY-HIG, Correlation: 0.9251355654011296
Pair: AVY-HCA, Correlation: 0.9521870880456209
Pair: AVY-HSY, Correlation: 0.9221851136444777
Pair: AVY-HLT, Correlation: 0.9326555749331715
Pair: AVY-HOLX, Correlation: 0.959212375740454
Pair: AVY-HD, Correlation: 0.9837751632989266
Pair: AVY-HON, Correlation: 0.9717976454904096
Pair: AVY-HPQ, Correlation: 0.9277220990031203
Pair: AVY-HUM, Correlation: 0.9085189650379994
Pair: AVY-IEX, Correlation: 0.9746860664048961
Pair: AVY-IDXX, Correlation: 0.9666218471617877
Pair: AVY-ITW, Correlation: 0.9812066103123103
Pair: AVY-PODD, Correlation: 0.9124304238252138
Pair: AVY-ICE, Correlation: 0.9737855117207637
Pair: AVY-IPG, Correlation: 0.9399562973996043
Pair: AVY-INTU, Correlation: 0.9758686680068003
Pair: AVY-ISRG, Correlation: 0.9565593199844561
Pair: AVY-INVH, Correlation: 0.925402821587705
Pair: AVY-IQV, Correlation: 0.9759453230802605
Pair: AVY-JBHT, Correlation: 0.9629109887480003
Pair: AVY-JKHY, Correlation: 0.9244687296006001
Pair: AVY-J, Correlation: 0.967440558518029
Pair: AVY-JNJ, Correlation: 0.9459373910576202
Pair: AVY-JCI, Correlation: 0.942859281798324
Pair: AVY-JPM, Correlation: 0.9660373013784752
Pair: AVY-KDP, Correlation: 0.9577796254495072
Pair: AVY-KEYS, Correlation: 0.9406349508645884
Pair: AVY-KLAC, Correlation: 0.9087044002132947
Pair: AVY-LHX, Correlation: 0.9521525980932559
Pair: AVY-LH, Correlation: 0.9802873889341035
Pair: AVY-LRCX, Correlation: 0.940803733670941
Pair: AVY-LDOS, Correlation: 0.9456339776860285
Pair: AVY-LEN, Correlation: 0.914251012275942
Pair: AVY-LII, Correlation: 0.9243682983145256
Pair: AVY-LIN, Correlation: 0.9498377185583404
Pair: AVY-LYV, Correlation: 0.9619460312615782
Pair: AVY-LMT, Correlation: 0.9361923648067131
Pair: AVY-LOW, Correlation: 0.9783508403177774
Pair: AVY-LULU, Correlation: 0.9206155509394172
Pair: AVY-MAR, Correlation: 0.9368995925711385
Pair: AVY-MMC, Correlation: 0.9683173104789841
Pair: AVY-MLM, Correlation: 0.9572955116669363
Pair: AVY-MAS, Correlation: 0.9668563950241892
Pair: AVY-MA, Correlation: 0.970242874847742
Pair: AVY-MCD, Correlation: 0.9676734464630096
Pair: AVY-MRK, Correlation: 0.9207074397963371
Pair: AVY-MET, Correlation: 0.9375907958233476
Pair: AVY-MTD, Correlation: 0.9780083554634269
Pair: AVY-MGM, Correlation: 0.9091460278612451
Pair: AVY-MCHP, Correlation: 0.9826132012037937
Pair: AVY-MU, Correlation: 0.9405731061037644
Pair: AVY-MSFT, Correlation: 0.9615409520288865
Pair: AVY-MAA, Correlation: 0.9485675743709326
Pair: AVY-MOH, Correlation: 0.9587387078495971
Pair: AVY-MDLZ, Correlation: 0.9514060247652717
Pair: AVY-MPWR, Correlation: 0.9343066531937423
Pair: AVY-MNST, Correlation: 0.9530768660258153
Pair: AVY-MCO, Correlation: 0.9777292020541929
Pair: AVY-MS, Correlation: 0.968875771864252
Pair: AVY-MSI, Correlation: 0.9372636643379518
Pair: AVY-MSCI, Correlation: 0.9721145496948956
Pair: AVY-NDAQ, Correlation: 0.9836934187285873
Pair: AVY-NFLX, Correlation: 0.9064775252664681
Pair: AVY-NEE, Correlation: 0.956743251044167
Pair: AVY-NKE, Correlation: 0.9004490710633873
Pair: AVY-NDSN, Correlation: 0.9805877741026586
Pair: AVY-NSC, Correlation: 0.9677783755763169
Pair: AVY-NOC, Correlation: 0.9424683487256071
Pair: AVY-NVR, Correlation: 0.9555949686856363
Pair: AVY-NXPI, Correlation: 0.9679790859340647
Pair: AVY-ORLY, Correlation: 0.9333027853161803
Pair: AVY-ODFL, Correlation: 0.9543796273088171
Pair: AVY-ORCL, Correlation: 0.9017305369429592
Pair: AVY-PKG, Correlation: 0.9524910766655126
Pair: AVY-PH, Correlation: 0.914018096091849
Pair: AVY-PAYX, Correlation: 0.9777732544632621
Pair: AVY-PEP, Correlation: 0.9620427852128423
Pair: AVY-PNC, Correlation: 0.9505118412015893
Pair: AVY-POOL, Correlation: 0.9641989427559078
Pair: AVY-PFG, Correlation: 0.9188735292480964
Pair: AVY-PG, Correlation: 0.9641701902884696
Pair: AVY-PGR, Correlation: 0.9141204756595375
Pair: AVY-PLD, Correlation: 0.9677214073022278
Pair: AVY-PEG, Correlation: 0.9543234305329746
Pair: AVY-PTC, Correlation: 0.9657268839692769
Pair: AVY-PSA, Correlation: 0.9373585374287968
Pair: AVY-QCOM, Correlation: 0.9258178679870199
Pair: AVY-DGX, Correlation: 0.9703515205738629
Pair: AVY-RJF, Correlation: 0.9592908032039456
Pair: AVY-RTX, Correlation: 0.9015808824175237
Pair: AVY-RF, Correlation: 0.9519325700342163
Pair: AVY-RSG, Correlation: 0.957483728475891
Pair: AVY-RMD, Correlation: 0.954278326214493
Pair: AVY-RVTY, Correlation: 0.9229990873115329
Pair: AVY-ROK, Correlation: 0.9715776892348874
Pair: AVY-ROL, Correlation: 0.9661654252162571
Pair: AVY-ROP, Correlation: 0.9734162408699023
Pair: AVY-ROST, Correlation: 0.9397189577418529
Pair: AVY-SPGI, Correlation: 0.9796911716037774
Pair: AVY-CRM, Correlation: 0.9470980223005431
Pair: AVY-STX, Correlation: 0.933057035570608
Pair: AVY-SRE, Correlation: 0.9206389727806327
Pair: AVY-NOW, Correlation: 0.9466865326195182
Pair: AVY-SHW, Correlation: 0.9810026775167796
Pair: AVY-SNA, Correlation: 0.9310673973981567
Pair: AVY-SO, Correlation: 0.9484099576344698
Pair: AVY-SBUX, Correlation: 0.9361870732955789
Pair: AVY-STE, Correlation: 0.9755702630772486
Pair: AVY-SYK, Correlation: 0.9730227364480393
Pair: AVY-SNPS, Correlation: 0.9291350417268013
Pair: AVY-SYY, Correlation: 0.943414468171744
Pair: AVY-TMUS, Correlation: 0.9659071128686405
Pair: AVY-TROW, Correlation: 0.9017298662462685
Pair: AVY-TTWO, Correlation: 0.9124687366642739
Pair: AVY-TGT, Correlation: 0.9126370450717383
Pair: AVY-TEL, Correlation: 0.9837247937347154
Pair: AVY-TDY, Correlation: 0.9655519355395366
Pair: AVY-TER, Correlation: 0.9609334961509304
Pair: AVY-TXN, Correlation: 0.9880131470639989
Pair: AVY-TXT, Correlation: 0.9062921259078773
Pair: AVY-TMO, Correlation: 0.9768259998715284
Pair: AVY-TJX, Correlation: 0.9436298811671137
Pair: AVY-TSCO, Correlation: 0.9425328593943988
Pair: AVY-TT, Correlation: 0.918911263417575
Pair: AVY-TDG, Correlation: 0.9204515352014139
Pair: AVY-TRV, Correlation: 0.9409609588303497
Pair: AVY-TYL, Correlation: 0.9646456418950656
Pair: AVY-UDR, Correlation: 0.900318334442164
Pair: AVY-ULTA, Correlation: 0.90643928023142
Pair: AVY-UNP, Correlation: 0.9704737031462604
Pair: AVY-UPS, Correlation: 0.9335084818642351
Pair: AVY-UNH, Correlation: 0.9704282742054866
Pair: AVY-VRSN, Correlation: 0.903731944934533
Pair: AVY-VRSK, Correlation: 0.9606749080138626
Pair: AVY-VRTX, Correlation: 0.9009048914684019
Pair: AVY-VICI, Correlation: 0.9043391342653372
Pair: AVY-V, Correlation: 0.9711117544894331
Pair: AVY-VMC, Correlation: 0.9581756309998711
Pair: AVY-WRB, Correlation: 0.9483527642405387
Pair: AVY-WMT, Correlation: 0.9366668739807061
Pair: AVY-WM, Correlation: 0.9749956952688552
Pair: AVY-WAT, Correlation: 0.9768400627505117
Pair: AVY-WEC, Correlation: 0.9276302403591048
Pair: AVY-WST, Correlation: 0.9551331045519031
Pair: AVY-WTW, Correlation: 0.9721882066095979
Pair: AVY-WDAY, Correlation: 0.9077913621415338
Pair: AVY-XEL, Correlation: 0.9248873661561149
Pair: AVY-XYL, Correlation: 0.9817266070624957
Pair: AVY-YUM, Correlation: 0.9698704321406155
Pair: AVY-ZBRA, Correlation: 0.9072367285093329
Pair: AVY-ZTS, Correlation: 0.9584028792827162
Pair: AXON-BX, Correlation: 0.9378938726019426
Pair: AXON-BSX, Correlation: 0.9114994518951327
Pair: AXON-AVGO, Correlation: 0.958448042428755
Pair: AXON-BRO, Correlation: 0.9511721861473653
Pair: AXON-BLDR, Correlation: 0.9342779397301963
Pair: AXON-CDNS, Correlation: 0.9460467405332185
Pair: AXON-CAT, Correlation: 0.9589781995793385
Pair: AXON-CBRE, Correlation: 0.9036414739677151
Pair: AXON-COR, Correlation: 0.9170088646910517
Pair: AXON-CMG, Correlation: 0.9497791239722324
Pair: AXON-CB, Correlation: 0.9062341304255164
Pair: AXON-CTAS, Correlation: 0.9696738873733307
Pair: AXON-CPRT, Correlation: 0.9452262225449978
Pair: AXON-COST, Correlation: 0.9575186457159428
Pair: AXON-CMI, Correlation: 0.9295774946096502
Pair: AXON-DECK, Correlation: 0.9666637921742499
Pair: AXON-DELL, Correlation: 0.9082230434428027
Pair: AXON-DOV, Correlation: 0.9116288247543626
Pair: AXON-DHI, Correlation: 0.9630040323460082
Pair: AXON-ETN, Correlation: 0.9690994538256862
Pair: AXON-EMR, Correlation: 0.9196593670325875
Pair: AXON-ERIE, Correlation: 0.9422849268377729
Pair: AXON-FICO, Correlation: 0.9719193863491008
Pair: AXON-FAST, Correlation: 0.9397545997113347
Pair: AXON-FTNT, Correlation: 0.9125753801723429
Pair: AXON-GRMN, Correlation: 0.923654030058819
Pair: AXON-IT, Correlation: 0.9480288619910155
Pair: AXON-GEV, Correlation: 0.9185272761147742
Pair: AXON-GS, Correlation: 0.9369694312647077
Pair: AXON-HIG, Correlation: 0.9187087975966227
Pair: AXON-HCA, Correlation: 0.9407337262433283
Pair: AXON-HLT, Correlation: 0.9486770490703338
Pair: AXON-HWM, Correlation: 0.9110422034564677
Pair: AXON-HUBB, Correlation: 0.9572081707720066
Pair: AXON-IR, Correlation: 0.9445245333761688
Pair: AXON-INTU, Correlation: 0.9185550678690068
Pair: AXON-ISRG, Correlation: 0.9419018248967055
Pair: AXON-IRM, Correlation: 0.9502017398239357
Pair: AXON-JBL, Correlation: 0.928081827123604
Pair: AXON-JPM, Correlation: 0.9298917115345126
Pair: AXON-KKR, Correlation: 0.9726549049373512
Pair: AXON-KLAC, Correlation: 0.9528708934111186
Pair: AXON-LRCX, Correlation: 0.9331970889682512
Pair: AXON-LDOS, Correlation: 0.9015165067747398
Pair: AXON-LEN, Correlation: 0.9522472984415801
Pair: AXON-LII, Correlation: 0.9311915167552015
Pair: AXON-LLY, Correlation: 0.9390560292327689
Pair: AXON-LIN, Correlation: 0.948901315406027
Pair: AXON-LOW, Correlation: 0.9074971831163002
Pair: AXON-MMC, Correlation: 0.9236485083737408
Pair: AXON-MLM, Correlation: 0.9302418240424528
Pair: AXON-MSFT, Correlation: 0.936842702307367
Pair: AXON-MPWR, Correlation: 0.9475391054937111
Pair: AXON-MCO, Correlation: 0.9113854568537326
Pair: AXON-MS, Correlation: 0.9168339418257916
Pair: AXON-MSI, Correlation: 0.9667065893368245
Pair: AXON-NTAP, Correlation: 0.9013451896713054
Pair: AXON-NRG, Correlation: 0.90691433018495
Pair: AXON-NVDA, Correlation: 0.9154070824425593
Pair: AXON-NVR, Correlation: 0.9455458700786912
Pair: AXON-ORLY, Correlation: 0.9400292135280442
Pair: AXON-ODFL, Correlation: 0.9245224015082396
Pair: AXON-ORCL, Correlation: 0.9725733918211499
Pair: AXON-PCAR, Correlation: 0.947200064421727
Pair: AXON-PKG, Correlation: 0.9081333545694482
Pair: AXON-PANW, Correlation: 0.948768314417699
Pair: AXON-PH, Correlation: 0.97404940171344
Pair: AXON-PNR, Correlation: 0.9066661652528046
Pair: AXON-PGR, Correlation: 0.9655053210052685
Pair: AXON-PTC, Correlation: 0.9208949511988368
Pair: AXON-PHM, Correlation: 0.9583984507505102
Pair: AXON-PWR, Correlation: 0.9538129348131493
Pair: AXON-RJF, Correlation: 0.9146217116072319
Pair: AXON-RSG, Correlation: 0.9404692263136878
Pair: AXON-NOW, Correlation: 0.9339300435338799
Pair: AXON-SHW, Correlation: 0.9010309521972334
Pair: AXON-SO, Correlation: 0.9061262573966135
Pair: AXON-STLD, Correlation: 0.9222993209257326
Pair: AXON-SYK, Correlation: 0.9142647583630531
Pair: AXON-SNPS, Correlation: 0.9413521124455305
Pair: AXON-TMUS, Correlation: 0.92787207797973
Pair: AXON-TPL, Correlation: 0.9332383729437694
Pair: AXON-TJX, Correlation: 0.9380675479311874
Pair: AXON-TSCO, Correlation: 0.9381992054422693
Pair: AXON-TT, Correlation: 0.9807923367304967
Pair: AXON-TDG, Correlation: 0.9610797023353314
Pair: AXON-URI, Correlation: 0.9711712262483398
Pair: AXON-VRSK, Correlation: 0.9035038815276866
Pair: AXON-VRTX, Correlation: 0.9088247326232455
Pair: AXON-VMC, Correlation: 0.9020115308046397
Pair: AXON-WRB, Correlation: 0.918177012960753
Pair: AXON-GWW, Correlation: 0.962827901401156
Pair: AXON-WMT, Correlation: 0.9492294700044508
Pair: AXON-WM, Correlation: 0.9166792910252858
Pair: BALL-BBY, Correlation: 0.9251930505087229
Pair: BALL-TECH, Correlation: 0.911702161976303
Pair: BALL-CPT, Correlation: 0.9026529054464458
Pair: BALL-KMX, Correlation: 0.9243035174284824
Pair: BALL-CE, Correlation: 0.900124446190155
Pair: BALL-CRL, Correlation: 0.9196996195300974
Pair: BALL-CHTR, Correlation: 0.9452021028149376
Pair: BALL-CHD, Correlation: 0.905261720570071
Pair: BALL-CLX, Correlation: 0.9171277828604668
Pair: BALL-CMS, Correlation: 0.9124160802816219
Pair: BALL-CMCSA, Correlation: 0.9312426283952585
Pair: BALL-COO, Correlation: 0.9377012821037451
Pair: BALL-CSGP, Correlation: 0.9190433618061534
Pair: BALL-CCI, Correlation: 0.9558607956893556
Pair: BALL-DLR, Correlation: 0.9088464247953981
Pair: BALL-DPZ, Correlation: 0.9200707576901657
Pair: BALL-EBAY, Correlation: 0.9201212503693026
Pair: BALL-ECL, Correlation: 0.9275066590126587
Pair: BALL-EW, Correlation: 0.946215944268815
Pair: BALL-EQIX, Correlation: 0.9020363756348889
Pair: BALL-ESS, Correlation: 0.9015886427948763
Pair: BALL-EL, Correlation: 0.9080321349837396
Pair: BALL-ES, Correlation: 0.9444647030734309
Pair: BALL-GPN, Correlation: 0.9242270702672498
Pair: BALL-HON, Correlation: 0.9070128422430095
Pair: BALL-IDXX, Correlation: 0.9018551038448128
Pair: BALL-KDP, Correlation: 0.9030887003325334
Pair: BALL-LHX, Correlation: 0.9036758969132938
Pair: BALL-MKTX, Correlation: 0.9379780889548623
Pair: BALL-MKC, Correlation: 0.94662342557924
Pair: BALL-MDT, Correlation: 0.9423291241356375
Pair: BALL-NEE, Correlation: 0.9171087014171874
Pair: BALL-NKE, Correlation: 0.9448654903211772
Pair: BALL-NSC, Correlation: 0.9204066956641005
Pair: BALL-POOL, Correlation: 0.9081364940854013
Pair: BALL-RMD, Correlation: 0.9080860424350984
Pair: BALL-RVTY, Correlation: 0.9319847965037709
Pair: BALL-CRM, Correlation: 0.9084047527272562
Pair: BALL-SBAC, Correlation: 0.9492952065300355
Pair: BALL-SWKS, Correlation: 0.907723907696208
Pair: BALL-SBUX, Correlation: 0.914717139897145
Pair: BALL-STE, Correlation: 0.9013073252670218
Pair: BALL-TROW, Correlation: 0.9302506603978418
Pair: BALL-TTWO, Correlation: 0.9218393804265577
Pair: BALL-TDY, Correlation: 0.910932287868477
Pair: BALL-TFX, Correlation: 0.9302758683232858
Pair: BALL-TYL, Correlation: 0.9095722632561333
Pair: BALL-UDR, Correlation: 0.9107635971251016
Pair: BALL-VRSN, Correlation: 0.9298697749816945
Pair: BALL-VZ, Correlation: 0.9016541314526485
Pair: BALL-WEC, Correlation: 0.9209223195847862
Pair: BALL-XEL, Correlation: 0.9219520748713015
Pair: BALL-ZBRA, Correlation: 0.9301732159053464
Pair: BAC-BBY, Correlation: 0.9302441510412416
Pair: BAC-TECH, Correlation: 0.9057520020705668
Pair: BAC-BLK, Correlation: 0.9504059875054227
Pair: BAC-BK, Correlation: 0.9095997405296696
Pair: BAC-BR, Correlation: 0.9352771735522881
Pair: BAC-CPT, Correlation: 0.9312249010299294
Pair: BAC-COF, Correlation: 0.9390561520388663
Pair: BAC-CBRE, Correlation: 0.9484138596848012
Pair: BAC-CE, Correlation: 0.9429320306656411
Pair: BAC-CNC, Correlation: 0.904604695763731
Pair: BAC-SCHW, Correlation: 0.9659281164546066
Pair: BAC-CHD, Correlation: 0.9057951703897101
Pair: BAC-CINF, Correlation: 0.941160917095202
Pair: BAC-CSCO, Correlation: 0.944132023224822
Pair: BAC-CFG, Correlation: 0.9447457970980846
Pair: BAC-CME, Correlation: 0.9480109948242689
Pair: BAC-CMS, Correlation: 0.9117911743178063
Pair: BAC-COO, Correlation: 0.9307002699033563
Pair: BAC-GLW, Correlation: 0.9562203686110673
Pair: BAC-CSX, Correlation: 0.9521775527878543
Pair: BAC-DHR, Correlation: 0.9279878642194433
Pair: BAC-DRI, Correlation: 0.9267503005557808
Pair: BAC-DLR, Correlation: 0.9132564715070873
Pair: BAC-DFS, Correlation: 0.9298199380276294
Pair: BAC-DPZ, Correlation: 0.9360796710102445
Pair: BAC-DOV, Correlation: 0.9419496492241608
Pair: BAC-DTE, Correlation: 0.9323543217633965
Pair: BAC-DUK, Correlation: 0.9188171614897481
Pair: BAC-EBAY, Correlation: 0.9184962149210338
Pair: BAC-ECL, Correlation: 0.9028198523987367
Pair: BAC-EW, Correlation: 0.9104309843049025
Pair: BAC-ELV, Correlation: 0.9184451136700826
Pair: BAC-EMR, Correlation: 0.927358426691526
Pair: BAC-ETR, Correlation: 0.9194059328807133
Pair: BAC-EFX, Correlation: 0.9240461094392118
Pair: BAC-EQIX, Correlation: 0.9096894028186078
Pair: BAC-ESS, Correlation: 0.9008143313582706
Pair: BAC-EXPD, Correlation: 0.9227316509521633
Pair: BAC-EXR, Correlation: 0.9295520332130133
Pair: BAC-FDS, Correlation: 0.9065834325703537
Pair: BAC-FITB, Correlation: 0.9733266809239072
Pair: BAC-FI, Correlation: 0.9108969846159594
Pair: BAC-GRMN, Correlation: 0.914906335105814
Pair: BAC-GEN, Correlation: 0.9173305175138149
Pair: BAC-GM, Correlation: 0.9014545117908342
Pair: BAC-GS, Correlation: 0.919028039506282
Pair: BAC-HOLX, Correlation: 0.9023467351909809
Pair: BAC-HD, Correlation: 0.9430479245054976
Pair: BAC-HON, Correlation: 0.9478093573449573
Pair: BAC-HPQ, Correlation: 0.9262184809232689
Pair: BAC-HBAN, Correlation: 0.950168842105419
Pair: BAC-IEX, Correlation: 0.9413003855951303
Pair: BAC-IDXX, Correlation: 0.9172298435425438
Pair: BAC-ITW, Correlation: 0.931540699908211
Pair: BAC-ICE, Correlation: 0.9474781155292136
Pair: BAC-INTU, Correlation: 0.9165255001386083
Pair: BAC-ISRG, Correlation: 0.9134468459721639
Pair: BAC-IQV, Correlation: 0.9327435764685371
Pair: BAC-JBHT, Correlation: 0.9178068978421737
Pair: BAC-JKHY, Correlation: 0.9125785021251553
Pair: BAC-J, Correlation: 0.9170704815140025
Pair: BAC-JNJ, Correlation: 0.9214746048918311
Pair: BAC-JCI, Correlation: 0.9031113384301193
Pair: BAC-JPM, Correlation: 0.9465796380020365
Pair: BAC-KDP, Correlation: 0.92899827546174
Pair: BAC-KEY, Correlation: 0.9173236452691851
Pair: BAC-LHX, Correlation: 0.9537953981336512
Pair: BAC-LH, Correlation: 0.947434443343445
Pair: BAC-LDOS, Correlation: 0.9211503008577345
Pair: BAC-LYV, Correlation: 0.9627643598014581
Pair: BAC-LMT, Correlation: 0.9047006453141714
Pair: BAC-LOW, Correlation: 0.9208004633670159
Pair: BAC-MAR, Correlation: 0.9119808524833973
Pair: BAC-MMC, Correlation: 0.9000757593824924
Pair: BAC-MAS, Correlation: 0.9306477968410254
Pair: BAC-MA, Correlation: 0.9217069168349841
Pair: BAC-MCD, Correlation: 0.9089486685518674
Pair: BAC-MET, Correlation: 0.9122995665506792
Pair: BAC-MTD, Correlation: 0.9335236558438734
Pair: BAC-MGM, Correlation: 0.9070362181792073
Pair: BAC-MCHP, Correlation: 0.9247553754459271
Pair: BAC-MU, Correlation: 0.9275136225328213
Pair: BAC-MAA, Correlation: 0.9287306522491922
Pair: BAC-MCO, Correlation: 0.931587002955609
Pair: BAC-MS, Correlation: 0.9370907251138437
Pair: BAC-MSCI, Correlation: 0.9057356104647252
Pair: BAC-NDAQ, Correlation: 0.9398305001535167
Pair: BAC-NEE, Correlation: 0.9226755141301966
Pair: BAC-NDSN, Correlation: 0.9327904931062999
Pair: BAC-NSC, Correlation: 0.9533964106274538
Pair: BAC-NTRS, Correlation: 0.9445319301804157
Pair: BAC-NOC, Correlation: 0.9097835864436152
Pair: BAC-NVR, Correlation: 0.9008696167862544
Pair: BAC-NXPI, Correlation: 0.9178451858858289
Pair: BAC-PKG, Correlation: 0.9236968623135922
Pair: BAC-PAYX, Correlation: 0.9326623066425659
Pair: BAC-PEP, Correlation: 0.9023148193038879
Pair: BAC-PNC, Correlation: 0.9844914724283268
Pair: BAC-POOL, Correlation: 0.9184644012313034
Pair: BAC-PG, Correlation: 0.9006353017452502
Pair: BAC-PLD, Correlation: 0.9258059462574524
Pair: BAC-PRU, Correlation: 0.9206539315965009
Pair: BAC-PEG, Correlation: 0.9317757191433058
Pair: BAC-PTC, Correlation: 0.9170532042089573
Pair: BAC-DGX, Correlation: 0.9382841523901007
Pair: BAC-RJF, Correlation: 0.9212050873267785
Pair: BAC-RTX, Correlation: 0.9054046092887423
Pair: BAC-RF, Correlation: 0.9719664356327812
Pair: BAC-RMD, Correlation: 0.9223853610772365
Pair: BAC-RVTY, Correlation: 0.9206673658024402
Pair: BAC-ROK, Correlation: 0.92749372602098
Pair: BAC-ROL, Correlation: 0.9123894889352752
Pair: BAC-ROP, Correlation: 0.9297267688888391
Pair: BAC-ROST, Correlation: 0.9104513877609125
Pair: BAC-SPGI, Correlation: 0.9359438637647861
Pair: BAC-CRM, Correlation: 0.9133873879095913
Pair: BAC-STX, Correlation: 0.9172671294210356
Pair: BAC-SHW, Correlation: 0.9376583974046855
Pair: BAC-STE, Correlation: 0.9297436585827396
Pair: BAC-SYK, Correlation: 0.9298832455525257
Pair: BAC-SYY, Correlation: 0.9412439070762475
Pair: BAC-TMUS, Correlation: 0.9056251152696341
Pair: BAC-TROW, Correlation: 0.9062837524862574
Pair: BAC-TTWO, Correlation: 0.9125999774830715
Pair: BAC-TEL, Correlation: 0.9556082054300338
Pair: BAC-TDY, Correlation: 0.9329586954973756
Pair: BAC-TER, Correlation: 0.9127566570509369
Pair: BAC-TXN, Correlation: 0.9505861512100281
Pair: BAC-TMO, Correlation: 0.9211575337154688
Pair: BAC-TRV, Correlation: 0.9059806372971845
Pair: BAC-TFC, Correlation: 0.9122406561062253
Pair: BAC-TYL, Correlation: 0.930577489811196
Pair: BAC-UDR, Correlation: 0.9191130918177322
Pair: BAC-UNP, Correlation: 0.9418060364818457
Pair: BAC-UNH, Correlation: 0.9148102203773825
Pair: BAC-VRSK, Correlation: 0.9002214907426969
Pair: BAC-V, Correlation: 0.9276390377747437
Pair: BAC-VMC, Correlation: 0.9082076945358575
Pair: BAC-WM, Correlation: 0.9210317146234187
Pair: BAC-WAT, Correlation: 0.9531998321081339
Pair: BAC-WTW, Correlation: 0.9308843903184651
Pair: BAC-XYL, Correlation: 0.9446237402343143
Pair: BAC-YUM, Correlation: 0.9253578385646528
Pair: BAC-ZBRA, Correlation: 0.9050121988821159
Pair: BAC-ZTS, Correlation: 0.9081938308690622
Pair: BAX-FIS, Correlation: 0.9512658505274948
Pair: BAX-GPN, Correlation: 0.9052092816483884
Pair: BAX-INTC, Correlation: 0.9190496432786435
Pair: BAX-TFX, Correlation: 0.9385889999441756
Pair: BDX-BR, Correlation: 0.9210889789875764
Pair: BDX-CE, Correlation: 0.9135763443048105
Pair: BDX-CNC, Correlation: 0.9658146138660844
Pair: BDX-CHD, Correlation: 0.9317046921084865
Pair: BDX-CINF, Correlation: 0.9175243422743219
Pair: BDX-CSCO, Correlation: 0.9535723375590267
Pair: BDX-CLX, Correlation: 0.9346346267353031
Pair: BDX-CME, Correlation: 0.961056493230396
Pair: BDX-CMS, Correlation: 0.9676516972782785
Pair: BDX-KO, Correlation: 0.9022035654279702
Pair: BDX-CMCSA, Correlation: 0.9332757016909067
Pair: BDX-ED, Correlation: 0.9291967749053951
Pair: BDX-STZ, Correlation: 0.9643849557801523
Pair: BDX-COO, Correlation: 0.9527475209532466
Pair: BDX-GLW, Correlation: 0.9005655810641561
Pair: BDX-CPAY, Correlation: 0.9272845920894788
Pair: BDX-CSGP, Correlation: 0.9110118668003826
Pair: BDX-CSX, Correlation: 0.9284919293076632
Pair: BDX-DRI, Correlation: 0.9059790912084619
Pair: BDX-DLR, Correlation: 0.9186363260105751
Pair: BDX-DPZ, Correlation: 0.9273335370518424
Pair: BDX-DTE, Correlation: 0.9574013917305814
Pair: BDX-DUK, Correlation: 0.9212523937655445
Pair: BDX-ECL, Correlation: 0.9202369401172712
Pair: BDX-EW, Correlation: 0.9107842083408192
Pair: BDX-EA, Correlation: 0.9577107302955445
Pair: BDX-ETR, Correlation: 0.90471759603308
Pair: BDX-EQIX, Correlation: 0.9255619768963704
Pair: BDX-ESS, Correlation: 0.9163119662483458
Pair: BDX-EVRG, Correlation: 0.9680359451789121
Pair: BDX-ES, Correlation: 0.9412764463075542
Pair: BDX-FI, Correlation: 0.9202504996734902
Pair: BDX-GPN, Correlation: 0.9055615244677652
Pair: BDX-GL, Correlation: 0.9561498513048606
Pair: BDX-HSIC, Correlation: 0.9054079147809145
Pair: BDX-HOLX, Correlation: 0.9105261764729159
Pair: BDX-HD, Correlation: 0.9125260578828528
Pair: BDX-HON, Correlation: 0.9493218727125768
Pair: BDX-HRL, Correlation: 0.9309026301083266
Pair: BDX-HUM, Correlation: 0.9383106838504475
Pair: BDX-HBAN, Correlation: 0.9055776397640318
Pair: BDX-HII, Correlation: 0.9305545137374964
Pair: BDX-IEX, Correlation: 0.9465337869256083
Pair: BDX-ITW, Correlation: 0.9209510025445794
Pair: BDX-ICE, Correlation: 0.9139072129423981
Pair: BDX-JKHY, Correlation: 0.9731120821692077
Pair: BDX-JNJ, Correlation: 0.9646910324337636
Pair: BDX-KDP, Correlation: 0.9401736097556961
Pair: BDX-KMB, Correlation: 0.9327837976726687
Pair: BDX-LHX, Correlation: 0.949980799610878
Pair: BDX-LMT, Correlation: 0.9447602766831862
Pair: BDX-MAS, Correlation: 0.9053618700885064
Pair: BDX-MA, Correlation: 0.9098974078012014
Pair: BDX-MKC, Correlation: 0.947885748891541
Pair: BDX-MCD, Correlation: 0.9137823103519309
Pair: BDX-MDT, Correlation: 0.9280716692631522
Pair: BDX-MDLZ, Correlation: 0.9172943589319799
Pair: BDX-MNST, Correlation: 0.9261574319475072
Pair: BDX-NEE, Correlation: 0.9139663588048319
Pair: BDX-NI, Correlation: 0.9550402838110259
Pair: BDX-NDSN, Correlation: 0.9091493807475667
Pair: BDX-NSC, Correlation: 0.9147021458606213
Pair: BDX-NTRS, Correlation: 0.9174077821886184
Pair: BDX-NOC, Correlation: 0.9427453568424317
Pair: BDX-PEP, Correlation: 0.9196941909757043
Pair: BDX-PNW, Correlation: 0.9472723717067518
Pair: BDX-PEG, Correlation: 0.915198587143058
Pair: BDX-DGX, Correlation: 0.9190666004175978
Pair: BDX-O, Correlation: 0.9478717627748371
Pair: BDX-ROK, Correlation: 0.9046031179324386
Pair: BDX-ROL, Correlation: 0.9092896023678136
Pair: BDX-ROP, Correlation: 0.9317612484335759
Pair: BDX-ROST, Correlation: 0.932885327330907
Pair: BDX-SBAC, Correlation: 0.90758602869856
Pair: BDX-SRE, Correlation: 0.9316066438132472
Pair: BDX-SBUX, Correlation: 0.9244673773150932
Pair: BDX-STE, Correlation: 0.9117487371167331
Pair: BDX-SYK, Correlation: 0.9072554680815045
Pair: BDX-SYY, Correlation: 0.9575431767302202
Pair: BDX-TTWO, Correlation: 0.9368057712110718
Pair: BDX-TEL, Correlation: 0.9055575118792577
Pair: BDX-TDY, Correlation: 0.9187673393937985
Pair: BDX-TFX, Correlation: 0.9061853737099731
Pair: BDX-TXN, Correlation: 0.9121296843112519
Pair: BDX-TSN, Correlation: 0.9076179621432775
Pair: BDX-UDR, Correlation: 0.9280590464967613
Pair: BDX-ULTA, Correlation: 0.9017992745848995
Pair: BDX-UNP, Correlation: 0.9223829903218359
Pair: BDX-VRSN, Correlation: 0.9588483034357211
Pair: BDX-V, Correlation: 0.9328053169818762
Pair: BDX-WAT, Correlation: 0.9065320190974276
Pair: BDX-WEC, Correlation: 0.956469249316071
Pair: BDX-WTW, Correlation: 0.904396461782109
Pair: BDX-XEL, Correlation: 0.9560511379179549
Pair: BDX-YUM, Correlation: 0.9261983196842564
Pair: BBY-TECH, Correlation: 0.9266234826301745
Pair: BBY-BLK, Correlation: 0.9293567497363405
Pair: BBY-BR, Correlation: 0.9198319819706204
Pair: BBY-CE, Correlation: 0.9238854918889788
Pair: BBY-CRL, Correlation: 0.9254095514108697
Pair: BBY-CHTR, Correlation: 0.9019622453474663
Pair: BBY-CHD, Correlation: 0.9098030796975977
Pair: BBY-CSCO, Correlation: 0.9225037055403233
Pair: BBY-CME, Correlation: 0.9221963786770258
Pair: BBY-CMS, Correlation: 0.9080563894973526
Pair: BBY-COO, Correlation: 0.9367491217879091
Pair: BBY-GLW, Correlation: 0.9366721790154479
Pair: BBY-CSGP, Correlation: 0.9459966080194399
Pair: BBY-CCI, Correlation: 0.9125863453067297
Pair: BBY-CSX, Correlation: 0.9404715040521999
Pair: BBY-DHR, Correlation: 0.9279928566278864
Pair: BBY-DLR, Correlation: 0.9275803766841514
Pair: BBY-DPZ, Correlation: 0.9471602582869143
Pair: BBY-DOV, Correlation: 0.9088097907969759
Pair: BBY-EBAY, Correlation: 0.9360015493623504
Pair: BBY-ECL, Correlation: 0.9147998252230043
Pair: BBY-EW, Correlation: 0.9289887517429122
Pair: BBY-EA, Correlation: 0.9066757201156568
Pair: BBY-EQIX, Correlation: 0.9317404131470799
Pair: BBY-ES, Correlation: 0.9001550905583976
Pair: BBY-EXPD, Correlation: 0.9157297077932675
Pair: BBY-GRMN, Correlation: 0.9054860083971065
Pair: BBY-GEN, Correlation: 0.9003957837924433
Pair: BBY-HOLX, Correlation: 0.9116792002302659
Pair: BBY-HD, Correlation: 0.926425288336888
Pair: BBY-HON, Correlation: 0.9371456522670228
Pair: BBY-IEX, Correlation: 0.9372193229789887
Pair: BBY-IDXX, Correlation: 0.9449451262430065
Pair: BBY-ITW, Correlation: 0.9184335261560311
Pair: BBY-PODD, Correlation: 0.9202747843152115
Pair: BBY-ICE, Correlation: 0.9315205897867191
Pair: BBY-IQV, Correlation: 0.9084466925822675
Pair: BBY-JKHY, Correlation: 0.9157343270341732
Pair: BBY-JNJ, Correlation: 0.9054636692938032
Pair: BBY-KDP, Correlation: 0.9231883652888528
Pair: BBY-LHX, Correlation: 0.929283794050651
Pair: BBY-LH, Correlation: 0.9286348170528457
Pair: BBY-LDOS, Correlation: 0.9062288066887514
Pair: BBY-LYV, Correlation: 0.9128898748257153
Pair: BBY-MKTX, Correlation: 0.9033052833549496
Pair: BBY-MAS, Correlation: 0.9163069339640438
Pair: BBY-MA, Correlation: 0.9239664287166496
Pair: BBY-MKC, Correlation: 0.924082547330294
Pair: BBY-MTD, Correlation: 0.9276720262910348
Pair: BBY-MCHP, Correlation: 0.9083339069478522
Pair: BBY-MCO, Correlation: 0.9233099857027538
Pair: BBY-MSCI, Correlation: 0.9116061127903287
Pair: BBY-NDAQ, Correlation: 0.9133806958533363
Pair: BBY-NFLX, Correlation: 0.9328661794043043
Pair: BBY-NEE, Correlation: 0.9388658480608443
Pair: BBY-NKE, Correlation: 0.9279079795258696
Pair: BBY-NDSN, Correlation: 0.9209506938397776
Pair: BBY-NSC, Correlation: 0.9524914253126957
Pair: BBY-PNC, Correlation: 0.9160959662010391
Pair: BBY-POOL, Correlation: 0.9337974437552886
Pair: BBY-PLD, Correlation: 0.9147423244751173
Pair: BBY-DGX, Correlation: 0.9229980267331993
Pair: BBY-RMD, Correlation: 0.9370739288033353
Pair: BBY-RVTY, Correlation: 0.9337619564846068
Pair: BBY-ROK, Correlation: 0.9243806500927018
Pair: BBY-ROL, Correlation: 0.9180135124792572
Pair: BBY-ROP, Correlation: 0.925547361006461
Pair: BBY-ROST, Correlation: 0.9021367823929021
Pair: BBY-SPGI, Correlation: 0.9395129538250976
Pair: BBY-CRM, Correlation: 0.941488639635368
Pair: BBY-SBAC, Correlation: 0.9163736560635136
Pair: BBY-SHW, Correlation: 0.9239471538905475
Pair: BBY-SWKS, Correlation: 0.9036096810521377
Pair: BBY-SBUX, Correlation: 0.9080944496646385
Pair: BBY-STE, Correlation: 0.9291904751849104
Pair: BBY-SYK, Correlation: 0.9054134244796993
Pair: BBY-SYY, Correlation: 0.9089368480007307
Pair: BBY-TROW, Correlation: 0.9401327351263317
Pair: BBY-TTWO, Correlation: 0.9628143891220154
Pair: BBY-TEL, Correlation: 0.9180650192069117
Pair: BBY-TDY, Correlation: 0.9416971496984969
Pair: BBY-TER, Correlation: 0.93081689294879
Pair: BBY-TXN, Correlation: 0.9434715153512697
Pair: BBY-TMO, Correlation: 0.9196390355434588
Pair: BBY-TYL, Correlation: 0.9392543534694746
Pair: BBY-UNP, Correlation: 0.9238095731980775
Pair: BBY-VRSN, Correlation: 0.9266763433875655
Pair: BBY-V, Correlation: 0.9263164002684097
Pair: BBY-WAT, Correlation: 0.9138430041730161
Pair: BBY-WEC, Correlation: 0.9125227786034172
Pair: BBY-WST, Correlation: 0.9003733996844578
Pair: BBY-WTW, Correlation: 0.9172725524348763
Pair: BBY-WDAY, Correlation: 0.9160336837988702
Pair: BBY-XEL, Correlation: 0.9205239849590817
Pair: BBY-XYL, Correlation: 0.9236038673196362
Pair: BBY-ZBRA, Correlation: 0.9340906277501972
Pair: BBY-ZTS, Correlation: 0.9298298841674754
Pair: TECH-BLK, Correlation: 0.9260520157910851
Pair: TECH-CPT, Correlation: 0.9423900907982166
Pair: TECH-CBRE, Correlation: 0.9138261008329672
Pair: TECH-CE, Correlation: 0.9075072005456355
Pair: TECH-CRL, Correlation: 0.9799063515041714
Pair: TECH-SCHW, Correlation: 0.9023403721935794
Pair: TECH-COO, Correlation: 0.9150831385237467
Pair: TECH-CSGP, Correlation: 0.925303233949733
Pair: TECH-CCI, Correlation: 0.9305533896457447
Pair: TECH-CSX, Correlation: 0.9299257600979045
Pair: TECH-DHR, Correlation: 0.9589219192843124
Pair: TECH-DE, Correlation: 0.910480283622838
Pair: TECH-DXCM, Correlation: 0.9359646102230543
Pair: TECH-DG, Correlation: 0.9175888450120581
Pair: TECH-DPZ, Correlation: 0.9304561675066153
Pair: TECH-DOV, Correlation: 0.9224829593193411
Pair: TECH-EBAY, Correlation: 0.9286388569723851
Pair: TECH-EW, Correlation: 0.9616961914158825
Pair: TECH-EPAM, Correlation: 0.9511146445441236
Pair: TECH-EFX, Correlation: 0.9104717838229797
Pair: TECH-EQIX, Correlation: 0.9098523650594114
Pair: TECH-EL, Correlation: 0.926424674256004
Pair: TECH-EXPD, Correlation: 0.9339892470011376
Pair: TECH-EXR, Correlation: 0.9316763774331043
Pair: TECH-FDS, Correlation: 0.9115281883073649
Pair: TECH-GEN, Correlation: 0.9058902739873304
Pair: TECH-GNRC, Correlation: 0.9183558208317486
Pair: TECH-HOLX, Correlation: 0.917802115166167
Pair: TECH-HD, Correlation: 0.9217667169517115
Pair: TECH-HON, Correlation: 0.9213859266482254
Pair: TECH-IEX, Correlation: 0.926290490714087
Pair: TECH-IDXX, Correlation: 0.9697515907286192
Pair: TECH-PODD, Correlation: 0.9534491870224404
Pair: TECH-ICE, Correlation: 0.9036959849988434
Pair: TECH-INTU, Correlation: 0.9127357264958255
Pair: TECH-IQV, Correlation: 0.9513993570717809
Pair: TECH-JBHT, Correlation: 0.9119774998421512
Pair: TECH-J, Correlation: 0.9208973589228532
Pair: TECH-KDP, Correlation: 0.9324649923666616
Pair: TECH-KEYS, Correlation: 0.9385170838302408
Pair: TECH-LHX, Correlation: 0.9092456825048086
Pair: TECH-LH, Correlation: 0.9521333847091283
Pair: TECH-LYV, Correlation: 0.9242558735784341
Pair: TECH-LOW, Correlation: 0.9172474257601237
Pair: TECH-LULU, Correlation: 0.9274323049842284
Pair: TECH-MKC, Correlation: 0.9050398992954399
Pair: TECH-MTD, Correlation: 0.9578744326246381
Pair: TECH-MCHP, Correlation: 0.9109146481130035
Pair: TECH-MAA, Correlation: 0.9551337969801866
Pair: TECH-MRNA, Correlation: 0.9098508020822969
Pair: TECH-MOH, Correlation: 0.904596920695681
Pair: TECH-MCO, Correlation: 0.9148700228969575
Pair: TECH-MSCI, Correlation: 0.9504809161510116
Pair: TECH-NDAQ, Correlation: 0.9343774257701409
Pair: TECH-NEE, Correlation: 0.9499114930831013
Pair: TECH-NKE, Correlation: 0.9538148146569781
Pair: TECH-NDSN, Correlation: 0.9230614673138257
Pair: TECH-NSC, Correlation: 0.95338015813216
Pair: TECH-PAYX, Correlation: 0.9088103805172071
Pair: TECH-PAYC, Correlation: 0.9219389104825818
Pair: TECH-PNC, Correlation: 0.9041446062593117
Pair: TECH-POOL, Correlation: 0.9770650045519895
Pair: TECH-PLD, Correlation: 0.9532232677288903
Pair: TECH-DGX, Correlation: 0.9162195252414714
Pair: TECH-RMD, Correlation: 0.9680766984569168
Pair: TECH-RVTY, Correlation: 0.9745787538573332
Pair: TECH-ROK, Correlation: 0.9309112726751612
Pair: TECH-ROP, Correlation: 0.904842982483297
Pair: TECH-SPGI, Correlation: 0.9338658512917262
Pair: TECH-CRM, Correlation: 0.902868484790697
Pair: TECH-SBAC, Correlation: 0.9340773401339069
Pair: TECH-SHW, Correlation: 0.9192097324693858
Pair: TECH-SBUX, Correlation: 0.9131854337261466
Pair: TECH-STE, Correlation: 0.9431344759679302
Pair: TECH-TROW, Correlation: 0.9593936500588053
Pair: TECH-TGT, Correlation: 0.9723153180868144
Pair: TECH-TEL, Correlation: 0.9197340257871045
Pair: TECH-TDY, Correlation: 0.9475981869219645
Pair: TECH-TER, Correlation: 0.9526285571241055
Pair: TECH-TSLA, Correlation: 0.9142958555268332
Pair: TECH-TXN, Correlation: 0.9401051428476584
Pair: TECH-TMO, Correlation: 0.9523630103507609
Pair: TECH-TRMB, Correlation: 0.9507783727952549
Pair: TECH-TYL, Correlation: 0.9253186901843401
Pair: TECH-UNP, Correlation: 0.9236927134547755
Pair: TECH-UPS, Correlation: 0.9476623571395205
Pair: TECH-VRSN, Correlation: 0.9024708174996195
Pair: TECH-WAT, Correlation: 0.9422537905452452
Pair: TECH-WST, Correlation: 0.955992810865185
Pair: TECH-XEL, Correlation: 0.905571008116011
Pair: TECH-YUM, Correlation: 0.9012593346124751
Pair: TECH-ZBRA, Correlation: 0.976831233352628
Pair: TECH-ZTS, Correlation: 0.9480812757654526
Pair: BLK-BX, Correlation: 0.9477141896056026
Pair: BLK-BKNG, Correlation: 0.9142012298629987
Pair: BLK-BSX, Correlation: 0.9223389815352514
Pair: BLK-BR, Correlation: 0.9681338035088384
Pair: BLK-BRO, Correlation: 0.9431662283151463
Pair: BLK-CDNS, Correlation: 0.9096330361635814
Pair: BLK-CPT, Correlation: 0.9188847914447903
Pair: BLK-COF, Correlation: 0.9484143768528481
Pair: BLK-CAT, Correlation: 0.9178202718971036
Pair: BLK-CBOE, Correlation: 0.9185143201587881
Pair: BLK-CBRE, Correlation: 0.9752698496267099
Pair: BLK-CDW, Correlation: 0.9441517743665928
Pair: BLK-CE, Correlation: 0.9375917763065955
Pair: BLK-CRL, Correlation: 0.9184006628072372
Pair: BLK-SCHW, Correlation: 0.9464109943915467
Pair: BLK-CB, Correlation: 0.9377746823150392
Pair: BLK-CHD, Correlation: 0.9446105497650266
Pair: BLK-CI, Correlation: 0.924544645695816
Pair: BLK-CINF, Correlation: 0.9430385494770488
Pair: BLK-CTAS, Correlation: 0.9319077776201887
Pair: BLK-CSCO, Correlation: 0.9300530242997621
Pair: BLK-CME, Correlation: 0.9332796199784663
Pair: BLK-CMS, Correlation: 0.9218315258341367
Pair: BLK-KO, Correlation: 0.9380835187757355
Pair: BLK-CL, Correlation: 0.9229192123259025
Pair: BLK-STZ, Correlation: 0.9022779440090131
Pair: BLK-COO, Correlation: 0.9469693749776308
Pair: BLK-CPRT, Correlation: 0.9425213793899443
Pair: BLK-GLW, Correlation: 0.945024701320296
Pair: BLK-CSGP, Correlation: 0.9367286209849263
Pair: BLK-COST, Correlation: 0.9275910079864211
Pair: BLK-CSX, Correlation: 0.9591957541077433
Pair: BLK-CMI, Correlation: 0.9628869669110995
Pair: BLK-DHR, Correlation: 0.967152586945357
Pair: BLK-DRI, Correlation: 0.9451202239111985
Pair: BLK-DE, Correlation: 0.9389009012941345
Pair: BLK-DXCM, Correlation: 0.9071287211549017
Pair: BLK-DLR, Correlation: 0.9331666564876218
Pair: BLK-DFS, Correlation: 0.9567521876773344
Pair: BLK-DPZ, Correlation: 0.9583514256161981
Pair: BLK-DOV, Correlation: 0.9793711221802005
Pair: BLK-DHI, Correlation: 0.930374356823571
Pair: BLK-DTE, Correlation: 0.9350345585394736
Pair: BLK-DUK, Correlation: 0.9502453348431058
Pair: BLK-EMN, Correlation: 0.9099348274712084
Pair: BLK-EBAY, Correlation: 0.9546035746341069
Pair: BLK-ECL, Correlation: 0.9257058193331291
Pair: BLK-EW, Correlation: 0.9061916837121599
Pair: BLK-EA, Correlation: 0.9057731003000699
Pair: BLK-ELV, Correlation: 0.938866399678387
Pair: BLK-EMR, Correlation: 0.9625960930514706
Pair: BLK-ETR, Correlation: 0.9347309975212469
Pair: BLK-EFX, Correlation: 0.9766909825249765
Pair: BLK-EQIX, Correlation: 0.9624937269899109
Pair: BLK-EG, Correlation: 0.9099081167834077
Pair: BLK-EXPD, Correlation: 0.965941650870711
Pair: BLK-EXR, Correlation: 0.9502343156667228
Pair: BLK-FDS, Correlation: 0.952873394424839
Pair: BLK-FAST, Correlation: 0.9523246329084188
Pair: BLK-FDX, Correlation: 0.9029824349452109
Pair: BLK-FITB, Correlation: 0.9505588412926613
Pair: BLK-FI, Correlation: 0.9397605061738178
Pair: BLK-FTNT, Correlation: 0.924673607824102
Pair: BLK-GRMN, Correlation: 0.962323948407916
Pair: BLK-IT, Correlation: 0.9250089582856755
Pair: BLK-GEV, Correlation: 0.9439006700645262
Pair: BLK-GEN, Correlation: 0.9529858641874234
Pair: BLK-GD, Correlation: 0.9052383761756689
Pair: BLK-GS, Correlation: 0.9532890005628518
Pair: BLK-HIG, Correlation: 0.922637122708132
Pair: BLK-HCA, Correlation: 0.9461878534539455
Pair: BLK-HLT, Correlation: 0.9288187798489965
Pair: BLK-HOLX, Correlation: 0.9533080756054982
Pair: BLK-HD, Correlation: 0.9830494975396166
Pair: BLK-HON, Correlation: 0.9659239611349092
Pair: BLK-HPQ, Correlation: 0.9115845015948632
Pair: BLK-HBAN, Correlation: 0.9067478250063642
Pair: BLK-IEX, Correlation: 0.9623116152122382
Pair: BLK-IDXX, Correlation: 0.9599560279450722
Pair: BLK-ITW, Correlation: 0.9764401940539797
Pair: BLK-PODD, Correlation: 0.9058703075221077
Pair: BLK-ICE, Correlation: 0.9773349114951966
Pair: BLK-IPG, Correlation: 0.9351911310529349
Pair: BLK-INTU, Correlation: 0.9664997848365668
Pair: BLK-ISRG, Correlation: 0.9609211053752267
Pair: BLK-IQV, Correlation: 0.952353382903962
Pair: BLK-JBHT, Correlation: 0.9611267618257641
Pair: BLK-JKHY, Correlation: 0.9121513239906035
Pair: BLK-J, Correlation: 0.955310824193267
Pair: BLK-JNJ, Correlation: 0.9397462416088845
Pair: BLK-JCI, Correlation: 0.9581389331133303
Pair: BLK-JPM, Correlation: 0.9663854696851149
Pair: BLK-KDP, Correlation: 0.9359280343315294
Pair: BLK-KEYS, Correlation: 0.9159469575753632
Pair: BLK-KKR, Correlation: 0.9047771640793328
Pair: BLK-LHX, Correlation: 0.9352844776945954
Pair: BLK-LH, Correlation: 0.9785920763527843
Pair: BLK-LRCX, Correlation: 0.9263667499022971
Pair: BLK-LDOS, Correlation: 0.9395779254778573
Pair: BLK-LEN, Correlation: 0.9260303316302496
Pair: BLK-LII, Correlation: 0.929714304840323
Pair: BLK-LIN, Correlation: 0.9387472919084519
Pair: BLK-LYV, Correlation: 0.953535629306479
Pair: BLK-LMT, Correlation: 0.927460191294421
Pair: BLK-LOW, Correlation: 0.9764378401337035
Pair: BLK-LULU, Correlation: 0.905103953710748
Pair: BLK-MAR, Correlation: 0.9284440623456001
Pair: BLK-MMC, Correlation: 0.9553364340915427
Pair: BLK-MLM, Correlation: 0.9474351684147482
Pair: BLK-MAS, Correlation: 0.9736897096595324
Pair: BLK-MA, Correlation: 0.9605489484794
Pair: BLK-MCD, Correlation: 0.9479028585386272
Pair: BLK-META, Correlation: 0.9023688743690494
Pair: BLK-MET, Correlation: 0.9334713067727808
Pair: BLK-MTD, Correlation: 0.9664771802700837
Pair: BLK-MGM, Correlation: 0.9057254916249633
Pair: BLK-MCHP, Correlation: 0.9654955537025048
Pair: BLK-MU, Correlation: 0.9434270511741795
Pair: BLK-MSFT, Correlation: 0.9494223039447334
Pair: BLK-MAA, Correlation: 0.9358910774868817
Pair: BLK-MOH, Correlation: 0.9347797941133803
Pair: BLK-MDLZ, Correlation: 0.9414918606310164
Pair: BLK-MPWR, Correlation: 0.9282667943564128
Pair: BLK-MNST, Correlation: 0.9455066104844649
Pair: BLK-MCO, Correlation: 0.9820814672904952
Pair: BLK-MS, Correlation: 0.9708541436255752
Pair: BLK-MSI, Correlation: 0.9298711781633002
Pair: BLK-MSCI, Correlation: 0.962398664315473
Pair: BLK-NDAQ, Correlation: 0.9802332884543216
Pair: BLK-NFLX, Correlation: 0.9262007215939742
Pair: BLK-NEE, Correlation: 0.9478210320836084
Pair: BLK-NDSN, Correlation: 0.9734708568160415
Pair: BLK-NSC, Correlation: 0.9619170553722945
Pair: BLK-NOC, Correlation: 0.9226962522874571
Pair: BLK-NVR, Correlation: 0.9540297836525019
Pair: BLK-NXPI, Correlation: 0.9684752443905678
Pair: BLK-ORLY, Correlation: 0.9198543378864869
Pair: BLK-ODFL, Correlation: 0.9429691154219789
Pair: BLK-ORCL, Correlation: 0.9110726358817605
Pair: BLK-PKG, Correlation: 0.9606582306107565
Pair: BLK-PH, Correlation: 0.917755097185132
Pair: BLK-PAYX, Correlation: 0.9635301022796477
Pair: BLK-PNR, Correlation: 0.9285240660172042
Pair: BLK-PEP, Correlation: 0.9428960122586647
Pair: BLK-PNC, Correlation: 0.956236677147019
Pair: BLK-POOL, Correlation: 0.9587143678717225
Pair: BLK-PPG, Correlation: 0.9072907136350766
Pair: BLK-PFG, Correlation: 0.9133332810719635
Pair: BLK-PG, Correlation: 0.9534635307024008
Pair: BLK-PGR, Correlation: 0.9038408214792
Pair: BLK-PLD, Correlation: 0.9553969118990687
Pair: BLK-PRU, Correlation: 0.903814693232891
Pair: BLK-PEG, Correlation: 0.9495890804993832
Pair: BLK-PTC, Correlation: 0.9582490937633825
Pair: BLK-PSA, Correlation: 0.9345716330399169
Pair: BLK-QCOM, Correlation: 0.9273353307300615
Pair: BLK-DGX, Correlation: 0.9662970262386046
Pair: BLK-RJF, Correlation: 0.9516506944508419
Pair: BLK-RTX, Correlation: 0.903203375387633
Pair: BLK-RF, Correlation: 0.9490729421999771
Pair: BLK-RSG, Correlation: 0.9406717579318599
Pair: BLK-RMD, Correlation: 0.9515826162405042
Pair: BLK-RVTY, Correlation: 0.923066034837095
Pair: BLK-ROK, Correlation: 0.9715038702625188
Pair: BLK-ROL, Correlation: 0.957791483949778
Pair: BLK-ROP, Correlation: 0.9659133560280825
Pair: BLK-ROST, Correlation: 0.9331441011515637
Pair: BLK-SPGI, Correlation: 0.9792369646101646
Pair: BLK-CRM, Correlation: 0.9552071268315264
Pair: BLK-STX, Correlation: 0.9503410223743921
Pair: BLK-SRE, Correlation: 0.9148743787832737
Pair: BLK-NOW, Correlation: 0.9606630326999425
Pair: BLK-SHW, Correlation: 0.9852588037766382
Pair: BLK-SNA, Correlation: 0.9341520385483814
Pair: BLK-SO, Correlation: 0.9348342598611055
Pair: BLK-SBUX, Correlation: 0.933694793199486
Pair: BLK-STE, Correlation: 0.9617345808960184
Pair: BLK-SYK, Correlation: 0.9647132466546091
Pair: BLK-SNPS, Correlation: 0.910506014019271
Pair: BLK-SYY, Correlation: 0.9194619514235245
Pair: BLK-TMUS, Correlation: 0.962531866263874
Pair: BLK-TROW, Correlation: 0.9149441128447061
Pair: BLK-TTWO, Correlation: 0.9126970523658826
Pair: BLK-TGT, Correlation: 0.9117323632749761
Pair: BLK-TEL, Correlation: 0.9849013983038752
Pair: BLK-TDY, Correlation: 0.9528972448175305
Pair: BLK-TER, Correlation: 0.9557505187066031
Pair: BLK-TXN, Correlation: 0.9795658188776023
Pair: BLK-TXT, Correlation: 0.9056168506442785
Pair: BLK-TMO, Correlation: 0.9644650025614278
Pair: BLK-TJX, Correlation: 0.9411045689996357
Pair: BLK-TSCO, Correlation: 0.9367084093777774
Pair: BLK-TT, Correlation: 0.923043102754395
Pair: BLK-TDG, Correlation: 0.9125275578576755
Pair: BLK-TRV, Correlation: 0.9393257766335935
Pair: BLK-TRMB, Correlation: 0.9098429511588244
Pair: BLK-TYL, Correlation: 0.9774342998001505
Pair: BLK-UNP, Correlation: 0.9659325623952435
Pair: BLK-UPS, Correlation: 0.9271615092502968
Pair: BLK-URI, Correlation: 0.903806472748374
Pair: BLK-UNH, Correlation: 0.9528242541566951
Pair: BLK-VRSK, Correlation: 0.9563837622579214
Pair: BLK-V, Correlation: 0.9615124120911585
Pair: BLK-VMC, Correlation: 0.9512413273719353
Pair: BLK-WRB, Correlation: 0.9279668468545247
Pair: BLK-WMT, Correlation: 0.9443403458274026
Pair: BLK-WM, Correlation: 0.9551715411599029
Pair: BLK-WAT, Correlation: 0.9666319069578044
Pair: BLK-WEC, Correlation: 0.9152457138159867
Pair: BLK-WST, Correlation: 0.945511604857547
Pair: BLK-WTW, Correlation: 0.9690462586122671
Pair: BLK-WDAY, Correlation: 0.9086593300593168
Pair: BLK-XEL, Correlation: 0.9117260709865292
Pair: BLK-XYL, Correlation: 0.9705030988562605
Pair: BLK-YUM, Correlation: 0.9518673148669736
Pair: BLK-ZBRA, Correlation: 0.9155974510412425
Pair: BLK-ZTS, Correlation: 0.9461879450415409
Pair: BX-BSX, Correlation: 0.9008387018865942
Pair: BX-AVGO, Correlation: 0.9146405760274761
Pair: BX-BR, Correlation: 0.9298106466068523
Pair: BX-BRO, Correlation: 0.976385804394922
Pair: BX-BLDR, Correlation: 0.905288969105872
Pair: BX-CDNS, Correlation: 0.9547513567595745
Pair: BX-COF, Correlation: 0.9139035155446723
Pair: BX-CARR, Correlation: 0.9083472663429975
Pair: BX-CAT, Correlation: 0.9430479278077039
Pair: BX-CBRE, Correlation: 0.9702805667426764
Pair: BX-CDW, Correlation: 0.9363006657561831
Pair: BX-COR, Correlation: 0.922709335465168
Pair: BX-CMG, Correlation: 0.951324941720436
Pair: BX-CB, Correlation: 0.9371239271214441
Pair: BX-CHD, Correlation: 0.9036214141730514
Pair: BX-CINF, Correlation: 0.9102642837027869
Pair: BX-CTAS, Correlation: 0.961634082945442
Pair: BX-KO, Correlation: 0.9221971600373534
Pair: BX-CPRT, Correlation: 0.9573319674464671
Pair: BX-COST, Correlation: 0.9727010332548346
Pair: BX-CSX, Correlation: 0.9090992153953119
Pair: BX-CMI, Correlation: 0.9370424217276494
Pair: BX-DHR, Correlation: 0.9419308890178331
Pair: BX-DRI, Correlation: 0.911951405073041
Pair: BX-DECK, Correlation: 0.9139488259047258
Pair: BX-DE, Correlation: 0.9433532141853855
Pair: BX-DFS, Correlation: 0.9335613955916037
Pair: BX-DOV, Correlation: 0.9659416755572335
Pair: BX-DHI, Correlation: 0.9507804492516316
Pair: BX-DUK, Correlation: 0.9115917376890871
Pair: BX-ETN, Correlation: 0.9431463280345176
Pair: BX-ELV, Correlation: 0.9278125322067853
Pair: BX-EMR, Correlation: 0.9550444610081196
Pair: BX-ETR, Correlation: 0.9176130255104221
Pair: BX-EFX, Correlation: 0.9378957302095892
Pair: BX-EQIX, Correlation: 0.9050518673037949
Pair: BX-EXPD, Correlation: 0.9433040529372357
Pair: BX-EXR, Correlation: 0.9279153119767864
Pair: BX-FDS, Correlation: 0.9421833482086746
Pair: BX-FAST, Correlation: 0.9714111982522253
Pair: BX-FITB, Correlation: 0.910689870451681
Pair: BX-FTNT, Correlation: 0.9733640398185474
Pair: BX-GRMN, Correlation: 0.946648681230572
Pair: BX-IT, Correlation: 0.9659045691371874
Pair: BX-GEV, Correlation: 0.9472097090465842
Pair: BX-GEN, Correlation: 0.913741507652235
Pair: BX-GS, Correlation: 0.9591849599761175
Pair: BX-HIG, Correlation: 0.9305921941998226
Pair: BX-HCA, Correlation: 0.9637387349659144
Pair: BX-HLT, Correlation: 0.9583253579359772
Pair: BX-HOLX, Correlation: 0.9003244108189284
Pair: BX-HD, Correlation: 0.9452308312562612
Pair: BX-HPQ, Correlation: 0.9163895781567687
Pair: BX-HUBB, Correlation: 0.9303023859218204
Pair: BX-IDXX, Correlation: 0.9053272318489484
Pair: BX-ITW, Correlation: 0.9244503231300184
Pair: BX-IR, Correlation: 0.9134083136837517
Pair: BX-ICE, Correlation: 0.9378117124446599
Pair: BX-IPG, Correlation: 0.9003375000640973
Pair: BX-INTU, Correlation: 0.9738287259539778
Pair: BX-ISRG, Correlation: 0.9504092017822481
Pair: BX-INVH, Correlation: 0.9117109325698349
Pair: BX-IQV, Correlation: 0.9110815146981494
Pair: BX-IRM, Correlation: 0.9157675650492223
Pair: BX-JBHT, Correlation: 0.9209384345249031
Pair: BX-JBL, Correlation: 0.9141199214795016
Pair: BX-J, Correlation: 0.9623978149245294
Pair: BX-JCI, Correlation: 0.9383204319504403
Pair: BX-JPM, Correlation: 0.9410720332414177
Pair: BX-KKR, Correlation: 0.9644830836722138
Pair: BX-KLAC, Correlation: 0.9501742112477114
Pair: BX-LH, Correlation: 0.9282642221977511
Pair: BX-LRCX, Correlation: 0.9555062000444184
Pair: BX-LDOS, Correlation: 0.9137078257401777
Pair: BX-LEN, Correlation: 0.9418216166801913
Pair: BX-LII, Correlation: 0.908194825240942
Pair: BX-LIN, Correlation: 0.967851069434932
Pair: BX-LYV, Correlation: 0.9328874609715088
Pair: BX-LOW, Correlation: 0.9665642482876374
Pair: BX-MAR, Correlation: 0.9135752878606794
Pair: BX-MMC, Correlation: 0.9641866196394412
Pair: BX-MLM, Correlation: 0.9551833845179919
Pair: BX-MAS, Correlation: 0.9198575592405491
Pair: BX-MA, Correlation: 0.9289628851349082
Pair: BX-MCD, Correlation: 0.9211587501809876
Pair: BX-MET, Correlation: 0.9450684281082001
Pair: BX-MTD, Correlation: 0.9177783906600778
Pair: BX-MCHP, Correlation: 0.9243543353440301
Pair: BX-MU, Correlation: 0.9088121690804999
Pair: BX-MSFT, Correlation: 0.972645057010119
Pair: BX-MAA, Correlation: 0.9062541890023864
Pair: BX-MOH, Correlation: 0.948174111906539
Pair: BX-MDLZ, Correlation: 0.9056259691365575
Pair: BX-MPWR, Correlation: 0.9668009120069279
Pair: BX-MCO, Correlation: 0.9579966931018448
Pair: BX-MS, Correlation: 0.9690438786820788
Pair: BX-MSI, Correlation: 0.9645828774780791
Pair: BX-MSCI, Correlation: 0.9528518711014812
Pair: BX-NDAQ, Correlation: 0.9556714733929668
Pair: BX-NTAP, Correlation: 0.9049476139428677
Pair: BX-NDSN, Correlation: 0.9328229072660275
Pair: BX-NSC, Correlation: 0.902164920665131
Pair: BX-NUE, Correlation: 0.9147912042538665
Pair: BX-NVR, Correlation: 0.9471575214818247
Pair: BX-NXPI, Correlation: 0.9391462308633609
Pair: BX-ORLY, Correlation: 0.9497540163093214
Pair: BX-ODFL, Correlation: 0.9681469573380328
Pair: BX-ON, Correlation: 0.9100298046045637
Pair: BX-ORCL, Correlation: 0.954446990018169
Pair: BX-PCAR, Correlation: 0.91828726772855
Pair: BX-PKG, Correlation: 0.9301388997158618
Pair: BX-PANW, Correlation: 0.946757063761331
Pair: BX-PH, Correlation: 0.9489751649650963
Pair: BX-PAYX, Correlation: 0.9563137375658296
Pair: BX-PNR, Correlation: 0.9173473283262746
Pair: BX-PEP, Correlation: 0.9153306063451079
Pair: BX-POOL, Correlation: 0.9221544837904678
Pair: BX-PG, Correlation: 0.9468912929470239
Pair: BX-PGR, Correlation: 0.940949628743707
Pair: BX-PLD, Correlation: 0.9342454114210836
Pair: BX-PEG, Correlation: 0.922154575882919
Pair: BX-PTC, Correlation: 0.9262544960202779
Pair: BX-PSA, Correlation: 0.9227075946711255
Pair: BX-PHM, Correlation: 0.9133872484514742
Pair: BX-PWR, Correlation: 0.9250244913176902
Pair: BX-QCOM, Correlation: 0.9446287908439593
Pair: BX-DGX, Correlation: 0.9116298229236016
Pair: BX-RJF, Correlation: 0.9591257392955737
Pair: BX-RSG, Correlation: 0.9637426200781163
Pair: BX-RMD, Correlation: 0.9068782009663864
Pair: BX-ROK, Correlation: 0.9114260006822444
Pair: BX-ROL, Correlation: 0.9131013226781413
Pair: BX-ROP, Correlation: 0.921202573928592
Pair: BX-SPGI, Correlation: 0.947353232022107
Pair: BX-STX, Correlation: 0.9482513285045857
Pair: BX-NOW, Correlation: 0.9596023253329119
Pair: BX-SHW, Correlation: 0.9566894212293274
Pair: BX-SNA, Correlation: 0.9116311161219034
Pair: BX-SO, Correlation: 0.9455982624399992
Pair: BX-STLD, Correlation: 0.9132294371988691
Pair: BX-STE, Correlation: 0.9352881835607261
Pair: BX-SYK, Correlation: 0.933623338088209
Pair: BX-SNPS, Correlation: 0.9573308298919632
Pair: BX-TMUS, Correlation: 0.9442643668628249
Pair: BX-TEL, Correlation: 0.9331114120689799
Pair: BX-TDY, Correlation: 0.9074732220063503
Pair: BX-TER, Correlation: 0.9208595895654977
Pair: BX-TSLA, Correlation: 0.9114460385668695
Pair: BX-TXN, Correlation: 0.9319461581020015
Pair: BX-TPL, Correlation: 0.9229152858049904
Pair: BX-TMO, Correlation: 0.9396343996782086
Pair: BX-TJX, Correlation: 0.9334045677787449
Pair: BX-TSCO, Correlation: 0.9688976006883965
Pair: BX-TT, Correlation: 0.9570951755164846
Pair: BX-TDG, Correlation: 0.9400813237873956
Pair: BX-TRV, Correlation: 0.9184204663827634
Pair: BX-TYL, Correlation: 0.9270332453255834
Pair: BX-UNP, Correlation: 0.9255138736770651
Pair: BX-URI, Correlation: 0.9463620832197884
Pair: BX-UNH, Correlation: 0.9448033019064906
Pair: BX-VRSK, Correlation: 0.9399739164367108
Pair: BX-V, Correlation: 0.91527136541677
Pair: BX-VMC, Correlation: 0.9287849238909733
Pair: BX-WRB, Correlation: 0.9484424212029919
Pair: BX-GWW, Correlation: 0.9293333809126256
Pair: BX-WMT, Correlation: 0.9461970950713036
Pair: BX-WM, Correlation: 0.9561427674441041
Pair: BX-WAT, Correlation: 0.9140690388964986
Pair: BX-WELL, Correlation: 0.9098477821742476
Pair: BX-WST, Correlation: 0.9300637274069405
Pair: BX-WTW, Correlation: 0.9300411297273691
Pair: BX-XYL, Correlation: 0.9071834494422022
Pair: BX-YUM, Correlation: 0.9127879662969471
Pair: BX-ZTS, Correlation: 0.9025578863633277
Pair: BK-BKNG, Correlation: 0.9344541185065388
Pair: BK-BSX, Correlation: 0.9114977566252274
Pair: BK-COF, Correlation: 0.9065172589285599
Pair: BK-CARR, Correlation: 0.9109396720647411
Pair: BK-CBOE, Correlation: 0.9224615524314783
Pair: BK-CB, Correlation: 0.9067517290393904
Pair: BK-GLW, Correlation: 0.9026990723654719
Pair: BK-DFS, Correlation: 0.9085652182273471
Pair: BK-FITB, Correlation: 0.9207866252126393
Pair: BK-GEV, Correlation: 0.9492294037973381
Pair: BK-GD, Correlation: 0.9399315228687126
Pair: BK-HIG, Correlation: 0.9308260412095911
Pair: BK-HBAN, Correlation: 0.9433163804599582
Pair: BK-JPM, Correlation: 0.9214034323081143
Pair: BK-LII, Correlation: 0.9039957128498208
Pair: BK-MTB, Correlation: 0.9172221215977415
Pair: BK-MAR, Correlation: 0.9215674149207179
Pair: BK-MAS, Correlation: 0.9040889266875145
Pair: BK-NI, Correlation: 0.9058495381075803
Pair: BK-OMC, Correlation: 0.9004214300772142
Pair: BK-PKG, Correlation: 0.9271152249751271
Pair: BK-PNC, Correlation: 0.9192385688582498
Pair: BK-PRU, Correlation: 0.954489659336746
Pair: BK-PEG, Correlation: 0.9029105889931186
Pair: BK-RTX, Correlation: 0.9149909944345649
Pair: BK-RF, Correlation: 0.9090230229348114
Pair: BK-STT, Correlation: 0.9138189506092671
Pair: BK-TXT, Correlation: 0.9309970203360528
Pair: BK-TRV, Correlation: 0.9220123074520822
Pair: BK-UHS, Correlation: 0.9135255169200358
Pair: BK-VMC, Correlation: 0.9066243669441073
Pair: BKNG-BSX, Correlation: 0.9611875168290666
Pair: BKNG-AVGO, Correlation: 0.9086594412277544
Pair: BKNG-BR, Correlation: 0.9344510391156323
Pair: BKNG-BRO, Correlation: 0.9146243802109616
Pair: BKNG-CARR, Correlation: 0.901191215995791
Pair: BKNG-CAT, Correlation: 0.9203210393734577
Pair: BKNG-CBOE, Correlation: 0.9657775720850734
Pair: BKNG-COR, Correlation: 0.9283698816576945
Pair: BKNG-CB, Correlation: 0.9572368307221868
Pair: BKNG-CHD, Correlation: 0.902348350257148
Pair: BKNG-CI, Correlation: 0.9320254005111082
Pair: BKNG-CINF, Correlation: 0.9121340194922885
Pair: BKNG-CTAS, Correlation: 0.9284629962406953
Pair: BKNG-KO, Correlation: 0.9138029724594118
Pair: BKNG-CL, Correlation: 0.9314083290367743
Pair: BKNG-ED, Correlation: 0.9069169247783941
Pair: BKNG-STZ, Correlation: 0.9016480274192228
Pair: BKNG-CPRT, Correlation: 0.9090303433100457
Pair: BKNG-COST, Correlation: 0.9158378196350282
Pair: BKNG-CMI, Correlation: 0.9288996385478369
Pair: BKNG-DRI, Correlation: 0.9199632975200531
Pair: BKNG-DELL, Correlation: 0.9307697263707542
Pair: BKNG-DFS, Correlation: 0.9294371194982273
Pair: BKNG-DOV, Correlation: 0.909332905514582
Pair: BKNG-DHI, Correlation: 0.9280114814491656
Pair: BKNG-DUK, Correlation: 0.9110657254188271
Pair: BKNG-ETN, Correlation: 0.9167483071339044
Pair: BKNG-ECL, Correlation: 0.9002392519908559
Pair: BKNG-EIX, Correlation: 0.9174235530393299
Pair: BKNG-EMR, Correlation: 0.9215706501198205
Pair: BKNG-EFX, Correlation: 0.9070993240810972
Pair: BKNG-ERIE, Correlation: 0.9127482625784369
Pair: BKNG-EG, Correlation: 0.9525208712051418
Pair: BKNG-FI, Correlation: 0.9441144929988473
Pair: BKNG-IT, Correlation: 0.9250741783289836
Pair: BKNG-GEV, Correlation: 0.9333382397293443
Pair: BKNG-GD, Correlation: 0.9488047828679247
Pair: BKNG-GS, Correlation: 0.9170463325819692
Pair: BKNG-HIG, Correlation: 0.9567687111737768
Pair: BKNG-HCA, Correlation: 0.9263091466724375
Pair: BKNG-HLT, Correlation: 0.9414414603382883
Pair: BKNG-HD, Correlation: 0.9153701235069136
Pair: BKNG-HON, Correlation: 0.900794600441359
Pair: BKNG-HWM, Correlation: 0.9393666004069597
Pair: BKNG-HUBB, Correlation: 0.9224265175000742
Pair: BKNG-ITW, Correlation: 0.928868546521579
Pair: BKNG-IR, Correlation: 0.9314641081000807
Pair: BKNG-ICE, Correlation: 0.9322389562991388
Pair: BKNG-ISRG, Correlation: 0.918788906839052
Pair: BKNG-JPM, Correlation: 0.9597108076785654
Pair: BKNG-KKR, Correlation: 0.9037204191308937
Pair: BKNG-LDOS, Correlation: 0.9090899974544637
Pair: BKNG-LEN, Correlation: 0.938780720494
Pair: BKNG-LII, Correlation: 0.963394849053188
Pair: BKNG-LIN, Correlation: 0.9081541514952354
Pair: BKNG-LMT, Correlation: 0.9229082958663308
Pair: BKNG-L, Correlation: 0.9043327231049081
Pair: BKNG-LOW, Correlation: 0.9013093739949473
Pair: BKNG-MAR, Correlation: 0.9692026617584997
Pair: BKNG-MMC, Correlation: 0.9300979326184035
Pair: BKNG-MLM, Correlation: 0.947443408712997
Pair: BKNG-MAS, Correlation: 0.9403473910045688
Pair: BKNG-MA, Correlation: 0.9137131927087033
Pair: BKNG-MCD, Correlation: 0.9040025197609659
Pair: BKNG-MRK, Correlation: 0.9151955983958997
Pair: BKNG-META, Correlation: 0.9338887592574684
Pair: BKNG-MET, Correlation: 0.9045807941827948
Pair: BKNG-MCHP, Correlation: 0.9055460816092761
Pair: BKNG-MU, Correlation: 0.9146470335952862
Pair: BKNG-MDLZ, Correlation: 0.9156243000030355
Pair: BKNG-MNST, Correlation: 0.9041281320074906
Pair: BKNG-MCO, Correlation: 0.9174647570800232
Pair: BKNG-MSI, Correlation: 0.9255221329719703
Pair: BKNG-NI, Correlation: 0.9082291646893716
Pair: BKNG-NOC, Correlation: 0.9017631801934518
Pair: BKNG-NVR, Correlation: 0.9519063202566366
Pair: BKNG-NXPI, Correlation: 0.9332096481593761
Pair: BKNG-ORLY, Correlation: 0.9192715183525446
Pair: BKNG-OMC, Correlation: 0.9290341485575552
Pair: BKNG-OKE, Correlation: 0.9331585737643907
Pair: BKNG-ORCL, Correlation: 0.9295385504003713
Pair: BKNG-PCAR, Correlation: 0.9311434627653906
Pair: BKNG-PKG, Correlation: 0.9702862208045494
Pair: BKNG-PANW, Correlation: 0.9222871345892958
Pair: BKNG-PH, Correlation: 0.9421107255707472
Pair: BKNG-PAYX, Correlation: 0.9051352069156237
Pair: BKNG-PNR, Correlation: 0.9339986867354517
Pair: BKNG-PM, Correlation: 0.9210826954276455
Pair: BKNG-PSX, Correlation: 0.9087014832455422
Pair: BKNG-PFG, Correlation: 0.9192808797337485
Pair: BKNG-PGR, Correlation: 0.9181100047762183
Pair: BKNG-PRU, Correlation: 0.9330700303684711
Pair: BKNG-PEG, Correlation: 0.9341505836832089
Pair: BKNG-PTC, Correlation: 0.9396096335843644
Pair: BKNG-PHM, Correlation: 0.925751681307475
Pair: BKNG-RJF, Correlation: 0.9225088972446833
Pair: BKNG-RTX, Correlation: 0.9222719284537592
Pair: BKNG-RSG, Correlation: 0.9290900158021469
Pair: BKNG-ROL, Correlation: 0.9174429992990909
Pair: BKNG-ROP, Correlation: 0.9214973175508526
Pair: BKNG-ROST, Correlation: 0.930643334390426
Pair: BKNG-SRE, Correlation: 0.9063603437423968
Pair: BKNG-SHW, Correlation: 0.9166708352569308
Pair: BKNG-SNA, Correlation: 0.9529669876669398
Pair: BKNG-SO, Correlation: 0.9084640173392795
Pair: BKNG-SYK, Correlation: 0.9486073043344893
Pair: BKNG-TMUS, Correlation: 0.9171956395297015
Pair: BKNG-TEL, Correlation: 0.9233850896242488
Pair: BKNG-TXT, Correlation: 0.9303784167683119
Pair: BKNG-TJX, Correlation: 0.958978620774818
Pair: BKNG-TT, Correlation: 0.9243560047818229
Pair: BKNG-TDG, Correlation: 0.9409747409173458
Pair: BKNG-TRV, Correlation: 0.9605878930706248
Pair: BKNG-URI, Correlation: 0.9274786025205195
Pair: BKNG-VLO, Correlation: 0.9154690004061926
Pair: BKNG-VRSK, Correlation: 0.9198420963540677
Pair: BKNG-VRTX, Correlation: 0.920925834662471
Pair: BKNG-V, Correlation: 0.9205077593212059
Pair: BKNG-VMC, Correlation: 0.9563779173281672
Pair: BKNG-WRB, Correlation: 0.9160781097461516
Pair: BKNG-GWW, Correlation: 0.9053942021714523
Pair: BKNG-WAB, Correlation: 0.9196323486553389
Pair: BKNG-WMT, Correlation: 0.9225578774781229
Pair: BKNG-WM, Correlation: 0.9230555230849687
Pair: BKNG-WELL, Correlation: 0.9311744787486242
Pair: BKNG-WTW, Correlation: 0.9211692999915135
Pair: BKNG-XYL, Correlation: 0.9003470833615654
Pair: BKNG-YUM, Correlation: 0.9124368670700748
Pair: BSX-AVGO, Correlation: 0.9127011287974325
Pair: BSX-BR, Correlation: 0.9665655325536009
Pair: BSX-BRO, Correlation: 0.9471019926560987
Pair: BSX-CDNS, Correlation: 0.910272260053306
Pair: BSX-CAT, Correlation: 0.9240473056299572
Pair: BSX-CBOE, Correlation: 0.9731057795861593
Pair: BSX-CBRE, Correlation: 0.9140617772200237
Pair: BSX-CDW, Correlation: 0.9146700309617574
Pair: BSX-COR, Correlation: 0.9182183911724789
Pair: BSX-CB, Correlation: 0.958186617230974
Pair: BSX-CHD, Correlation: 0.9438051779158653
Pair: BSX-CI, Correlation: 0.9463984633811535
Pair: BSX-CINF, Correlation: 0.9430157334872306
Pair: BSX-CTAS, Correlation: 0.9582432125551312
Pair: BSX-CSCO, Correlation: 0.9231233767255397
Pair: BSX-CME, Correlation: 0.9425385102629987
Pair: BSX-CMS, Correlation: 0.9273149559698236
Pair: BSX-KO, Correlation: 0.9438494719020873
Pair: BSX-CL, Correlation: 0.9228743589763189
Pair: BSX-ED, Correlation: 0.9404975962575535
Pair: BSX-STZ, Correlation: 0.9023013564380377
Pair: BSX-CEG, Correlation: 0.953563696746914
Pair: BSX-COO, Correlation: 0.9150991427717272
Pair: BSX-CPRT, Correlation: 0.9403601635019675
Pair: BSX-GLW, Correlation: 0.915051677204091
Pair: BSX-COST, Correlation: 0.9442812509003269
Pair: BSX-CSX, Correlation: 0.9260633478848715
Pair: BSX-CMI, Correlation: 0.9332340824087441
Pair: BSX-DRI, Correlation: 0.9467259579579612
Pair: BSX-DELL, Correlation: 0.9299522257083468
Pair: BSX-DLR, Correlation: 0.9214956897122369
Pair: BSX-DFS, Correlation: 0.916474888673402
Pair: BSX-DPZ, Correlation: 0.914339422059031
Pair: BSX-DOV, Correlation: 0.935792020206422
Pair: BSX-DHI, Correlation: 0.9370771471571869
Pair: BSX-DTE, Correlation: 0.9277482596277343
Pair: BSX-DUK, Correlation: 0.938703206459393
Pair: BSX-ETN, Correlation: 0.9131437836230453
Pair: BSX-ECL, Correlation: 0.9272240446578197
Pair: BSX-EIX, Correlation: 0.9008513884878669
Pair: BSX-ELV, Correlation: 0.9276487101950196
Pair: BSX-EMR, Correlation: 0.9242201251877237
Pair: BSX-ETR, Correlation: 0.9500775824009853
Pair: BSX-EFX, Correlation: 0.9209220067641817
Pair: BSX-EQIX, Correlation: 0.9327817298777609
Pair: BSX-ERIE, Correlation: 0.9486410704200741
Pair: BSX-EG, Correlation: 0.9486096863998377
Pair: BSX-EXPD, Correlation: 0.9120436595752813
Pair: BSX-FDS, Correlation: 0.9216509589943835
Pair: BSX-FICO, Correlation: 0.9096680800936452
Pair: BSX-FAST, Correlation: 0.9191261846314362
Pair: BSX-FI, Correlation: 0.981094592611185
Pair: BSX-GRMN, Correlation: 0.9260266342603477
Pair: BSX-IT, Correlation: 0.9325148452741109
Pair: BSX-GEV, Correlation: 0.9279045114608223
Pair: BSX-GD, Correlation: 0.944287562600479
Pair: BSX-GDDY, Correlation: 0.949046853257902
Pair: BSX-GS, Correlation: 0.9154594837744897
Pair: BSX-HIG, Correlation: 0.9584679044106585
Pair: BSX-HCA, Correlation: 0.9469549187137354
Pair: BSX-HLT, Correlation: 0.9502878361815675
Pair: BSX-HOLX, Correlation: 0.9066167325291876
Pair: BSX-HD, Correlation: 0.9444889213091182
Pair: BSX-HON, Correlation: 0.9264360077698027
Pair: BSX-HWM, Correlation: 0.9206098307900421
Pair: BSX-HUBB, Correlation: 0.9153554136221487
Pair: BSX-IEX, Correlation: 0.9213265244179722
Pair: BSX-ITW, Correlation: 0.9460609289175305
Pair: BSX-IR, Correlation: 0.9215448399770972
Pair: BSX-ICE, Correlation: 0.9635230870672847
Pair: BSX-INTU, Correlation: 0.9278915816604231
Pair: BSX-ISRG, Correlation: 0.953912735578128
Pair: BSX-JKHY, Correlation: 0.9042353504752966
Pair: BSX-J, Correlation: 0.900010383731372
Pair: BSX-JNJ, Correlation: 0.9059159576645078
Pair: BSX-JPM, Correlation: 0.9735079453966871
Pair: BSX-KDP, Correlation: 0.9113797698660049
Pair: BSX-KKR, Correlation: 0.9003125968591619
Pair: BSX-KLAC, Correlation: 0.9088422587464812
Pair: BSX-LHX, Correlation: 0.9256519709256615
Pair: BSX-LDOS, Correlation: 0.963730254569182
Pair: BSX-LEN, Correlation: 0.9245355345898681
Pair: BSX-LII, Correlation: 0.9790541121998642
Pair: BSX-LIN, Correlation: 0.9309580545842449
Pair: BSX-LYV, Correlation: 0.918437184857388
Pair: BSX-LMT, Correlation: 0.9613493317095793
Pair: BSX-LOW, Correlation: 0.9275031625317353
Pair: BSX-MAR, Correlation: 0.9672933810397848
Pair: BSX-MMC, Correlation: 0.9552137580882296
Pair: BSX-MLM, Correlation: 0.9512765850740582
Pair: BSX-MAS, Correlation: 0.9554856448697685
Pair: BSX-MA, Correlation: 0.9582987679468242
Pair: BSX-MCD, Correlation: 0.9440595026877744
Pair: BSX-MRK, Correlation: 0.9507312521584492
Pair: BSX-META, Correlation: 0.926407970937641
Pair: BSX-MET, Correlation: 0.9028879177948972
Pair: BSX-MCHP, Correlation: 0.9208836465115008
Pair: BSX-MU, Correlation: 0.9174532429345424
Pair: BSX-MSFT, Correlation: 0.9318621569021968
Pair: BSX-MDLZ, Correlation: 0.9364499044564979
Pair: BSX-MPWR, Correlation: 0.9155312060597015
Pair: BSX-MNST, Correlation: 0.9184041512703527
Pair: BSX-MCO, Correlation: 0.9505053269614901
Pair: BSX-MS, Correlation: 0.9042649354646984
Pair: BSX-MSI, Correlation: 0.95598532802612
Pair: BSX-NDAQ, Correlation: 0.9270409051852067
Pair: BSX-NFLX, Correlation: 0.9155907944839303
Pair: BSX-NI, Correlation: 0.9321644236022992
Pair: BSX-NDSN, Correlation: 0.9256717236934852
Pair: BSX-NOC, Correlation: 0.9391901716724913
Pair: BSX-NVR, Correlation: 0.9704802428856624
Pair: BSX-NXPI, Correlation: 0.9247614676888085
Pair: BSX-ORLY, Correlation: 0.9448312647224049
Pair: BSX-ODFL, Correlation: 0.9009832976378411
Pair: BSX-OKE, Correlation: 0.9250923037715614
Pair: BSX-ORCL, Correlation: 0.9310501525222892
Pair: BSX-PCAR, Correlation: 0.9298729117278974
Pair: BSX-PKG, Correlation: 0.9628405609134577
Pair: BSX-PANW, Correlation: 0.9102001027457153
Pair: BSX-PH, Correlation: 0.9371581987353031
Pair: BSX-PAYX, Correlation: 0.9382404222024515
Pair: BSX-PEP, Correlation: 0.9295621804293899
Pair: BSX-PFG, Correlation: 0.9007189772576589
Pair: BSX-PG, Correlation: 0.9361730297937717
Pair: BSX-PGR, Correlation: 0.9525419996897214
Pair: BSX-PRU, Correlation: 0.9013387513530227
Pair: BSX-PEG, Correlation: 0.9735756655767525
Pair: BSX-PTC, Correlation: 0.9533917022882982
Pair: BSX-PHM, Correlation: 0.9246598195872915
Pair: BSX-DGX, Correlation: 0.9227768727006653
Pair: BSX-RJF, Correlation: 0.9265647709363537
Pair: BSX-RTX, Correlation: 0.93226969720217
Pair: BSX-RSG, Correlation: 0.9629753593873818
Pair: BSX-ROL, Correlation: 0.9563298774465632
Pair: BSX-ROP, Correlation: 0.9561290096036993
Pair: BSX-ROST, Correlation: 0.9596153572910597
Pair: BSX-SPGI, Correlation: 0.939055625163825
Pair: BSX-CRM, Correlation: 0.9253417657651986
Pair: BSX-SRE, Correlation: 0.9334172329891082
Pair: BSX-NOW, Correlation: 0.9170157145031318
Pair: BSX-SHW, Correlation: 0.9435574340277845
Pair: BSX-SNA, Correlation: 0.9343943171729829
Pair: BSX-SO, Correlation: 0.9450885765540227
Pair: BSX-STE, Correlation: 0.9218707282835358
Pair: BSX-SYK, Correlation: 0.978107892130587
Pair: BSX-SNPS, Correlation: 0.9069603314940932
Pair: BSX-SYY, Correlation: 0.9114818600943634
Pair: BSX-TMUS, Correlation: 0.9518124041424313
Pair: BSX-TEL, Correlation: 0.9254275226760474
Pair: BSX-TDY, Correlation: 0.9057632877881966
Pair: BSX-TXN, Correlation: 0.9350441590052349
Pair: BSX-TJX, Correlation: 0.9744656321194682
Pair: BSX-TSCO, Correlation: 0.914047554609392
Pair: BSX-TT, Correlation: 0.9392885005160182
Pair: BSX-TDG, Correlation: 0.9640678464846417
Pair: BSX-TRV, Correlation: 0.9638566559141215
Pair: BSX-TYL, Correlation: 0.9268147283105213
Pair: BSX-UNP, Correlation: 0.9304032307297748
Pair: BSX-URI, Correlation: 0.9145177677642145
Pair: BSX-UNH, Correlation: 0.9290718445217883
Pair: BSX-VLO, Correlation: 0.9159380383365257
Pair: BSX-VLTO, Correlation: 0.9485767759430592
Pair: BSX-VRSK, Correlation: 0.9542401771675669
Pair: BSX-VRTX, Correlation: 0.955793871142805
Pair: BSX-V, Correlation: 0.9618058205447225
Pair: BSX-VMC, Correlation: 0.9616953755543148
Pair: BSX-WRB, Correlation: 0.9516900311293287
Pair: BSX-GWW, Correlation: 0.9049059578370298
Pair: BSX-WMT, Correlation: 0.9544517503451454
Pair: BSX-WM, Correlation: 0.9649937682361671
Pair: BSX-WAT, Correlation: 0.9022772993732112
Pair: BSX-WEC, Correlation: 0.9015773910933516
Pair: BSX-WELL, Correlation: 0.9367853339554467
Pair: BSX-WTW, Correlation: 0.9589841562000616
Pair: BSX-XYL, Correlation: 0.9367230736910003
Pair: BSX-YUM, Correlation: 0.945729148247722
Pair: BMY-CAG, Correlation: 0.9045600297008363
Pair: BMY-CVS, Correlation: 0.9021485038823865
Pair: BMY-HSIC, Correlation: 0.9285362978851978
Pair: BMY-SJM, Correlation: 0.9167352606713298
Pair: AVGO-BRO, Correlation: 0.9454404323864002
Pair: AVGO-BLDR, Correlation: 0.9676869786286869
Pair: AVGO-CDNS, Correlation: 0.9466674241942667
Pair: AVGO-CAT, Correlation: 0.9583245725056904
Pair: AVGO-COR, Correlation: 0.9381610324947739
Pair: AVGO-CMG, Correlation: 0.9420177098903033
Pair: AVGO-CB, Correlation: 0.9156709938758774
Pair: AVGO-CTAS, Correlation: 0.9660714010866815
Pair: AVGO-CEG, Correlation: 0.946026478820498
Pair: AVGO-CPRT, Correlation: 0.9277598522514026
Pair: AVGO-COST, Correlation: 0.9635602853083605
Pair: AVGO-DECK, Correlation: 0.9770284244504817
Pair: AVGO-DELL, Correlation: 0.9648252813507524
Pair: AVGO-DHI, Correlation: 0.9652478549590935
Pair: AVGO-ETN, Correlation: 0.9846611811022834
Pair: AVGO-ERIE, Correlation: 0.9478122151986823
Pair: AVGO-FICO, Correlation: 0.9822203504435655
Pair: AVGO-FAST, Correlation: 0.9150848010791163
Pair: AVGO-IT, Correlation: 0.9498730393920157
Pair: AVGO-GS, Correlation: 0.9178293346749526
Pair: AVGO-HIG, Correlation: 0.9324390831551415
Pair: AVGO-HCA, Correlation: 0.928737490148884
Pair: AVGO-HLT, Correlation: 0.9471739701802534
Pair: AVGO-HWM, Correlation: 0.9586948764561526
Pair: AVGO-HUBB, Correlation: 0.9722177433348016
Pair: AVGO-IR, Correlation: 0.9646284528438229
Pair: AVGO-ISRG, Correlation: 0.9160851721742923
Pair: AVGO-IRM, Correlation: 0.97824844906346
Pair: AVGO-JBL, Correlation: 0.9456217808936311
Pair: AVGO-JPM, Correlation: 0.9143894520052859
Pair: AVGO-KKR, Correlation: 0.967038671136095
Pair: AVGO-KLAC, Correlation: 0.9767972536201657
Pair: AVGO-LRCX, Correlation: 0.9352997492958983
Pair: AVGO-LEN, Correlation: 0.9588041506999776
Pair: AVGO-LII, Correlation: 0.9361689767964751
Pair: AVGO-LLY, Correlation: 0.9849206064823773
Pair: AVGO-LIN, Correlation: 0.9384669994559763
Pair: AVGO-L, Correlation: 0.910154185914767
Pair: AVGO-MPC, Correlation: 0.9249128230060911
Pair: AVGO-MAR, Correlation: 0.9090799639080352
Pair: AVGO-MMC, Correlation: 0.9166709109978047
Pair: AVGO-MLM, Correlation: 0.9373197436960173
Pair: AVGO-MCK, Correlation: 0.9223631513257388
Pair: AVGO-META, Correlation: 0.9028046973424392
Pair: AVGO-MSFT, Correlation: 0.9275762492176538
Pair: AVGO-MPWR, Correlation: 0.9563501428428038
Pair: AVGO-MSI, Correlation: 0.9558367617718033
Pair: AVGO-NTAP, Correlation: 0.9060191263666798
Pair: AVGO-NRG, Correlation: 0.9209211063503462
Pair: AVGO-NVDA, Correlation: 0.9657343990126441
Pair: AVGO-NVR, Correlation: 0.9429137827301854
Pair: AVGO-ORLY, Correlation: 0.934904541971344
Pair: AVGO-ODFL, Correlation: 0.9004975446094876
Pair: AVGO-ORCL, Correlation: 0.9701126662102241
Pair: AVGO-PCAR, Correlation: 0.9632846406252336
Pair: AVGO-PKG, Correlation: 0.9032808112895131
Pair: AVGO-PANW, Correlation: 0.9704860480928954
Pair: AVGO-PH, Correlation: 0.9781284360217536
Pair: AVGO-PGR, Correlation: 0.9687566152537043
Pair: AVGO-PHM, Correlation: 0.9823010480408467
Pair: AVGO-PWR, Correlation: 0.9695439058875006
Pair: AVGO-RSG, Correlation: 0.9431731086750949
Pair: AVGO-STLD, Correlation: 0.9305355966113039
Pair: AVGO-SNPS, Correlation: 0.9455639775583548
Pair: AVGO-TJX, Correlation: 0.9288535273367861
Pair: AVGO-TSCO, Correlation: 0.9206921499106626
Pair: AVGO-TT, Correlation: 0.9764721891268217
Pair: AVGO-TDG, Correlation: 0.9715570045737407
Pair: AVGO-URI, Correlation: 0.9777759497578996
Pair: AVGO-VLTO, Correlation: 0.9145749390019542
Pair: AVGO-VRTX, Correlation: 0.9223343997545246
Pair: AVGO-VMC, Correlation: 0.9046436575020504
Pair: AVGO-WRB, Correlation: 0.9158734808576964
Pair: AVGO-GWW, Correlation: 0.9690944568357986
Pair: AVGO-WMT, Correlation: 0.9268318989870358
Pair: AVGO-WM, Correlation: 0.9076617967656583
Pair: BR-BRO, Correlation: 0.9575406605956673
Pair: BR-CHRW, Correlation: 0.9068595865319795
Pair: BR-CDNS, Correlation: 0.9290528382557586
Pair: BR-CPT, Correlation: 0.900690850234218
Pair: BR-COF, Correlation: 0.9027495581807158
Pair: BR-CARR, Correlation: 0.9376152114427768
Pair: BR-CAT, Correlation: 0.9248933091605761
Pair: BR-CBOE, Correlation: 0.9573829435851727
Pair: BR-CBRE, Correlation: 0.9491908117023643
Pair: BR-CDW, Correlation: 0.9694027500202208
Pair: BR-CE, Correlation: 0.9396677017387148
Pair: BR-COR, Correlation: 0.9029713863455231
Pair: BR-CNC, Correlation: 0.9252565721626159
Pair: BR-SCHW, Correlation: 0.9177167099817874
Pair: BR-CB, Correlation: 0.9490185594041561
Pair: BR-CHD, Correlation: 0.9715287724389514
Pair: BR-CI, Correlation: 0.94732459349848
Pair: BR-CINF, Correlation: 0.9537293720841238
Pair: BR-CTAS, Correlation: 0.9531206479225832
Pair: BR-CSCO, Correlation: 0.9586283753279807
Pair: BR-CME, Correlation: 0.9713058025127865
Pair: BR-CMS, Correlation: 0.9495625555921218
Pair: BR-KO, Correlation: 0.9556436751019418
Pair: BR-CL, Correlation: 0.9183529382226432
Pair: BR-ED, Correlation: 0.9339121886557973
Pair: BR-STZ, Correlation: 0.9280592001965257
Pair: BR-COO, Correlation: 0.9497635499641565
Pair: BR-CPRT, Correlation: 0.963570962899999
Pair: BR-GLW, Correlation: 0.9370842682701841
Pair: BR-CSGP, Correlation: 0.9515492806919491
Pair: BR-COST, Correlation: 0.9439684232466252
Pair: BR-CSX, Correlation: 0.9755369347703773
Pair: BR-CMI, Correlation: 0.9487754309116315
Pair: BR-DHR, Correlation: 0.960398787245064
Pair: BR-DRI, Correlation: 0.970411414031164
Pair: BR-DE, Correlation: 0.9240344107453098
Pair: BR-DLR, Correlation: 0.9523899119789825
Pair: BR-DFS, Correlation: 0.9312805239181065
Pair: BR-DPZ, Correlation: 0.9669830136900998
Pair: BR-DOV, Correlation: 0.9669947496662306
Pair: BR-DHI, Correlation: 0.9355166686059304
Pair: BR-DTE, Correlation: 0.9540499383506026
Pair: BR-DUK, Correlation: 0.9564683020027396
Pair: BR-EBAY, Correlation: 0.9119905595874009
Pair: BR-ECL, Correlation: 0.9421354893361253
Pair: BR-EW, Correlation: 0.9103378057110756
Pair: BR-EA, Correlation: 0.9209752955265035
Pair: BR-ELV, Correlation: 0.9609659774902602
Pair: BR-EMR, Correlation: 0.9508456279635756
Pair: BR-ETR, Correlation: 0.9608269130391625
Pair: BR-EFX, Correlation: 0.9557662372550882
Pair: BR-EQIX, Correlation: 0.972078372731016
Pair: BR-ERIE, Correlation: 0.9240927397231417
Pair: BR-EG, Correlation: 0.9383147437676721
Pair: BR-EVRG, Correlation: 0.9099359317638022
Pair: BR-EXC, Correlation: 0.9015869176868643
Pair: BR-EXPD, Correlation: 0.9666498472032174
Pair: BR-EXR, Correlation: 0.9395829148007635
Pair: BR-FDS, Correlation: 0.9700355117608189
Pair: BR-FAST, Correlation: 0.9517784056814589
Pair: BR-FITB, Correlation: 0.9176379895908234
Pair: BR-FI, Correlation: 0.9745124169781411
Pair: BR-FTNT, Correlation: 0.9111034980703376
Pair: BR-GRMN, Correlation: 0.9497314466205219
Pair: BR-IT, Correlation: 0.9330692972801372
Pair: BR-GEN, Correlation: 0.9134596839230646
Pair: BR-GD, Correlation: 0.9289491033522178
Pair: BR-GL, Correlation: 0.9163579908214179
Pair: BR-GDDY, Correlation: 0.902437059313879
Pair: BR-GS, Correlation: 0.9223894027723962
Pair: BR-HIG, Correlation: 0.9304805560066614
Pair: BR-HCA, Correlation: 0.949996714160707
Pair: BR-HSY, Correlation: 0.9028589358029815
Pair: BR-HLT, Correlation: 0.9486995310909291
Pair: BR-HOLX, Correlation: 0.9500285731351271
Pair: BR-HD, Correlation: 0.9846024322912594
Pair: BR-HON, Correlation: 0.9680936112333547
Pair: BR-HPQ, Correlation: 0.905445629876499
Pair: BR-HUM, Correlation: 0.9046821065291446
Pair: BR-IEX, Correlation: 0.9718314415527928
Pair: BR-IDXX, Correlation: 0.943459302827041
Pair: BR-ITW, Correlation: 0.9797999990391076
Pair: BR-IR, Correlation: 0.9342756312380932
Pair: BR-ICE, Correlation: 0.9857716103453683
Pair: BR-IPG, Correlation: 0.909066324144191
Pair: BR-INTU, Correlation: 0.9715317980545906
Pair: BR-ISRG, Correlation: 0.9682430365662875
Pair: BR-IQV, Correlation: 0.9491624426013013
Pair: BR-JBHT, Correlation: 0.9488398785458956
Pair: BR-JKHY, Correlation: 0.9456244287437413
Pair: BR-J, Correlation: 0.9479787016184362
Pair: BR-JNJ, Correlation: 0.9462466911702999
Pair: BR-JCI, Correlation: 0.9076865733177333
Pair: BR-JPM, Correlation: 0.9741963568811136
Pair: BR-KDP, Correlation: 0.9585785548708912
Pair: BR-KLAC, Correlation: 0.9057890591329618
Pair: BR-LHX, Correlation: 0.9606997913456865
Pair: BR-LH, Correlation: 0.9592770621836416
Pair: BR-LRCX, Correlation: 0.9248671202426723
Pair: BR-LDOS, Correlation: 0.9646921924718709
Pair: BR-LEN, Correlation: 0.9187732999438261
Pair: BR-LII, Correlation: 0.9601368724003936
Pair: BR-LIN, Correlation: 0.9490284103054456
Pair: BR-LYV, Correlation: 0.9601248199857646
Pair: BR-LMT, Correlation: 0.9608502270264466
Pair: BR-LOW, Correlation: 0.9685498143643871
Pair: BR-LULU, Correlation: 0.911902506270674
Pair: BR-MAR, Correlation: 0.9610392398581981
Pair: BR-MMC, Correlation: 0.9716645850709053
Pair: BR-MLM, Correlation: 0.9566769834998288
Pair: BR-MAS, Correlation: 0.9759955195781072
Pair: BR-MA, Correlation: 0.985811211311705
Pair: BR-MKC, Correlation: 0.9067790458348495
Pair: BR-MCD, Correlation: 0.9741670655522885
Pair: BR-MRK, Correlation: 0.9388716574432215
Pair: BR-META, Correlation: 0.9146162766149095
Pair: BR-MET, Correlation: 0.9138014564358449
Pair: BR-MTD, Correlation: 0.9462582640016448
Pair: BR-MCHP, Correlation: 0.9670705406072078
Pair: BR-MU, Correlation: 0.9402522905670512
Pair: BR-MSFT, Correlation: 0.9612713375562881
Pair: BR-MAA, Correlation: 0.9166975168284119
Pair: BR-MOH, Correlation: 0.9485573104763192
Pair: BR-MDLZ, Correlation: 0.9576512870719585
Pair: BR-MPWR, Correlation: 0.9286307783565342
Pair: BR-MNST, Correlation: 0.9575467764389619
Pair: BR-MCO, Correlation: 0.9823790496932274
Pair: BR-MS, Correlation: 0.940321723932456
Pair: BR-MSI, Correlation: 0.9492437815578335
Pair: BR-MSCI, Correlation: 0.9510909494151137
Pair: BR-NDAQ, Correlation: 0.9698855784269182
Pair: BR-NFLX, Correlation: 0.9384536342717633
Pair: BR-NEE, Correlation: 0.9446382685513355
Pair: BR-NI, Correlation: 0.9193568309045358
Pair: BR-NDSN, Correlation: 0.974589468076338
Pair: BR-NSC, Correlation: 0.9597766596112873
Pair: BR-NOC, Correlation: 0.9559885787151119
Pair: BR-NVR, Correlation: 0.9695106231987445
Pair: BR-NXPI, Correlation: 0.9522293705425114
Pair: BR-ORLY, Correlation: 0.9442115761017398
Pair: BR-ODFL, Correlation: 0.9449117734111312
Pair: BR-ORCL, Correlation: 0.9139458095758002
Pair: BR-PCAR, Correlation: 0.9119155896740344
Pair: BR-PKG, Correlation: 0.9660122313853146
Pair: BR-PANW, Correlation: 0.9009002070013215
Pair: BR-PH, Correlation: 0.9239983669590397
Pair: BR-PAYX, Correlation: 0.9739027660136413
Pair: BR-PEP, Correlation: 0.9595331117178632
Pair: BR-PNC, Correlation: 0.9329248145139357
Pair: BR-POOL, Correlation: 0.9362987024529736
Pair: BR-PFG, Correlation: 0.9050561084017712
Pair: BR-PG, Correlation: 0.9626295254600364
Pair: BR-PGR, Correlation: 0.9343047674537591
Pair: BR-PLD, Correlation: 0.9502819304593936
Pair: BR-PEG, Correlation: 0.9746035062785334
Pair: BR-PTC, Correlation: 0.97685998258763
Pair: BR-PSA, Correlation: 0.9266788045012917
Pair: BR-QCOM, Correlation: 0.9005347653961417
Pair: BR-DGX, Correlation: 0.963984800187852
Pair: BR-RJF, Correlation: 0.9469271560621758
Pair: BR-RTX, Correlation: 0.9070157857245886
Pair: BR-RF, Correlation: 0.9340354983110558
Pair: BR-RSG, Correlation: 0.9673733823942476
Pair: BR-RMD, Correlation: 0.9319509013282743
Pair: BR-ROK, Correlation: 0.9569552789176874
Pair: BR-ROL, Correlation: 0.9826220170058857
Pair: BR-ROP, Correlation: 0.9890365842761524
Pair: BR-ROST, Correlation: 0.9670822816521295
Pair: BR-SPGI, Correlation: 0.9829243348761731
Pair: BR-CRM, Correlation: 0.9674654787417649
Pair: BR-STX, Correlation: 0.9195549472174546
Pair: BR-SRE, Correlation: 0.9380501932980416
Pair: BR-NOW, Correlation: 0.9597460705831582
Pair: BR-SHW, Correlation: 0.9813023824052567
Pair: BR-SNA, Correlation: 0.9366566861432903
Pair: BR-SO, Correlation: 0.9520846760158337
Pair: BR-SBUX, Correlation: 0.9282797042078971
Pair: BR-STE, Correlation: 0.9746269886969197
Pair: BR-SYK, Correlation: 0.9866842041874163
Pair: BR-SNPS, Correlation: 0.9284616932755618
Pair: BR-SYY, Correlation: 0.9486376021936426
Pair: BR-TMUS, Correlation: 0.9699135612652472
Pair: BR-TTWO, Correlation: 0.9353527182223748
Pair: BR-TEL, Correlation: 0.9716563517765556
Pair: BR-TDY, Correlation: 0.9610860998982033
Pair: BR-TER, Correlation: 0.9291248369095403
Pair: BR-TXN, Correlation: 0.9792204112213386
Pair: BR-TXT, Correlation: 0.9086106381938209
Pair: BR-TMO, Correlation: 0.9589433629136904
Pair: BR-TJX, Correlation: 0.9664963158970448
Pair: BR-TSCO, Correlation: 0.9308006290748836
Pair: BR-TT, Correlation: 0.9249534630077796
Pair: BR-TDG, Correlation: 0.942658167728425
Pair: BR-TRV, Correlation: 0.9524460225635503
Pair: BR-TYL, Correlation: 0.969321814626895
Pair: BR-ULTA, Correlation: 0.9033285363342327
Pair: BR-UNP, Correlation: 0.9764886829083063
Pair: BR-URI, Correlation: 0.9001712438171207
Pair: BR-UNH, Correlation: 0.967892447507254
Pair: BR-VRSN, Correlation: 0.9226736215516176
Pair: BR-VRSK, Correlation: 0.9825740942028464
Pair: BR-VRTX, Correlation: 0.9395822335562032
Pair: BR-V, Correlation: 0.9883481746735033
Pair: BR-VMC, Correlation: 0.9647008975857072
Pair: BR-WRB, Correlation: 0.9554137803060496
Pair: BR-WMT, Correlation: 0.9557516636309972
Pair: BR-WM, Correlation: 0.979852963406843
Pair: BR-WAT, Correlation: 0.9510217662535149
Pair: BR-WEC, Correlation: 0.939039731578374
Pair: BR-WELL, Correlation: 0.9039047048719857
Pair: BR-WST, Correlation: 0.9294223459019573
Pair: BR-WTW, Correlation: 0.975388868090461
Pair: BR-WDAY, Correlation: 0.9263320692274833
Pair: BR-XEL, Correlation: 0.9316088929993701
Pair: BR-XYL, Correlation: 0.9730594685390003
Pair: BR-YUM, Correlation: 0.9741931994351721
Pair: BR-ZTS, Correlation: 0.9507075240607353
Pair: BRO-BLDR, Correlation: 0.9249380751431332
Pair: BRO-CDNS, Correlation: 0.9738403341093501
Pair: BRO-CARR, Correlation: 0.9077511526250864
Pair: BRO-CAT, Correlation: 0.9669706419458399
Pair: BRO-CBOE, Correlation: 0.9299126030762134
Pair: BRO-CBRE, Correlation: 0.9538028923847004
Pair: BRO-CDW, Correlation: 0.9559630756144171
Pair: BRO-COR, Correlation: 0.9402044188375969
Pair: BRO-CMG, Correlation: 0.956765225053394
Pair: BRO-CB, Correlation: 0.9583830232507908
Pair: BRO-CHD, Correlation: 0.9346495205292212
Pair: BRO-CI, Correlation: 0.9225843624085303
Pair: BRO-CINF, Correlation: 0.9221912192536061
Pair: BRO-CTAS, Correlation: 0.9912450600508824
Pair: BRO-CME, Correlation: 0.9073066492118563
Pair: BRO-KO, Correlation: 0.9500579654370076
Pair: BRO-ED, Correlation: 0.9010160457066476
Pair: BRO-CEG, Correlation: 0.9124599169186416
Pair: BRO-CPRT, Correlation: 0.9815368887005712
Pair: BRO-COST, Correlation: 0.993181186834328
Pair: BRO-CSX, Correlation: 0.9295759202739297
Pair: BRO-CMI, Correlation: 0.9565931585850981
Pair: BRO-DHR, Correlation: 0.9466245012651516
Pair: BRO-DRI, Correlation: 0.9335374591560746
Pair: BRO-DECK, Correlation: 0.9351466515766739
Pair: BRO-DE, Correlation: 0.9435523848374636
Pair: BRO-DELL, Correlation: 0.9015619449379406
Pair: BRO-DFS, Correlation: 0.923944062901134
Pair: BRO-DPZ, Correlation: 0.9055541334565536
Pair: BRO-DOV, Correlation: 0.9688126221670638
Pair: BRO-DHI, Correlation: 0.9738436997297781
Pair: BRO-DUK, Correlation: 0.9298398433295079
Pair: BRO-ETN, Correlation: 0.9606162686410521
Pair: BRO-ELV, Correlation: 0.9495038495978698
Pair: BRO-EMR, Correlation: 0.9591020067921899
Pair: BRO-ETR, Correlation: 0.9472744103122887
Pair: BRO-EFX, Correlation: 0.9312948702714986
Pair: BRO-EQIX, Correlation: 0.9295724608324671
Pair: BRO-ERIE, Correlation: 0.9497632210339516
Pair: BRO-EG, Correlation: 0.9199107944792967
Pair: BRO-EXC, Correlation: 0.9097798433028275
Pair: BRO-EXPD, Correlation: 0.9483124114099486
Pair: BRO-EXR, Correlation: 0.9185760187611823
Pair: BRO-FDS, Correlation: 0.9559558023489076
Pair: BRO-FICO, Correlation: 0.9327327104268929
Pair: BRO-FAST, Correlation: 0.9823089643644213
Pair: BRO-FI, Correlation: 0.9349740078809927
Pair: BRO-FTNT, Correlation: 0.9598951241552511
Pair: BRO-GRMN, Correlation: 0.9509265506928583
Pair: BRO-IT, Correlation: 0.9721929832287359
Pair: BRO-GEN, Correlation: 0.9096672715051725
Pair: BRO-GS, Correlation: 0.9509338172554996
Pair: BRO-HIG, Correlation: 0.9461931262481956
Pair: BRO-HCA, Correlation: 0.9759086633444958
Pair: BRO-HSY, Correlation: 0.907006117503974
Pair: BRO-HLT, Correlation: 0.9809512971306612
Pair: BRO-HOLX, Correlation: 0.9146814067043126
Pair: BRO-HD, Correlation: 0.9575677415562641
Pair: BRO-HON, Correlation: 0.9000583065730591
Pair: BRO-HPQ, Correlation: 0.9144462904460343
Pair: BRO-HUBB, Correlation: 0.9554374353783753
Pair: BRO-IEX, Correlation: 0.9098128491458429
Pair: BRO-IDXX, Correlation: 0.9008489741383817
Pair: BRO-ITW, Correlation: 0.946623589909821
Pair: BRO-IR, Correlation: 0.9532836397523585
Pair: BRO-ICE, Correlation: 0.9591025023631223
Pair: BRO-INTU, Correlation: 0.9749083433787886
Pair: BRO-ISRG, Correlation: 0.9725020219119889
Pair: BRO-IQV, Correlation: 0.9083773377230915
Pair: BRO-IRM, Correlation: 0.9370361958904195
Pair: BRO-JBHT, Correlation: 0.9201997784051854
Pair: BRO-JBL, Correlation: 0.9294961459655158
Pair: BRO-J, Correlation: 0.9640820710669233
Pair: BRO-JCI, Correlation: 0.916632020175979
Pair: BRO-JPM, Correlation: 0.9618923119210817
Pair: BRO-KDP, Correlation: 0.9075833633666536
Pair: BRO-KKR, Correlation: 0.9613218456792422
Pair: BRO-KLAC, Correlation: 0.970787280881586
Pair: BRO-LHX, Correlation: 0.9031594756008714
Pair: BRO-LH, Correlation: 0.918797196991611
Pair: BRO-LRCX, Correlation: 0.9649759257800886
Pair: BRO-LDOS, Correlation: 0.9539834597492163
Pair: BRO-LEN, Correlation: 0.9568609615417626
Pair: BRO-LII, Correlation: 0.9473774093484946
Pair: BRO-LLY, Correlation: 0.9279584141272481
Pair: BRO-LIN, Correlation: 0.9863460556289283
Pair: BRO-LYV, Correlation: 0.9316089367822401
Pair: BRO-LMT, Correlation: 0.922163156591173
Pair: BRO-L, Correlation: 0.9086670187221312
Pair: BRO-LOW, Correlation: 0.9706116265174841
Pair: BRO-MAR, Correlation: 0.9425608250297706
Pair: BRO-MMC, Correlation: 0.9851723467928296
Pair: BRO-MLM, Correlation: 0.9692314645720171
Pair: BRO-MAS, Correlation: 0.9423068590783688
Pair: BRO-MA, Correlation: 0.9606973783351305
Pair: BRO-MCD, Correlation: 0.951874984040058
Pair: BRO-MRK, Correlation: 0.9405509704627696
Pair: BRO-MET, Correlation: 0.9376338482949056
Pair: BRO-MTD, Correlation: 0.9208818513630082
Pair: BRO-MCHP, Correlation: 0.9408270887386422
Pair: BRO-MU, Correlation: 0.9243374242965811
Pair: BRO-MSFT, Correlation: 0.9870990911630473
Pair: BRO-MOH, Correlation: 0.955766135776529
Pair: BRO-MDLZ, Correlation: 0.9288926820719637
Pair: BRO-MPWR, Correlation: 0.978793238192383
Pair: BRO-MNST, Correlation: 0.9050693325911343
Pair: BRO-MCO, Correlation: 0.9705880873436566
Pair: BRO-MS, Correlation: 0.9562997473008009
Pair: BRO-MSI, Correlation: 0.9897646122976681
Pair: BRO-MSCI, Correlation: 0.948063356900052
Pair: BRO-NDAQ, Correlation: 0.9591694567082135
Pair: BRO-NTAP, Correlation: 0.9213939564003382
Pair: BRO-NEE, Correlation: 0.9089663698847138
Pair: BRO-NDSN, Correlation: 0.9489763523446199
Pair: BRO-NSC, Correlation: 0.9118842573281348
Pair: BRO-NOC, Correlation: 0.9140268061919551
Pair: BRO-NUE, Correlation: 0.9148805900180318
Pair: BRO-NVR, Correlation: 0.9774720880452084
Pair: BRO-NXPI, Correlation: 0.9378870964426127
Pair: BRO-ORLY, Correlation: 0.9747998592724509
Pair: BRO-ODFL, Correlation: 0.9726686101000673
Pair: BRO-ON, Correlation: 0.9182888506398973
Pair: BRO-OKE, Correlation: 0.9058169908648792
Pair: BRO-ORCL, Correlation: 0.9681246733339379
Pair: BRO-PCAR, Correlation: 0.951203942040675
Pair: BRO-PKG, Correlation: 0.9523724617117261
Pair: BRO-PANW, Correlation: 0.9624043942081663
Pair: BRO-PH, Correlation: 0.9705324992845411
Pair: BRO-PAYX, Correlation: 0.9659988181060957
Pair: BRO-PNR, Correlation: 0.9036073952261092
Pair: BRO-PEP, Correlation: 0.9392621320034743
Pair: BRO-POOL, Correlation: 0.9081481476543247
Pair: BRO-PG, Correlation: 0.968576863279709
Pair: BRO-PGR, Correlation: 0.980730187643515
Pair: BRO-PLD, Correlation: 0.9350407203926009
Pair: BRO-PEG, Correlation: 0.9524402349692972
Pair: BRO-PTC, Correlation: 0.9523408776219496
Pair: BRO-PSA, Correlation: 0.9171807869362548
Pair: BRO-PHM, Correlation: 0.9466922279217675
Pair: BRO-PWR, Correlation: 0.9403887070893535
Pair: BRO-QCOM, Correlation: 0.9395315813534932
Pair: BRO-DGX, Correlation: 0.928119800520517
Pair: BRO-RJF, Correlation: 0.9632288098966894
Pair: BRO-RTX, Correlation: 0.9012992787054874
Pair: BRO-RF, Correlation: 0.9028823043888562
Pair: BRO-RSG, Correlation: 0.9909314203949655
Pair: BRO-RMD, Correlation: 0.9076850839058945
Pair: BRO-ROK, Correlation: 0.9164874386016161
Pair: BRO-ROL, Correlation: 0.9535135274988239
Pair: BRO-ROP, Correlation: 0.9486913317266374
Pair: BRO-SPGI, Correlation: 0.961065045610497
Pair: BRO-CRM, Correlation: 0.9155906335487332
Pair: BRO-STX, Correlation: 0.92914450055535
Pair: BRO-SRE, Correlation: 0.9022992317875218
Pair: BRO-NOW, Correlation: 0.970082065288959
Pair: BRO-SHW, Correlation: 0.9640845406245998
Pair: BRO-SNA, Correlation: 0.9217245878811242
Pair: BRO-SO, Correlation: 0.9731982188044787
Pair: BRO-STLD, Correlation: 0.9326800037875688
Pair: BRO-STE, Correlation: 0.9480573088594829
Pair: BRO-SYK, Correlation: 0.9630141223458901
Pair: BRO-SNPS, Correlation: 0.9747542117256485
Pair: BRO-TMUS, Correlation: 0.9703525533411685
Pair: BRO-TEL, Correlation: 0.9342724083866931
Pair: BRO-TDY, Correlation: 0.9218381236392428
Pair: BRO-TER, Correlation: 0.9207915960582428
Pair: BRO-TXN, Correlation: 0.9488363641931119
Pair: BRO-TPL, Correlation: 0.9366519151765631
Pair: BRO-TMO, Correlation: 0.9455403863342676
Pair: BRO-TJX, Correlation: 0.9676197776836468
Pair: BRO-TSCO, Correlation: 0.9751066382836158
Pair: BRO-TT, Correlation: 0.9753835286913011
Pair: BRO-TDG, Correlation: 0.9759478736473672
Pair: BRO-TRV, Correlation: 0.941914312853112
Pair: BRO-TYL, Correlation: 0.9370431925961932
Pair: BRO-UNP, Correlation: 0.9413352953935613
Pair: BRO-URI, Correlation: 0.9584661881638824
Pair: BRO-UNH, Correlation: 0.96470307033428
Pair: BRO-VLTO, Correlation: 0.9401962761953894
Pair: BRO-VRSK, Correlation: 0.9707765340518345
Pair: BRO-VRTX, Correlation: 0.953566946719916
Pair: BRO-V, Correlation: 0.9470112542823631
Pair: BRO-VMC, Correlation: 0.9489458017299557
Pair: BRO-WRB, Correlation: 0.9767568977264355
Pair: BRO-GWW, Correlation: 0.9559230791638245
Pair: BRO-WMT, Correlation: 0.9793866736607362
Pair: BRO-WM, Correlation: 0.9816580765831268
Pair: BRO-WAT, Correlation: 0.9068725201901091
Pair: BRO-WELL, Correlation: 0.9194412714961204
Pair: BRO-WST, Correlation: 0.9170190652279168
Pair: BRO-WTW, Correlation: 0.9560564900440105
Pair: BRO-XYL, Correlation: 0.9289595828471813
Pair: BRO-YUM, Correlation: 0.9372907668017995
Pair: BRO-ZTS, Correlation: 0.9097797196152545
Pair: BLDR-CDNS, Correlation: 0.9571377089639713
Pair: BLDR-CAT, Correlation: 0.9467981143553286
Pair: BLDR-COR, Correlation: 0.9400825496994201
Pair: BLDR-CMG, Correlation: 0.9378876366213651
Pair: BLDR-CTAS, Correlation: 0.9410749943878757
Pair: BLDR-CPRT, Correlation: 0.9257053648535971
Pair: BLDR-COST, Correlation: 0.9392712967436713
Pair: BLDR-DECK, Correlation: 0.9650704247194984
Pair: BLDR-DELL, Correlation: 0.9081758074732017
Pair: BLDR-DHI, Correlation: 0.9577320775562719
Pair: BLDR-ETN, Correlation: 0.9731902720573635
Pair: BLDR-ERIE, Correlation: 0.9102543535215686
Pair: BLDR-FICO, Correlation: 0.9442318019815582
Pair: BLDR-FAST, Correlation: 0.9114067966491459
Pair: BLDR-IT, Correlation: 0.9485813889774904
Pair: BLDR-HIG, Correlation: 0.9004618145135856
Pair: BLDR-HCA, Correlation: 0.9180718415136606
Pair: BLDR-HLT, Correlation: 0.9300247279224676
Pair: BLDR-HWM, Correlation: 0.9008878760073902
Pair: BLDR-HUBB, Correlation: 0.974869125131352
Pair: BLDR-IR, Correlation: 0.963398620154295
Pair: BLDR-IRM, Correlation: 0.9436924311314535
Pair: BLDR-JBL, Correlation: 0.9782211693011477
Pair: BLDR-KKR, Correlation: 0.9348877558090536
Pair: BLDR-KLAC, Correlation: 0.9649972198556862
Pair: BLDR-LRCX, Correlation: 0.9318374165489539
Pair: BLDR-LEN, Correlation: 0.9527094374856258
Pair: BLDR-LLY, Correlation: 0.9732000260338702
Pair: BLDR-LIN, Correlation: 0.9401461376354884
Pair: BLDR-L, Correlation: 0.9000525314860582
Pair: BLDR-MPC, Correlation: 0.9462471274482994
Pair: BLDR-MMC, Correlation: 0.9078943917058675
Pair: BLDR-MLM, Correlation: 0.9300684994733905
Pair: BLDR-MCK, Correlation: 0.9354682679232056
Pair: BLDR-MSFT, Correlation: 0.9197233598230309
Pair: BLDR-MPWR, Correlation: 0.9382528248257405
Pair: BLDR-MSI, Correlation: 0.9334687835006079
Pair: BLDR-NUE, Correlation: 0.9301451077413907
Pair: BLDR-NVDA, Correlation: 0.915314270274386
Pair: BLDR-NVR, Correlation: 0.9189670552204722
Pair: BLDR-ORLY, Correlation: 0.9377041032051349
Pair: BLDR-ODFL, Correlation: 0.9202065234617576
Pair: BLDR-ON, Correlation: 0.9037715461961728
Pair: BLDR-ORCL, Correlation: 0.9503092678905729
Pair: BLDR-PCAR, Correlation: 0.964621504296823
Pair: BLDR-PANW, Correlation: 0.9675296523130342
Pair: BLDR-PH, Correlation: 0.9631648237397904
Pair: BLDR-PGR, Correlation: 0.941367370668089
Pair: BLDR-PHM, Correlation: 0.9658138433065193
Pair: BLDR-PWR, Correlation: 0.9759180420766097
Pair: BLDR-RSG, Correlation: 0.9259424446388834
Pair: BLDR-STLD, Correlation: 0.9479353451395488
Pair: BLDR-SNPS, Correlation: 0.9548934426812512
Pair: BLDR-TJX, Correlation: 0.9012126796108317
Pair: BLDR-TSCO, Correlation: 0.9166987454694558
Pair: BLDR-TT, Correlation: 0.9442160556197938
Pair: BLDR-TDG, Correlation: 0.9463987199062115
Pair: BLDR-URI, Correlation: 0.9660684012871489
Pair: BLDR-GWW, Correlation: 0.9734821451142
Pair: BG-COP, Correlation: 0.9008336388306464
Pair: BG-CTVA, Correlation: 0.9021989387661238
Pair: BG-NUE, Correlation: 0.9113172738632729
Pair: CHRW-CNC, Correlation: 0.9121278043720104
Pair: CHRW-CSCO, Correlation: 0.9033403569954138
Pair: CHRW-CME, Correlation: 0.9061249847171822
Pair: CHRW-CMS, Correlation: 0.9114025158236132
Pair: CHRW-GLW, Correlation: 0.924558165465474
Pair: CHRW-CSX, Correlation: 0.9232054518963712
Pair: CHRW-DHR, Correlation: 0.9036362276658303
Pair: CHRW-DTE, Correlation: 0.9227007228349372
Pair: CHRW-DUK, Correlation: 0.9051457799054607
Pair: CHRW-ELV, Correlation: 0.9084868237446719
Pair: CHRW-ETR, Correlation: 0.9045316283561201
Pair: CHRW-EXPD, Correlation: 0.9059536926355592
Pair: CHRW-EXR, Correlation: 0.9143049575125475
Pair: CHRW-FDS, Correlation: 0.9072517961452299
Pair: CHRW-HOLX, Correlation: 0.9105204983580694
Pair: CHRW-HD, Correlation: 0.9107071467052408
Pair: CHRW-HON, Correlation: 0.9135649984185458
Pair: CHRW-HUM, Correlation: 0.9047319782032881
Pair: CHRW-IEX, Correlation: 0.9169919537810503
Pair: CHRW-ITW, Correlation: 0.9024946934319247
Pair: CHRW-JBHT, Correlation: 0.900078441759348
Pair: CHRW-JKHY, Correlation: 0.9168819966677569
Pair: CHRW-JNJ, Correlation: 0.912574817499243
Pair: CHRW-KDP, Correlation: 0.9314815982703886
Pair: CHRW-LHX, Correlation: 0.918691607231935
Pair: CHRW-LH, Correlation: 0.9111254262132508
Pair: CHRW-LYV, Correlation: 0.9030989541229687
Pair: CHRW-LMT, Correlation: 0.9064558600970307
Pair: CHRW-LOW, Correlation: 0.9009127381921841
Pair: CHRW-MCD, Correlation: 0.9103499646325504
Pair: CHRW-MTD, Correlation: 0.9140732024129335
Pair: CHRW-MAA, Correlation: 0.9045531759339801
Pair: CHRW-NDAQ, Correlation: 0.9135347211403382
Pair: CHRW-NEE, Correlation: 0.9242909840511605
Pair: CHRW-NDSN, Correlation: 0.9058478997999684
Pair: CHRW-NSC, Correlation: 0.9210855730149589
Pair: CHRW-NOC, Correlation: 0.9127646149992424
Pair: CHRW-PAYX, Correlation: 0.9125273182069448
Pair: CHRW-PEP, Correlation: 0.9018033894639818
Pair: CHRW-PLD, Correlation: 0.9049800875368752
Pair: CHRW-PEG, Correlation: 0.917106068422516
Pair: CHRW-DGX, Correlation: 0.9227719904973795
Pair: CHRW-RF, Correlation: 0.908973610501303
Pair: CHRW-RMD, Correlation: 0.9035045060355084
Pair: CHRW-RVTY, Correlation: 0.9020137486898261
Pair: CHRW-ROL, Correlation: 0.9124246619899707
Pair: CHRW-SPGI, Correlation: 0.9025192540260372
Pair: CHRW-STE, Correlation: 0.9089887355296744
Pair: CHRW-SYY, Correlation: 0.9188820340395287
Pair: CHRW-TEL, Correlation: 0.906924738106311
Pair: CHRW-TDY, Correlation: 0.903700872072276
Pair: CHRW-TXN, Correlation: 0.9302812997752323
Pair: CHRW-TMO, Correlation: 0.9088766221741312
Pair: CHRW-UNP, Correlation: 0.9134124893490277
Pair: CHRW-UNH, Correlation: 0.9195785641433626
Pair: CHRW-WAT, Correlation: 0.909120764267726
Pair: CHRW-WEC, Correlation: 0.911946652597412
Pair: CHRW-XEL, Correlation: 0.9188074203958894
Pair: CHRW-YUM, Correlation: 0.9010060578805841
Pair: CDNS-CAT, Correlation: 0.9658793513303945
Pair: CDNS-CBOE, Correlation: 0.9015341410869794
Pair: CDNS-CBRE, Correlation: 0.9098802318907525
Pair: CDNS-CDW, Correlation: 0.9556018512196373
Pair: CDNS-COR, Correlation: 0.9459266608561412
Pair: CDNS-CMG, Correlation: 0.9704525517401841
Pair: CDNS-CB, Correlation: 0.9313340878352886
Pair: CDNS-CHD, Correlation: 0.9015659054267382
Pair: CDNS-CI, Correlation: 0.9016496945599505
Pair: CDNS-CTAS, Correlation: 0.9770475685161933
Pair: CDNS-KO, Correlation: 0.912301343903039
Pair: CDNS-CPRT, Correlation: 0.9849099509560897
Pair: CDNS-COST, Correlation: 0.9765452916652962
Pair: CDNS-CMI, Correlation: 0.9356068855688822
Pair: CDNS-DHR, Correlation: 0.9198769844459013
Pair: CDNS-DRI, Correlation: 0.920061796778216
Pair: CDNS-DECK, Correlation: 0.9561495754869105
Pair: CDNS-DE, Correlation: 0.9440579418146111
Pair: CDNS-DOV, Correlation: 0.9395115695745028
Pair: CDNS-DHI, Correlation: 0.9714175458895118
Pair: CDNS-ETN, Correlation: 0.9673120486529445
Pair: CDNS-ELV, Correlation: 0.9313136785011623
Pair: CDNS-EMR, Correlation: 0.938834454625298
Pair: CDNS-ERIE, Correlation: 0.9344763901085993
Pair: CDNS-EG, Correlation: 0.9100318184129685
Pair: CDNS-EXPD, Correlation: 0.9393866838418746
Pair: CDNS-FDS, Correlation: 0.9388698070741558
Pair: CDNS-FICO, Correlation: 0.9245398695569753
Pair: CDNS-FAST, Correlation: 0.9738471853037932
Pair: CDNS-FTNT, Correlation: 0.9543229831785797
Pair: CDNS-GRMN, Correlation: 0.9154066883449875
Pair: CDNS-IT, Correlation: 0.9723299303750101
Pair: CDNS-GS, Correlation: 0.925842121467547
Pair: CDNS-HIG, Correlation: 0.9164441917270759
Pair: CDNS-HCA, Correlation: 0.9600578193325192
Pair: CDNS-HLT, Correlation: 0.9625876610812846
Pair: CDNS-HD, Correlation: 0.9246913547526591
Pair: CDNS-HUBB, Correlation: 0.9661064288696031
Pair: CDNS-ITW, Correlation: 0.9279093841139798
Pair: CDNS-IR, Correlation: 0.9564930999906778
Pair: CDNS-ICE, Correlation: 0.9148202697134731
Pair: CDNS-INTU, Correlation: 0.9630311721640327
Pair: CDNS-ISRG, Correlation: 0.9429825846797619
Pair: CDNS-IRM, Correlation: 0.9174166834344676
Pair: CDNS-JBHT, Correlation: 0.9028523284436845
Pair: CDNS-JBL, Correlation: 0.9716178266869402
Pair: CDNS-J, Correlation: 0.93942043594683
Pair: CDNS-JPM, Correlation: 0.9283918047748777
Pair: CDNS-KKR, Correlation: 0.940420892576577
Pair: CDNS-KLAC, Correlation: 0.9823402947466827
Pair: CDNS-LRCX, Correlation: 0.9808307092923371
Pair: CDNS-LDOS, Correlation: 0.9054452301491712
Pair: CDNS-LEN, Correlation: 0.9569981661351755
Pair: CDNS-LII, Correlation: 0.9179257571931076
Pair: CDNS-LLY, Correlation: 0.9446328133638345
Pair: CDNS-LIN, Correlation: 0.9887423446447071
Pair: CDNS-LOW, Correlation: 0.9503269562658289
Pair: CDNS-MPC, Correlation: 0.9156682611299994
Pair: CDNS-MAR, Correlation: 0.9226046689213162
Pair: CDNS-MMC, Correlation: 0.970934988940295
Pair: CDNS-MLM, Correlation: 0.9632375326460397
Pair: CDNS-MAS, Correlation: 0.906185610754712
Pair: CDNS-MA, Correlation: 0.933488434413522
Pair: CDNS-MCD, Correlation: 0.9333716584309316
Pair: CDNS-MCK, Correlation: 0.9125203866556403
Pair: CDNS-MRK, Correlation: 0.9442479370788391
Pair: CDNS-MET, Correlation: 0.9124615920809875
Pair: CDNS-MCHP, Correlation: 0.9406836219849574
Pair: CDNS-MSFT, Correlation: 0.9847890341080877
Pair: CDNS-MOH, Correlation: 0.9530022753902117
Pair: CDNS-MDLZ, Correlation: 0.9107555600141415
Pair: CDNS-MPWR, Correlation: 0.9766367562023721
Pair: CDNS-MCO, Correlation: 0.937538496864309
Pair: CDNS-MS, Correlation: 0.9360815273422431
Pair: CDNS-MSI, Correlation: 0.9730638580748642
Pair: CDNS-MSCI, Correlation: 0.9362807723155956
Pair: CDNS-NDAQ, Correlation: 0.9234586135942324
Pair: CDNS-NDSN, Correlation: 0.9259592900346795
Pair: CDNS-NUE, Correlation: 0.9467759064783132
Pair: CDNS-NVR, Correlation: 0.9576618826350196
Pair: CDNS-NXPI, Correlation: 0.9283010166567371
Pair: CDNS-ORLY, Correlation: 0.9756550444891757
Pair: CDNS-ODFL, Correlation: 0.9814512224805728
Pair: CDNS-ON, Correlation: 0.9483590286864989
Pair: CDNS-ORCL, Correlation: 0.960397742293515
Pair: CDNS-PCAR, Correlation: 0.9700013405267357
Pair: CDNS-PKG, Correlation: 0.9165845319685472
Pair: CDNS-PANW, Correlation: 0.970704687786654
Pair: CDNS-PH, Correlation: 0.968072941682434
Pair: CDNS-PAYX, Correlation: 0.936690031056799
Pair: CDNS-PEP, Correlation: 0.9185875608633103
Pair: CDNS-PG, Correlation: 0.9437772046888762
Pair: CDNS-PGR, Correlation: 0.9683850634154528
Pair: CDNS-PLD, Correlation: 0.9041490401455807
Pair: CDNS-PTC, Correlation: 0.946299828870713
Pair: CDNS-PHM, Correlation: 0.9452053562192333
Pair: CDNS-PWR, Correlation: 0.9592273594438726
Pair: CDNS-QCOM, Correlation: 0.9267070564641302
Pair: CDNS-RJF, Correlation: 0.9438731042335164
Pair: CDNS-RSG, Correlation: 0.9759304808733559
Pair: CDNS-ROK, Correlation: 0.9018427845194597
Pair: CDNS-ROL, Correlation: 0.9312217351660216
Pair: CDNS-ROP, Correlation: 0.9213153879896858
Pair: CDNS-SPGI, Correlation: 0.9267656026685452
Pair: CDNS-NOW, Correlation: 0.9506600655278052
Pair: CDNS-SHW, Correlation: 0.9283827681921607
Pair: CDNS-SNA, Correlation: 0.9123656258708083
Pair: CDNS-SO, Correlation: 0.9397346080341084
Pair: CDNS-STLD, Correlation: 0.9566082113371723
Pair: CDNS-STE, Correlation: 0.9174089444338411
Pair: CDNS-SYK, Correlation: 0.9410544716163131
Pair: CDNS-SNPS, Correlation: 0.998560077223339
Pair: CDNS-TMUS, Correlation: 0.9448037864549405
Pair: CDNS-TEL, Correlation: 0.9069590030630209
Pair: CDNS-TXN, Correlation: 0.9161558645669831
Pair: CDNS-TPL, Correlation: 0.9083005547458286
Pair: CDNS-TMO, Correlation: 0.9227594478588846
Pair: CDNS-TJX, Correlation: 0.9489771041984473
Pair: CDNS-TSCO, Correlation: 0.9711317563164273
Pair: CDNS-TT, Correlation: 0.9636088717185318
Pair: CDNS-TDG, Correlation: 0.9672177235584334
Pair: CDNS-TRV, Correlation: 0.9119786810759241
Pair: CDNS-UNP, Correlation: 0.9051670357923359
Pair: CDNS-URI, Correlation: 0.9600672558877474
Pair: CDNS-UNH, Correlation: 0.9408266149645033
Pair: CDNS-VRSK, Correlation: 0.946081921750614
Pair: CDNS-VRTX, Correlation: 0.9405881546284921
Pair: CDNS-V, Correlation: 0.9184909853048153
Pair: CDNS-VMC, Correlation: 0.9334430527308009
Pair: CDNS-WRB, Correlation: 0.9558658149002833
Pair: CDNS-GWW, Correlation: 0.9676560527531991
Pair: CDNS-WMT, Correlation: 0.946443503243977
Pair: CDNS-WM, Correlation: 0.9611418971759278
Pair: CDNS-WST, Correlation: 0.9132828859481
Pair: CDNS-WTW, Correlation: 0.9211283230690172
Pair: CDNS-XYL, Correlation: 0.906112870175215
Pair: CDNS-YUM, Correlation: 0.9138298514465811
Pair: CZR-CRL, Correlation: 0.9046443958870904
Pair: CZR-MDT, Correlation: 0.9081622230585691
Pair: CZR-NKE, Correlation: 0.9053813309204005
Pair: CZR-TROW, Correlation: 0.9361406893376819
Pair: CZR-ZBRA, Correlation: 0.908645584827168
Pair: CPT-COF, Correlation: 0.9036103560783537
Pair: CPT-CBRE, Correlation: 0.9310402857489605
Pair: CPT-CE, Correlation: 0.9206627910126195
Pair: CPT-CNC, Correlation: 0.9123380401124278
Pair: CPT-CRL, Correlation: 0.918049486311611
Pair: CPT-SCHW, Correlation: 0.9346308404631215
Pair: CPT-CHD, Correlation: 0.9186595978577194
Pair: CPT-CINF, Correlation: 0.9457384650729563
Pair: CPT-CSCO, Correlation: 0.9194628405897666
Pair: CPT-CME, Correlation: 0.9258712875529399
Pair: CPT-CMS, Correlation: 0.9345474702951724
Pair: CPT-KO, Correlation: 0.9201055346685086
Pair: CPT-COO, Correlation: 0.9368305130024884
Pair: CPT-GLW, Correlation: 0.9005371449863621
Pair: CPT-CCI, Correlation: 0.9325846368168006
Pair: CPT-CSX, Correlation: 0.9331029847729194
Pair: CPT-DHR, Correlation: 0.9365748850869825
Pair: CPT-DLR, Correlation: 0.9048019496015433
Pair: CPT-DFS, Correlation: 0.9105299111276095
Pair: CPT-DPZ, Correlation: 0.925032918195435
Pair: CPT-DOV, Correlation: 0.9208994706671803
Pair: CPT-DTE, Correlation: 0.9505363640594711
Pair: CPT-DUK, Correlation: 0.9438894318942412
Pair: CPT-EBAY, Correlation: 0.922429778067315
Pair: CPT-EW, Correlation: 0.9554078635079346
Pair: CPT-ELV, Correlation: 0.9112242922239969
Pair: CPT-ETR, Correlation: 0.9140662783816622
Pair: CPT-EFX, Correlation: 0.9316842856292333
Pair: CPT-EQIX, Correlation: 0.9119940387991141
Pair: CPT-EQR, Correlation: 0.9476502028716738
Pair: CPT-ESS, Correlation: 0.9408440765578938
Pair: CPT-EVRG, Correlation: 0.9342003373149204
Pair: CPT-ES, Correlation: 0.9206868034349399
Pair: CPT-EXPD, Correlation: 0.9057147235543773
Pair: CPT-EXR, Correlation: 0.9730773406144575
Pair: CPT-FDS, Correlation: 0.916019535024838
Pair: CPT-FITB, Correlation: 0.9325101026821931
Pair: CPT-GEN, Correlation: 0.9155034351853293
Pair: CPT-HOLX, Correlation: 0.9153002300619879
Pair: CPT-HD, Correlation: 0.933418960276159
Pair: CPT-HON, Correlation: 0.9353424615175415
Pair: CPT-IEX, Correlation: 0.926570867148868
Pair: CPT-IDXX, Correlation: 0.9164875007043646
Pair: CPT-ITW, Correlation: 0.9056071375300766
Pair: CPT-ICE, Correlation: 0.9222500039553495
Pair: CPT-IPG, Correlation: 0.9127877971209114
Pair: CPT-INVH, Correlation: 0.9085025027041395
Pair: CPT-IQV, Correlation: 0.9385061228508407
Pair: CPT-JBHT, Correlation: 0.9223310593175876
Pair: CPT-JKHY, Correlation: 0.9199610006970006
Pair: CPT-JNJ, Correlation: 0.9340188125683685
Pair: CPT-JCI, Correlation: 0.9104375428489342
Pair: CPT-KDP, Correlation: 0.9441933686466366
Pair: CPT-KEYS, Correlation: 0.900671016757446
Pair: CPT-LHX, Correlation: 0.9422887318045859
Pair: CPT-LH, Correlation: 0.9508782638758919
Pair: CPT-LYV, Correlation: 0.9532835527663531
Pair: CPT-LOW, Correlation: 0.9162059811234838
Pair: CPT-MKC, Correlation: 0.9198387483720059
Pair: CPT-MCD, Correlation: 0.9075152491744994
Pair: CPT-MTD, Correlation: 0.9452601336467689
Pair: CPT-MAA, Correlation: 0.9891272985957745
Pair: CPT-MCO, Correlation: 0.9117685910754105
Pair: CPT-MSCI, Correlation: 0.90771923276436
Pair: CPT-NDAQ, Correlation: 0.937566248452092
Pair: CPT-NEE, Correlation: 0.9459310565246375
Pair: CPT-NKE, Correlation: 0.9210071440177223
Pair: CPT-NDSN, Correlation: 0.9235143869074497
Pair: CPT-NSC, Correlation: 0.9467203712312885
Pair: CPT-NTRS, Correlation: 0.9141875646486403
Pair: CPT-PAYX, Correlation: 0.9362458655574032
Pair: CPT-PEP, Correlation: 0.917366518134717
Pair: CPT-PFE, Correlation: 0.9268597578651822
Pair: CPT-PNC, Correlation: 0.9504576087183639
Pair: CPT-POOL, Correlation: 0.9425277136946786
Pair: CPT-PG, Correlation: 0.9075872264934639
Pair: CPT-PLD, Correlation: 0.9556681599716936
Pair: CPT-PEG, Correlation: 0.9164176955856193
Pair: CPT-PSA, Correlation: 0.9458407949651593
Pair: CPT-DGX, Correlation: 0.9339122658819826
Pair: CPT-O, Correlation: 0.9369956315416847
Pair: CPT-RF, Correlation: 0.9213818936412383
Pair: CPT-RMD, Correlation: 0.9441154379720964
Pair: CPT-RVTY, Correlation: 0.9627078884732005
Pair: CPT-ROK, Correlation: 0.9179634251482202
Pair: CPT-ROP, Correlation: 0.9134351798595124
Pair: CPT-SPGI, Correlation: 0.9255918104198309
Pair: CPT-SBAC, Correlation: 0.9333276900656257
Pair: CPT-SRE, Correlation: 0.9042273652391613
Pair: CPT-SHW, Correlation: 0.92319673004426
Pair: CPT-SBUX, Correlation: 0.9139343364260387
Pair: CPT-STE, Correlation: 0.9389721278655624
Pair: CPT-SYY, Correlation: 0.9335331247787528
Pair: CPT-TROW, Correlation: 0.9113382489671525
Pair: CPT-TGT, Correlation: 0.9121576519912169
Pair: CPT-TEL, Correlation: 0.9338034800126491
Pair: CPT-TDY, Correlation: 0.9344255194955248
Pair: CPT-TER, Correlation: 0.9053990838079257
Pair: CPT-TXN, Correlation: 0.9344633906361234
Pair: CPT-TMO, Correlation: 0.9346983510422655
Pair: CPT-TRMB, Correlation: 0.9104359022994094
Pair: CPT-TYL, Correlation: 0.9222300091097512
Pair: CPT-UDR, Correlation: 0.9764004233549595
Pair: CPT-UNP, Correlation: 0.9360865568737156
Pair: CPT-UPS, Correlation: 0.9306699475811737
Pair: CPT-UNH, Correlation: 0.9124050720827661
Pair: CPT-VLTO, Correlation: 0.9359720583801131
Pair: CPT-VRSN, Correlation: 0.906220596096119
Pair: CPT-V, Correlation: 0.9022370680705116
Pair: CPT-WAT, Correlation: 0.9551170650605341
Pair: CPT-WEC, Correlation: 0.9325047675075595
Pair: CPT-WST, Correlation: 0.9078459817939439
Pair: CPT-WTW, Correlation: 0.9060044255778007
Pair: CPT-XEL, Correlation: 0.9328954487719884
Pair: CPT-YUM, Correlation: 0.9253055060101274
Pair: CPT-ZBRA, Correlation: 0.9216332387801964
Pair: CPT-ZTS, Correlation: 0.9215046319691075
Pair: CPB-CAG, Correlation: 0.9037517415855676
Pair: CPB-K, Correlation: 0.9028123863221609
Pair: COF-CBRE, Correlation: 0.9550349300173715
Pair: COF-CE, Correlation: 0.9202182173304796
Pair: COF-SCHW, Correlation: 0.9332774977907419
Pair: COF-CB, Correlation: 0.903928093143175
Pair: COF-CINF, Correlation: 0.9211574885041853
Pair: COF-COO, Correlation: 0.901997271326999
Pair: COF-GLW, Correlation: 0.9073430609347571
Pair: COF-CMI, Correlation: 0.9058757343075824
Pair: COF-DRI, Correlation: 0.9006727847160311
Pair: COF-DFS, Correlation: 0.9728122471998586
Pair: COF-DOV, Correlation: 0.9346649385719201
Pair: COF-DUK, Correlation: 0.9041707824843656
Pair: COF-EMN, Correlation: 0.9315622682892173
Pair: COF-EBAY, Correlation: 0.9133313394232904
Pair: COF-EMR, Correlation: 0.9357047328227848
Pair: COF-EFX, Correlation: 0.934286176208202
Pair: COF-EXR, Correlation: 0.9101523286501115
Pair: COF-FITB, Correlation: 0.9685587595357342
Pair: COF-GRMN, Correlation: 0.9242291835970531
Pair: COF-GM, Correlation: 0.902676841551599
Pair: COF-GS, Correlation: 0.935255780864808
Pair: COF-HIG, Correlation: 0.9079607415699811
Pair: COF-HD, Correlation: 0.9155991449531774
Pair: COF-HON, Correlation: 0.9134316624797274
Pair: COF-HBAN, Correlation: 0.9255527558100253
Pair: COF-ITW, Correlation: 0.9029979960351789
Pair: COF-ICE, Correlation: 0.9179835338778851
Pair: COF-IPG, Correlation: 0.9150535989641108
Pair: COF-INTU, Correlation: 0.9095357072102555
Pair: COF-ISRG, Correlation: 0.9002616963708081
Pair: COF-JBHT, Correlation: 0.9076338159356913
Pair: COF-J, Correlation: 0.9014295103558293
Pair: COF-JCI, Correlation: 0.9464533717661731
Pair: COF-JPM, Correlation: 0.9359491549014692
Pair: COF-LH, Correlation: 0.9364707759737164
Pair: COF-LYV, Correlation: 0.9280298430403309
Pair: COF-LOW, Correlation: 0.9092176458072058
Pair: COF-MAR, Correlation: 0.9012710710399788
Pair: COF-MLM, Correlation: 0.9114126976225717
Pair: COF-MAS, Correlation: 0.9123042680661365
Pair: COF-MET, Correlation: 0.9212201275858272
Pair: COF-MGM, Correlation: 0.9155901126576648
Pair: COF-MU, Correlation: 0.9170820036113548
Pair: COF-MCO, Correlation: 0.9161562506252642
Pair: COF-MS, Correlation: 0.9316440447260605
Pair: COF-NDAQ, Correlation: 0.9124376460051298
Pair: COF-NSC, Correlation: 0.9067744100706694
Pair: COF-NXPI, Correlation: 0.9317890110240431
Pair: COF-PKG, Correlation: 0.9232243000825727
Pair: COF-PAYX, Correlation: 0.9082222605462851
Pair: COF-PNR, Correlation: 0.9334591301196022
Pair: COF-PNC, Correlation: 0.9570433747506034
Pair: COF-PRU, Correlation: 0.9326807497296072
Pair: COF-PEG, Correlation: 0.9002390251324098
Pair: COF-PTC, Correlation: 0.9054299074013415
Pair: COF-PSA, Correlation: 0.9045628503261899
Pair: COF-RJF, Correlation: 0.9185722017284524
Pair: COF-RTX, Correlation: 0.9012130931380714
Pair: COF-RF, Correlation: 0.9352986334385492
Pair: COF-ROK, Correlation: 0.9024634882965038
Pair: COF-SPGI, Correlation: 0.9036718088842443
Pair: COF-STX, Correlation: 0.9518754044563301
Pair: COF-SHW, Correlation: 0.9275149734126533
Pair: COF-SNA, Correlation: 0.9068588329443916
Pair: COF-SYK, Correlation: 0.9046103229023166
Pair: COF-SYF, Correlation: 0.9468071641717987
Pair: COF-TEL, Correlation: 0.9483072041448218
Pair: COF-TXN, Correlation: 0.9104903267951193
Pair: COF-TXT, Correlation: 0.9202188679927858
Pair: COF-TRV, Correlation: 0.9089938200743674
Pair: COF-TYL, Correlation: 0.9124784714804816
Pair: COF-UNP, Correlation: 0.9106398802369353
Pair: COF-VMC, Correlation: 0.9098684681924161
Pair: COF-WAT, Correlation: 0.9283911296567164
Pair: COF-WTW, Correlation: 0.9013584238873028
Pair: COF-XYL, Correlation: 0.9044685910795646
Pair: CAH-COR, Correlation: 0.9053496488199415
Pair: CAH-MCK, Correlation: 0.9159313750151143
Pair: CAH-WAB, Correlation: 0.9023150498424735
Pair: KMX-CHTR, Correlation: 0.9412654543737894
Pair: KMX-CMCSA, Correlation: 0.9186075988480886
Pair: KMX-CCI, Correlation: 0.9126666206504869
Pair: KMX-MDT, Correlation: 0.9321467555458934
Pair: KMX-NKE, Correlation: 0.9118849892239751
Pair: KMX-SWKS, Correlation: 0.9320056912528238
Pair: KMX-TROW, Correlation: 0.9346877386178213
Pair: KMX-TFX, Correlation: 0.9000411172632837
Pair: KMX-DIS, Correlation: 0.9306691390089101
Pair: KMX-ZBRA, Correlation: 0.9037647322882408
Pair: CCL-GEV, Correlation: 0.9163577083756979
Pair: CCL-NCLH, Correlation: 0.947787229717995
Pair: CARR-CAT, Correlation: 0.9084686577271491
Pair: CARR-CTAS, Correlation: 0.9067802914620756
Pair: CARR-CEG, Correlation: 0.91505174529924
Pair: CARR-CPRT, Correlation: 0.902072183888821
Pair: CARR-DOV, Correlation: 0.9387829411253132
Pair: CARR-DHI, Correlation: 0.9145574287556594
Pair: CARR-ETN, Correlation: 0.9072132303123995
Pair: CARR-EMR, Correlation: 0.9254985884044827
Pair: CARR-FAST, Correlation: 0.9150398371348327
Pair: CARR-IT, Correlation: 0.9055228585700641
Pair: CARR-GS, Correlation: 0.9363722373619779
Pair: CARR-HIG, Correlation: 0.9137600288250575
Pair: CARR-HCA, Correlation: 0.9331543042450711
Pair: CARR-HLT, Correlation: 0.9253322943501904
Pair: CARR-HD, Correlation: 0.9141860011952407
Pair: CARR-ITW, Correlation: 0.9061648080115057
Pair: CARR-IR, Correlation: 0.9249498401229098
Pair: CARR-ICE, Correlation: 0.904705399324789
Pair: CARR-INTU, Correlation: 0.910004083052586
Pair: CARR-ISRG, Correlation: 0.9267186699948416
Pair: CARR-JPM, Correlation: 0.9424903597487467
Pair: CARR-KKR, Correlation: 0.9259455150952294
Pair: CARR-LEN, Correlation: 0.9239031748557125
Pair: CARR-LIN, Correlation: 0.9098043751272845
Pair: CARR-LOW, Correlation: 0.9150318777110636
Pair: CARR-MLM, Correlation: 0.916540659469893
Pair: CARR-MSFT, Correlation: 0.910051325166709
Pair: CARR-MPWR, Correlation: 0.9148258227833036
Pair: CARR-MCO, Correlation: 0.9300303244785463
Pair: CARR-MSI, Correlation: 0.9146467162479395
Pair: CARR-NTAP, Correlation: 0.931612809975799
Pair: CARR-NVR, Correlation: 0.9311263434944208
Pair: CARR-NXPI, Correlation: 0.9209308575918451
Pair: CARR-ORCL, Correlation: 0.9243725734544156
Pair: CARR-OTIS, Correlation: 0.9449519018623731
Pair: CARR-PKG, Correlation: 0.9105462803383839
Pair: CARR-PH, Correlation: 0.9196143504380537
Pair: CARR-PNR, Correlation: 0.9468720988188961
Pair: CARR-RL, Correlation: 0.9016357174429
Pair: CARR-ROP, Correlation: 0.9097102244105026
Pair: CARR-SPGI, Correlation: 0.9072446391401474
Pair: CARR-SHW, Correlation: 0.9170680924569404
Pair: CARR-SPG, Correlation: 0.9364664607847001
Pair: CARR-SYK, Correlation: 0.9179654844649177
Pair: CARR-TJX, Correlation: 0.9041967987916011
Pair: CARR-TT, Correlation: 0.9320966630855134
Pair: CARR-URI, Correlation: 0.9231616146092915
Pair: CARR-VLTO, Correlation: 0.914534898717529
Pair: CARR-VMC, Correlation: 0.924001175733707
Pair: CARR-WAB, Correlation: 0.9069127307332169
Pair: CARR-WELL, Correlation: 0.9255989644080251
Pair: CAT-CBOE, Correlation: 0.912239767942556
Pair: CAT-CBRE, Correlation: 0.9240842483961835
Pair: CAT-CDW, Correlation: 0.9326539544647768
Pair: CAT-COR, Correlation: 0.9338305364290612
Pair: CAT-CMG, Correlation: 0.9449739987051703
Pair: CAT-CB, Correlation: 0.9410427121421128
Pair: CAT-CI, Correlation: 0.9089948913372561
Pair: CAT-CTAS, Correlation: 0.9767694318218696
Pair: CAT-KO, Correlation: 0.9041874575667491
Pair: CAT-CEG, Correlation: 0.9338617006158516
Pair: CAT-CPRT, Correlation: 0.9644873434192507
Pair: CAT-COST, Correlation: 0.9672833369501215
Pair: CAT-CMI, Correlation: 0.9591261054050249
Pair: CAT-DRI, Correlation: 0.9175654023846308
Pair: CAT-DECK, Correlation: 0.9577501766438692
Pair: CAT-DE, Correlation: 0.9337213151409128
Pair: CAT-DELL, Correlation: 0.9307348735170852
Pair: CAT-DFS, Correlation: 0.9098874877770333
Pair: CAT-DOV, Correlation: 0.9415033205026357
Pair: CAT-DHI, Correlation: 0.9742509991191851
Pair: CAT-ETN, Correlation: 0.976820148073652
Pair: CAT-ELV, Correlation: 0.9155527519968262
Pair: CAT-EMR, Correlation: 0.9627371221593277
Pair: CAT-ERIE, Correlation: 0.9473648620459624
Pair: CAT-EG, Correlation: 0.9034902504035779
Pair: CAT-EXPD, Correlation: 0.926027313455701
Pair: CAT-FDS, Correlation: 0.9038285815104001
Pair: CAT-FICO, Correlation: 0.9431692684802554
Pair: CAT-FAST, Correlation: 0.960249189333048
Pair: CAT-FI, Correlation: 0.9023500110633164
Pair: CAT-FTNT, Correlation: 0.9250863790900601
Pair: CAT-GRMN, Correlation: 0.9272301212076355
Pair: CAT-IT, Correlation: 0.966155439761391
Pair: CAT-GS, Correlation: 0.9487546015332177
Pair: CAT-HIG, Correlation: 0.93971550112239
Pair: CAT-HCA, Correlation: 0.9575857708394859
Pair: CAT-HLT, Correlation: 0.9780439127208469
Pair: CAT-HD, Correlation: 0.9151573334818272
Pair: CAT-HWM, Correlation: 0.9087288200197076
Pair: CAT-HUBB, Correlation: 0.969850799650594
Pair: CAT-ITW, Correlation: 0.9214505827244966
Pair: CAT-IR, Correlation: 0.980619010032122
Pair: CAT-ICE, Correlation: 0.9175895277695122
Pair: CAT-INTU, Correlation: 0.9416736851078198
Pair: CAT-ISRG, Correlation: 0.9532349464843847
Pair: CAT-IRM, Correlation: 0.9432910118917399
Pair: CAT-JBL, Correlation: 0.9506657343234098
Pair: CAT-J, Correlation: 0.936092697586839
Pair: CAT-JPM, Correlation: 0.9544335132602
Pair: CAT-KKR, Correlation: 0.9598247601059083
Pair: CAT-KLAC, Correlation: 0.9727877556009737
Pair: CAT-LRCX, Correlation: 0.9631279914701444
Pair: CAT-LDOS, Correlation: 0.9202110658279612
Pair: CAT-LEN, Correlation: 0.9614135909027637
Pair: CAT-LII, Correlation: 0.9394232779580155
Pair: CAT-LLY, Correlation: 0.941618152910619
Pair: CAT-LIN, Correlation: 0.9758770143784505
Pair: CAT-L, Correlation: 0.9339653423085793
Pair: CAT-LOW, Correlation: 0.9335180683985779
Pair: CAT-MPC, Correlation: 0.9230128486888808
Pair: CAT-MAR, Correlation: 0.9438042993072253
Pair: CAT-MMC, Correlation: 0.9540727206676174
Pair: CAT-MLM, Correlation: 0.9599307666600001
Pair: CAT-MAS, Correlation: 0.9096809869322462
Pair: CAT-MA, Correlation: 0.9263092495089202
Pair: CAT-MCD, Correlation: 0.9164522687532644
Pair: CAT-MRK, Correlation: 0.9192560240191134
Pair: CAT-MET, Correlation: 0.9339950904846612
Pair: CAT-MCHP, Correlation: 0.9271030625274899
Pair: CAT-MU, Correlation: 0.9246300294792443
Pair: CAT-MSFT, Correlation: 0.9588766088920494
Pair: CAT-MOH, Correlation: 0.9183773952673672
Pair: CAT-MPWR, Correlation: 0.9637112915198893
Pair: CAT-MCO, Correlation: 0.9295222459532893
Pair: CAT-MS, Correlation: 0.9406138850267234
Pair: CAT-MSI, Correlation: 0.9708142605371747
Pair: CAT-MSCI, Correlation: 0.9054024829222721
Pair: CAT-NDAQ, Correlation: 0.9125998398198693
Pair: CAT-NTAP, Correlation: 0.9367089314217656
Pair: CAT-NDSN, Correlation: 0.9133770370078251
Pair: CAT-NRG, Correlation: 0.9047773522364204
Pair: CAT-NUE, Correlation: 0.9278068858377468
Pair: CAT-NVR, Correlation: 0.9671970633929181
Pair: CAT-NXPI, Correlation: 0.9198877791909438
Pair: CAT-ORLY, Correlation: 0.9530204006739873
Pair: CAT-ODFL, Correlation: 0.9541330721623
Pair: CAT-ON, Correlation: 0.9132201123585568
Pair: CAT-OKE, Correlation: 0.9102388747490973
Pair: CAT-ORCL, Correlation: 0.9681390085298182
Pair: CAT-PCAR, Correlation: 0.9691207911198433
Pair: CAT-PKG, Correlation: 0.9420250750625717
Pair: CAT-PANW, Correlation: 0.9545593419197465
Pair: CAT-PH, Correlation: 0.9869798491447793
Pair: CAT-PAYX, Correlation: 0.9222496700405527
Pair: CAT-PNR, Correlation: 0.9118829142221748
Pair: CAT-PG, Correlation: 0.91746738915468
Pair: CAT-PGR, Correlation: 0.9745826640089533
Pair: CAT-PEG, Correlation: 0.9117867964264741
Pair: CAT-PTC, Correlation: 0.9588766741085576
Pair: CAT-PHM, Correlation: 0.9601991757247563
Pair: CAT-PWR, Correlation: 0.9581063476059215
Pair: CAT-QCOM, Correlation: 0.9116465744785666
Pair: CAT-RJF, Correlation: 0.9541587851042292
Pair: CAT-RSG, Correlation: 0.9647186897449451
Pair: CAT-ROL, Correlation: 0.9260673867729191
Pair: CAT-ROP, Correlation: 0.9093103566395111
Pair: CAT-SPGI, Correlation: 0.9129993072395604
Pair: CAT-STX, Correlation: 0.9009718152818454
Pair: CAT-NOW, Correlation: 0.9370189662103059
Pair: CAT-SHW, Correlation: 0.924754181150086
Pair: CAT-SNA, Correlation: 0.9113547534630463
Pair: CAT-SO, Correlation: 0.9272548187170353
Pair: CAT-STLD, Correlation: 0.9577025450449491
Pair: CAT-SYK, Correlation: 0.9413679761254878
Pair: CAT-SNPS, Correlation: 0.9639269356227926
Pair: CAT-TMUS, Correlation: 0.9429168321028356
Pair: CAT-TEL, Correlation: 0.9083858960337147
Pair: CAT-TXN, Correlation: 0.9140346137599492
Pair: CAT-TPL, Correlation: 0.9352366705384716
Pair: CAT-TJX, Correlation: 0.9490269421692503
Pair: CAT-TSCO, Correlation: 0.9505832786109522
Pair: CAT-TT, Correlation: 0.977287783271007
Pair: CAT-TDG, Correlation: 0.9710236404595977
Pair: CAT-TRV, Correlation: 0.9277744038762968
Pair: CAT-URI, Correlation: 0.9832804817454499
Pair: CAT-UNH, Correlation: 0.9244111217458074
Pair: CAT-VLO, Correlation: 0.9067430576660483
Pair: CAT-VRSK, Correlation: 0.9224914329575843
Pair: CAT-VRTX, Correlation: 0.9297325385017992
Pair: CAT-V, Correlation: 0.908955760004682
Pair: CAT-VMC, Correlation: 0.930878135864405
Pair: CAT-WRB, Correlation: 0.9516937432023329
Pair: CAT-GWW, Correlation: 0.9674348784090654
Pair: CAT-WMT, Correlation: 0.9544230842508491
Pair: CAT-WM, Correlation: 0.948551064897
Pair: CAT-WTW, Correlation: 0.9240450798488092
Pair: CAT-XYL, Correlation: 0.9168498577455627
Pair: CAT-YUM, Correlation: 0.9052266475965922
Pair: CBOE-CBRE, Correlation: 0.9054106071988272
Pair: CBOE-CDW, Correlation: 0.9118226630241866
Pair: CBOE-COR, Correlation: 0.9232810049122014
Pair: CBOE-CB, Correlation: 0.9659415497233531
Pair: CBOE-CHD, Correlation: 0.9177145567292404
Pair: CBOE-CI, Correlation: 0.95828856704559
Pair: CBOE-CINF, Correlation: 0.9320727113531893
Pair: CBOE-CTAS, Correlation: 0.938409563555717
Pair: CBOE-CSCO, Correlation: 0.9147803336327378
Pair: CBOE-CME, Correlation: 0.9378815893569876
Pair: CBOE-CMS, Correlation: 0.9105371933327915
Pair: CBOE-KO, Correlation: 0.9398040892218877
Pair: CBOE-CL, Correlation: 0.9195309746934528
Pair: CBOE-ED, Correlation: 0.946913187927027
Pair: CBOE-STZ, Correlation: 0.923076965978139
Pair: CBOE-COO, Correlation: 0.9006062175320281
Pair: CBOE-CPRT, Correlation: 0.9242836370545339
Pair: CBOE-COST, Correlation: 0.9255301231354627
Pair: CBOE-CSX, Correlation: 0.9143354783264913
Pair: CBOE-CMI, Correlation: 0.9162372800779319
Pair: CBOE-DRI, Correlation: 0.9440716105122489
Pair: CBOE-DFS, Correlation: 0.9140964323271198
Pair: CBOE-DOV, Correlation: 0.9171542171855401
Pair: CBOE-DHI, Correlation: 0.9285462797669195
Pair: CBOE-DTE, Correlation: 0.9208101943670973
Pair: CBOE-DUK, Correlation: 0.9321098252615945
Pair: CBOE-EIX, Correlation: 0.9134229216166933
Pair: CBOE-ELV, Correlation: 0.9251852804325679
Pair: CBOE-EMR, Correlation: 0.9151351758594112
Pair: CBOE-ETR, Correlation: 0.9234558058757679
Pair: CBOE-EFX, Correlation: 0.9131826230695969
Pair: CBOE-EQIX, Correlation: 0.9179694389826587
Pair: CBOE-ERIE, Correlation: 0.9204804086037416
Pair: CBOE-EG, Correlation: 0.9657168294436533
Pair: CBOE-FDS, Correlation: 0.9140065196340398
Pair: CBOE-FAST, Correlation: 0.9013950829772929
Pair: CBOE-FI, Correlation: 0.9568593873128106
Pair: CBOE-IT, Correlation: 0.9364933939890615
Pair: CBOE-GD, Correlation: 0.9667052017271374
Pair: CBOE-GL, Correlation: 0.9137495031198376
Pair: CBOE-GS, Correlation: 0.9161008155144756
Pair: CBOE-HIG, Correlation: 0.9622331851270103
Pair: CBOE-HCA, Correlation: 0.9321409220363824
Pair: CBOE-HLT, Correlation: 0.9453386598893738
Pair: CBOE-HD, Correlation: 0.9361680296377528
Pair: CBOE-HON, Correlation: 0.9185875436377661
Pair: CBOE-HWM, Correlation: 0.9123304958702553
Pair: CBOE-HUBB, Correlation: 0.9088962347178158
Pair: CBOE-HII, Correlation: 0.91876798534537
Pair: CBOE-IEX, Correlation: 0.9154605448933187
Pair: CBOE-ITW, Correlation: 0.9467575504049205
Pair: CBOE-IR, Correlation: 0.9249945174146162
Pair: CBOE-ICE, Correlation: 0.9474666365870446
Pair: CBOE-INTU, Correlation: 0.916312096705289
Pair: CBOE-ISRG, Correlation: 0.9264584633411477
Pair: CBOE-JBHT, Correlation: 0.9020680714529268
Pair: CBOE-JNJ, Correlation: 0.9100345703019528
Pair: CBOE-JPM, Correlation: 0.964564665618605
Pair: CBOE-LHX, Correlation: 0.9129172130461389
Pair: CBOE-LDOS, Correlation: 0.9370394946814199
Pair: CBOE-LEN, Correlation: 0.9226991055826037
Pair: CBOE-LII, Correlation: 0.9590044531765765
Pair: CBOE-LIN, Correlation: 0.9190195345116225
Pair: CBOE-LYV, Correlation: 0.9085200192652539
Pair: CBOE-LMT, Correlation: 0.9576157557611652
Pair: CBOE-LOW, Correlation: 0.9148516616949346
Pair: CBOE-MAR, Correlation: 0.9792819081552693
Pair: CBOE-MMC, Correlation: 0.9522847249258508
Pair: CBOE-MLM, Correlation: 0.9493757958141856
Pair: CBOE-MAS, Correlation: 0.9481112154248836
Pair: CBOE-MA, Correlation: 0.9355762068544863
Pair: CBOE-MCD, Correlation: 0.9408594314645415
Pair: CBOE-MRK, Correlation: 0.9372331775894658
Pair: CBOE-META, Correlation: 0.9031068612932562
Pair: CBOE-MET, Correlation: 0.9107255245248689
Pair: CBOE-MCHP, Correlation: 0.9189678292904689
Pair: CBOE-MU, Correlation: 0.9034713369609565
Pair: CBOE-MSFT, Correlation: 0.9159261506623771
Pair: CBOE-MDLZ, Correlation: 0.9339230316288704
Pair: CBOE-MNST, Correlation: 0.9229100219982537
Pair: CBOE-MCO, Correlation: 0.9332736726495093
Pair: CBOE-MS, Correlation: 0.9038029211815648
Pair: CBOE-MSI, Correlation: 0.9382194270006858
Pair: CBOE-NDAQ, Correlation: 0.913210029400343
Pair: CBOE-NI, Correlation: 0.931433411078448
Pair: CBOE-NDSN, Correlation: 0.9228374889806811
Pair: CBOE-NOC, Correlation: 0.9505996552884135
Pair: CBOE-NVR, Correlation: 0.9640181199779352
Pair: CBOE-NXPI, Correlation: 0.9284112646043163
Pair: CBOE-ORLY, Correlation: 0.9345519784899474
Pair: CBOE-ODFL, Correlation: 0.901497942542014
Pair: CBOE-OMC, Correlation: 0.9008804336228424
Pair: CBOE-OKE, Correlation: 0.9263301768312513
Pair: CBOE-ORCL, Correlation: 0.9161888675829661
Pair: CBOE-PCAR, Correlation: 0.9204826808372126
Pair: CBOE-PKG, Correlation: 0.967227632534698
Pair: CBOE-PANW, Correlation: 0.9123247692182465
Pair: CBOE-PH, Correlation: 0.9277777303978497
Pair: CBOE-PAYX, Correlation: 0.9336633727249031
Pair: CBOE-PEP, Correlation: 0.9281752462944265
Pair: CBOE-PM, Correlation: 0.9066775085728322
Pair: CBOE-PSX, Correlation: 0.914071001175684
Pair: CBOE-PFG, Correlation: 0.9277144800195393
Pair: CBOE-PG, Correlation: 0.9148113200274912
Pair: CBOE-PGR, Correlation: 0.9313971263129469
Pair: CBOE-PRU, Correlation: 0.9259399524049288
Pair: CBOE-PEG, Correlation: 0.9533695591139916
Pair: CBOE-PTC, Correlation: 0.9420518356740692
Pair: CBOE-PHM, Correlation: 0.9136037379647061
Pair: CBOE-DGX, Correlation: 0.9172028613378627
Pair: CBOE-RJF, Correlation: 0.9330972899669818
Pair: CBOE-RTX, Correlation: 0.9313957137999279
Pair: CBOE-RF, Correlation: 0.9085461677169072
Pair: CBOE-RSG, Correlation: 0.9533269705614672
Pair: CBOE-ROK, Correlation: 0.9009279763038059
Pair: CBOE-ROL, Correlation: 0.9364005528763576
Pair: CBOE-ROP, Correlation: 0.9455575074410398
Pair: CBOE-ROST, Correlation: 0.9460201242699712
Pair: CBOE-SPGI, Correlation: 0.9206803268508671
Pair: CBOE-SRE, Correlation: 0.9302379069912659
Pair: CBOE-SHW, Correlation: 0.9305638574957569
Pair: CBOE-SNA, Correlation: 0.9434101438797196
Pair: CBOE-SO, Correlation: 0.9280238542277847
Pair: CBOE-STE, Correlation: 0.9048266663211232
Pair: CBOE-SYK, Correlation: 0.962926087466484
Pair: CBOE-SNPS, Correlation: 0.9001923752651373
Pair: CBOE-SYY, Correlation: 0.9045880748186744
Pair: CBOE-TMUS, Correlation: 0.9290873783897359
Pair: CBOE-TEL, Correlation: 0.9307676768489757
Pair: CBOE-TXN, Correlation: 0.9171166549505151
Pair: CBOE-TXT, Correlation: 0.9273548503135939
Pair: CBOE-TJX, Correlation: 0.9596708272578495
Pair: CBOE-TT, Correlation: 0.9143156766620143
Pair: CBOE-TDG, Correlation: 0.9407937021450631
Pair: CBOE-TRV, Correlation: 0.9680119600840299
Pair: CBOE-TYL, Correlation: 0.9047524692811099
Pair: CBOE-UNP, Correlation: 0.920522214470093
Pair: CBOE-URI, Correlation: 0.9085253495424533
Pair: CBOE-UNH, Correlation: 0.9283422244283267
Pair: CBOE-VLO, Correlation: 0.9336921592152659
Pair: CBOE-VRSK, Correlation: 0.934126555880757
Pair: CBOE-VRTX, Correlation: 0.9425965731470799
Pair: CBOE-V, Correlation: 0.9445121362481419
Pair: CBOE-VMC, Correlation: 0.9606351987455106
Pair: CBOE-WRB, Correlation: 0.9435624085769315
Pair: CBOE-WMT, Correlation: 0.9280848526328578
Pair: CBOE-WM, Correlation: 0.9539168686571493
Pair: CBOE-WELL, Correlation: 0.9209581268564447
Pair: CBOE-WTW, Correlation: 0.9404009585517494
Pair: CBOE-XYL, Correlation: 0.92330649628737
Pair: CBOE-YUM, Correlation: 0.9400654666404257
Pair: CBRE-CDW, Correlation: 0.9373735230993919
Pair: CBRE-CE, Correlation: 0.9133434217723724
Pair: CBRE-SCHW, Correlation: 0.9417698833069209
Pair: CBRE-CMG, Correlation: 0.9037598223541771
Pair: CBRE-CB, Correlation: 0.9398000120179246
Pair: CBRE-CHD, Correlation: 0.9237894079416953
Pair: CBRE-CI, Correlation: 0.9066052482917384
Pair: CBRE-CINF, Correlation: 0.9470366841609172
Pair: CBRE-CTAS, Correlation: 0.9371334750119917
Pair: CBRE-CSCO, Correlation: 0.9163979876123695
Pair: CBRE-CME, Correlation: 0.922448555955328
Pair: CBRE-KO, Correlation: 0.9402120848066198
Pair: CBRE-COO, Correlation: 0.92146231954152
Pair: CBRE-CPRT, Correlation: 0.9363907348194449
Pair: CBRE-GLW, Correlation: 0.9293872300945278
Pair: CBRE-COST, Correlation: 0.9388515412070448
Pair: CBRE-CSX, Correlation: 0.947266208615735
Pair: CBRE-CMI, Correlation: 0.9482341033588879
Pair: CBRE-DHR, Correlation: 0.9536416217956377
Pair: CBRE-DRI, Correlation: 0.9442002985476716
Pair: CBRE-DE, Correlation: 0.9437420212419924
Pair: CBRE-DFS, Correlation: 0.9648110988545584
Pair: CBRE-DPZ, Correlation: 0.9198036134316745
Pair: CBRE-DOV, Correlation: 0.9783258950130013
Pair: CBRE-DHI, Correlation: 0.9276704223322196
Pair: CBRE-DTE, Correlation: 0.9214001772899638
Pair: CBRE-DUK, Correlation: 0.9425682075278912
Pair: CBRE-EBAY, Correlation: 0.915047651049659
Pair: CBRE-ELV, Correlation: 0.9401673351636378
Pair: CBRE-EMR, Correlation: 0.9628305234589144
Pair: CBRE-ETR, Correlation: 0.9382325470573514
Pair: CBRE-EFX, Correlation: 0.9578544033956393
Pair: CBRE-EQIX, Correlation: 0.924907757173443
Pair: CBRE-EXC, Correlation: 0.9004151749173162
Pair: CBRE-EXPD, Correlation: 0.9582337531506407
Pair: CBRE-EXR, Correlation: 0.9562431889096631
Pair: CBRE-FDS, Correlation: 0.9460549527546216
Pair: CBRE-FAST, Correlation: 0.9485901257961712
Pair: CBRE-FITB, Correlation: 0.9593059962388965
Pair: CBRE-FI, Correlation: 0.921551575622399
Pair: CBRE-FTNT, Correlation: 0.9480147266824964
Pair: CBRE-GRMN, Correlation: 0.9539929996749705
Pair: CBRE-IT, Correlation: 0.9398943920018734
Pair: CBRE-GEN, Correlation: 0.9269115156179316
Pair: CBRE-GS, Correlation: 0.9609929688622669
Pair: CBRE-HIG, Correlation: 0.9356425469081745
Pair: CBRE-HCA, Correlation: 0.9600177158512673
Pair: CBRE-HLT, Correlation: 0.9448812804380763
Pair: CBRE-HOLX, Correlation: 0.930565159040659
Pair: CBRE-HD, Correlation: 0.9657953219294297
Pair: CBRE-HON, Correlation: 0.9381186192708809
Pair: CBRE-HPQ, Correlation: 0.9322999014063253
Pair: CBRE-IEX, Correlation: 0.9346486648676487
Pair: CBRE-IDXX, Correlation: 0.9328998839666945
Pair: CBRE-ITW, Correlation: 0.947491505385354
Pair: CBRE-ICE, Correlation: 0.9617459461582937
Pair: CBRE-IPG, Correlation: 0.9338018770898483
Pair: CBRE-INTU, Correlation: 0.9652434024948092
Pair: CBRE-ISRG, Correlation: 0.9539080516308557
Pair: CBRE-INVH, Correlation: 0.9129517086653336
Pair: CBRE-IQV, Correlation: 0.9453432998062486
Pair: CBRE-JBHT, Correlation: 0.9440032509417163
Pair: CBRE-J, Correlation: 0.9603250645757677
Pair: CBRE-JNJ, Correlation: 0.9065639716877198
Pair: CBRE-JCI, Correlation: 0.9573762569410275
Pair: CBRE-JPM, Correlation: 0.9616148089971825
Pair: CBRE-KDP, Correlation: 0.9268767835432898
Pair: CBRE-KEYS, Correlation: 0.9120719844463259
Pair: CBRE-KKR, Correlation: 0.9267432998818239
Pair: CBRE-KLAC, Correlation: 0.9040741770792053
Pair: CBRE-LHX, Correlation: 0.9250971024108932
Pair: CBRE-LH, Correlation: 0.9650333364685585
Pair: CBRE-LRCX, Correlation: 0.9213980197952236
Pair: CBRE-LDOS, Correlation: 0.9251984060810241
Pair: CBRE-LEN, Correlation: 0.9194215280557685
Pair: CBRE-LII, Correlation: 0.9145626270077093
Pair: CBRE-LIN, Correlation: 0.9417885039419398
Pair: CBRE-LYV, Correlation: 0.9674437192146476
Pair: CBRE-LMT, Correlation: 0.9071982509641949
Pair: CBRE-LOW, Correlation: 0.9707800261316635
Pair: CBRE-MAR, Correlation: 0.9304931629081153
Pair: CBRE-MMC, Correlation: 0.9542064622132821
Pair: CBRE-MLM, Correlation: 0.9445894586632954
Pair: CBRE-MAS, Correlation: 0.9428326295642678
Pair: CBRE-MA, Correlation: 0.9453942686857086
Pair: CBRE-MCD, Correlation: 0.9377859522344028
Pair: CBRE-MET, Correlation: 0.953172704844383
Pair: CBRE-MTD, Correlation: 0.9498595297611362
Pair: CBRE-MCHP, Correlation: 0.9428612051909334
Pair: CBRE-MU, Correlation: 0.9284589465388111
Pair: CBRE-MSFT, Correlation: 0.9464768274730595
Pair: CBRE-MAA, Correlation: 0.9437279021655538
Pair: CBRE-MOH, Correlation: 0.9362035360062284
Pair: CBRE-MDLZ, Correlation: 0.9233254679021297
Pair: CBRE-MPWR, Correlation: 0.933440058685933
Pair: CBRE-MNST, Correlation: 0.9097510279269136
Pair: CBRE-MCO, Correlation: 0.968332228112318
Pair: CBRE-MS, Correlation: 0.9768784790345815
Pair: CBRE-MSI, Correlation: 0.9443465496090391
Pair: CBRE-MSCI, Correlation: 0.9534763433586372
Pair: CBRE-NDAQ, Correlation: 0.9716592155650121
Pair: CBRE-NTAP, Correlation: 0.9083967617858784
Pair: CBRE-NEE, Correlation: 0.9290722576564102
Pair: CBRE-NDSN, Correlation: 0.9502997011648684
Pair: CBRE-NSC, Correlation: 0.9495131428198377
Pair: CBRE-NOC, Correlation: 0.9070526810735856
Pair: CBRE-NVR, Correlation: 0.9475174741300479
Pair: CBRE-NXPI, Correlation: 0.9496650347790409
Pair: CBRE-ORLY, Correlation: 0.9251313887793469
Pair: CBRE-ODFL, Correlation: 0.9431926429734281
Pair: CBRE-ORCL, Correlation: 0.9253799240309453
Pair: CBRE-PKG, Correlation: 0.9458187911352297
Pair: CBRE-PH, Correlation: 0.9219144850158572
Pair: CBRE-PAYX, Correlation: 0.9674356017452953
Pair: CBRE-PNR, Correlation: 0.9179142725763341
Pair: CBRE-PEP, Correlation: 0.9308753720669745
Pair: CBRE-PNC, Correlation: 0.9527088819909098
Pair: CBRE-POOL, Correlation: 0.9410673025605893
Pair: CBRE-PFG, Correlation: 0.9127316678418994
Pair: CBRE-PG, Correlation: 0.9455079013736677
Pair: CBRE-PGR, Correlation: 0.9113706764061839
Pair: CBRE-PLD, Correlation: 0.9514372881136784
Pair: CBRE-PRU, Correlation: 0.905197525361954
Pair: CBRE-PEG, Correlation: 0.9506653320779096
Pair: CBRE-PTC, Correlation: 0.9418001247074029
Pair: CBRE-PSA, Correlation: 0.9423654747904686
Pair: CBRE-QCOM, Correlation: 0.9250662271268941
Pair: CBRE-DGX, Correlation: 0.9426929903932362
Pair: CBRE-RJF, Correlation: 0.9616574527538282
Pair: CBRE-RTX, Correlation: 0.9221736182781519
Pair: CBRE-RF, Correlation: 0.9531769473978339
Pair: CBRE-RSG, Correlation: 0.9460690819955409
Pair: CBRE-RMD, Correlation: 0.9379091600019006
Pair: CBRE-RVTY, Correlation: 0.9041048892846664
Pair: CBRE-ROK, Correlation: 0.9427730751852618
Pair: CBRE-ROL, Correlation: 0.9296781524439569
Pair: CBRE-ROP, Correlation: 0.9432236431597778
Pair: CBRE-ROST, Correlation: 0.9043216410239265
Pair: CBRE-SPGI, Correlation: 0.9620943442186131
Pair: CBRE-CRM, Correlation: 0.9242715480453151
Pair: CBRE-STX, Correlation: 0.9580976810217247
Pair: CBRE-SRE, Correlation: 0.9060893975592732
Pair: CBRE-NOW, Correlation: 0.9459997481959572
Pair: CBRE-SHW, Correlation: 0.9717276110937958
Pair: CBRE-SNA, Correlation: 0.9247113189291686
Pair: CBRE-SO, Correlation: 0.941648854098455
Pair: CBRE-SBUX, Correlation: 0.9036709195798553
Pair: CBRE-STE, Correlation: 0.954587378232514
Pair: CBRE-SYK, Correlation: 0.9516243165949844
Pair: CBRE-SNPS, Correlation: 0.9109063783701226
Pair: CBRE-SYY, Correlation: 0.9073132214915461
Pair: CBRE-TMUS, Correlation: 0.9472651223582316
Pair: CBRE-TGT, Correlation: 0.9000263605095462
Pair: CBRE-TEL, Correlation: 0.9692156938960436
Pair: CBRE-TDY, Correlation: 0.9402566887344431
Pair: CBRE-TER, Correlation: 0.9380981838984639
Pair: CBRE-TXN, Correlation: 0.9634056702828133
Pair: CBRE-TPL, Correlation: 0.9152391482867025
Pair: CBRE-TXT, Correlation: 0.9066577530613098
Pair: CBRE-TMO, Correlation: 0.9529316721708395
Pair: CBRE-TJX, Correlation: 0.9336879349794655
Pair: CBRE-TSCO, Correlation: 0.9430295245216942
Pair: CBRE-TT, Correlation: 0.9287090462993606
Pair: CBRE-TDG, Correlation: 0.9171597181115804
Pair: CBRE-TRV, Correlation: 0.9364868529967417
Pair: CBRE-TYL, Correlation: 0.9531305752621584
Pair: CBRE-UNP, Correlation: 0.954637758930665
Pair: CBRE-UPS, Correlation: 0.9046742181401559
Pair: CBRE-URI, Correlation: 0.9123492398314162
Pair: CBRE-UNH, Correlation: 0.9499154250811891
Pair: CBRE-VRSK, Correlation: 0.9409745634877352
Pair: CBRE-V, Correlation: 0.9389185285678762
Pair: CBRE-VMC, Correlation: 0.9364706733691651
Pair: CBRE-WRB, Correlation: 0.9379654045547572
Pair: CBRE-WMT, Correlation: 0.9370864654253694
Pair: CBRE-WM, Correlation: 0.9546642216137836
Pair: CBRE-WAT, Correlation: 0.9587467810092689
Pair: CBRE-WELL, Correlation: 0.9181294223563309
Pair: CBRE-WST, Correlation: 0.926742055003989
Pair: CBRE-WTW, Correlation: 0.9554758219523419
Pair: CBRE-XYL, Correlation: 0.9438450086033178
Pair: CBRE-YUM, Correlation: 0.9442608794042245
Pair: CBRE-ZBRA, Correlation: 0.9044452660660482
Pair: CBRE-ZTS, Correlation: 0.9264507480504615
Pair: CDW-CE, Correlation: 0.9058441650883469
Pair: CDW-CMG, Correlation: 0.9041895779060222
Pair: CDW-CB, Correlation: 0.9350783924160097
Pair: CDW-CHD, Correlation: 0.953709537926106
Pair: CDW-CI, Correlation: 0.9279888814519491
Pair: CDW-CINF, Correlation: 0.9352201140783971
Pair: CDW-CTAS, Correlation: 0.9446244598159886
Pair: CDW-CSCO, Correlation: 0.9166698643698176
Pair: CDW-CME, Correlation: 0.9356438821911408
Pair: CDW-CMS, Correlation: 0.9140709030025139
Pair: CDW-KO, Correlation: 0.9605032710365781
Pair: CDW-COO, Correlation: 0.920747504717605
Pair: CDW-CPRT, Correlation: 0.9739421444504165
Pair: CDW-CSGP, Correlation: 0.9226190835749802
Pair: CDW-COST, Correlation: 0.9403326843172478
Pair: CDW-CSX, Correlation: 0.9610798553976783
Pair: CDW-CMI, Correlation: 0.9324559675004086
Pair: CDW-DHR, Correlation: 0.9656105976967709
Pair: CDW-DRI, Correlation: 0.9606193681962777
Pair: CDW-DE, Correlation: 0.9593788842555293
Pair: CDW-DXCM, Correlation: 0.906394100838943
Pair: CDW-DFS, Correlation: 0.9050821569198996
Pair: CDW-DPZ, Correlation: 0.9284353017260221
Pair: CDW-DOV, Correlation: 0.9703696267603655
Pair: CDW-DHI, Correlation: 0.927296299529805
Pair: CDW-DTE, Correlation: 0.9316262041143737
Pair: CDW-DUK, Correlation: 0.9475700390012608
Pair: CDW-ELV, Correlation: 0.9696578045464102
Pair: CDW-EMR, Correlation: 0.9450682463691064
Pair: CDW-ETR, Correlation: 0.9345786733320877
Pair: CDW-EFX, Correlation: 0.9346928704417624
Pair: CDW-EQIX, Correlation: 0.9466676955113688
Pair: CDW-EG, Correlation: 0.9269218955721157
Pair: CDW-EXC, Correlation: 0.9205258965125346
Pair: CDW-EXPD, Correlation: 0.976759664248353
Pair: CDW-EXR, Correlation: 0.9251678005028648
Pair: CDW-FDS, Correlation: 0.9725266943411551
Pair: CDW-FAST, Correlation: 0.9647535768246386
Pair: CDW-FI, Correlation: 0.9238927854790483
Pair: CDW-FTNT, Correlation: 0.9437538714975053
Pair: CDW-GRMN, Correlation: 0.9218813433010612
Pair: CDW-IT, Correlation: 0.9359889849455046
Pair: CDW-GPC, Correlation: 0.9032818424129045
Pair: CDW-GS, Correlation: 0.9024426406410075
Pair: CDW-HCA, Correlation: 0.9536346367959447
Pair: CDW-HSY, Correlation: 0.9159681816796341
Pair: CDW-HLT, Correlation: 0.9510827733921994
Pair: CDW-HOLX, Correlation: 0.9399230296731563
Pair: CDW-HD, Correlation: 0.9756678063013762
Pair: CDW-HON, Correlation: 0.9531029326217747
Pair: CDW-HPQ, Correlation: 0.924690893685109
Pair: CDW-IEX, Correlation: 0.9627602627722845
Pair: CDW-IDXX, Correlation: 0.9373919583036092
Pair: CDW-ITW, Correlation: 0.975827530434084
Pair: CDW-IR, Correlation: 0.9033885992482084
Pair: CDW-ICE, Correlation: 0.9609101186813456
Pair: CDW-IPG, Correlation: 0.9081408777118714
Pair: CDW-INTU, Correlation: 0.9775713248933902
Pair: CDW-ISRG, Correlation: 0.9455840162302056
Pair: CDW-INVH, Correlation: 0.9043534567472128
Pair: CDW-IQV, Correlation: 0.9662745184350773
Pair: CDW-JBHT, Correlation: 0.9513140307090624
Pair: CDW-JBL, Correlation: 0.9001227630912
Pair: CDW-J, Correlation: 0.9632313542208075
Pair: CDW-JNJ, Correlation: 0.9367594571042317
Pair: CDW-JPM, Correlation: 0.9445215388146104
Pair: CDW-KDP, Correlation: 0.9406987484740801
Pair: CDW-KEYS, Correlation: 0.9395968443883088
Pair: CDW-KLAC, Correlation: 0.9269435560290368
Pair: CDW-LHX, Correlation: 0.9246231981287785
Pair: CDW-LH, Correlation: 0.9424756343914651
Pair: CDW-LRCX, Correlation: 0.9553843371491691
Pair: CDW-LDOS, Correlation: 0.9259407642417957
Pair: CDW-LIN, Correlation: 0.9681995930739109
Pair: CDW-LYV, Correlation: 0.937424054025206
Pair: CDW-LMT, Correlation: 0.9306926297561818
Pair: CDW-LOW, Correlation: 0.9704975248316375
Pair: CDW-LULU, Correlation: 0.9256492101428894
Pair: CDW-MAR, Correlation: 0.924442530904259
Pair: CDW-MMC, Correlation: 0.975338721505349
Pair: CDW-MLM, Correlation: 0.9485246370763883
Pair: CDW-MAS, Correlation: 0.9423897266305412
Pair: CDW-MA, Correlation: 0.9746793143981615
Pair: CDW-MCD, Correlation: 0.9729586851359444
Pair: CDW-MRK, Correlation: 0.9386416507044355
Pair: CDW-MET, Correlation: 0.9097722668023259
Pair: CDW-MTD, Correlation: 0.9480629227490422
Pair: CDW-MCHP, Correlation: 0.9743408960814328
Pair: CDW-MU, Correlation: 0.9012581849294743
Pair: CDW-MSFT, Correlation: 0.9751834028667189
Pair: CDW-MAA, Correlation: 0.9005267265174285
Pair: CDW-MOH, Correlation: 0.9686882718189251
Pair: CDW-MDLZ, Correlation: 0.9676738884563111
Pair: CDW-MPWR, Correlation: 0.941018716783958
Pair: CDW-MNST, Correlation: 0.9455625274936476
Pair: CDW-MCO, Correlation: 0.9673944342383676
Pair: CDW-MS, Correlation: 0.9419016675140193
Pair: CDW-MSI, Correlation: 0.9465615107375208
Pair: CDW-MSCI, Correlation: 0.9695813569447989
Pair: CDW-NDAQ, Correlation: 0.9621959167120451
Pair: CDW-NEE, Correlation: 0.9212041045680275
Pair: CDW-NDSN, Correlation: 0.9745386387128311
Pair: CDW-NSC, Correlation: 0.9402332175461887
Pair: CDW-NOC, Correlation: 0.9316122872371921
Pair: CDW-NVR, Correlation: 0.9479823654611172
Pair: CDW-NXPI, Correlation: 0.944209481043312
Pair: CDW-ORLY, Correlation: 0.9455194497687079
Pair: CDW-ODFL, Correlation: 0.970205638391039
Pair: CDW-ON, Correlation: 0.915659088482128
Pair: CDW-OTIS, Correlation: 0.9166064714776552
Pair: CDW-PKG, Correlation: 0.9273688943925594
Pair: CDW-PANW, Correlation: 0.9031661160407815
Pair: CDW-PH, Correlation: 0.9082455597345656
Pair: CDW-PAYX, Correlation: 0.9748466798265255
Pair: CDW-PEP, Correlation: 0.9670281374583609
Pair: CDW-POOL, Correlation: 0.931604069152922
Pair: CDW-PG, Correlation: 0.9693884515256069
Pair: CDW-PGR, Correlation: 0.924624718079423
Pair: CDW-PLD, Correlation: 0.9559926085054319
Pair: CDW-PEG, Correlation: 0.9355138405852811
Pair: CDW-PTC, Correlation: 0.9541652361014294
Pair: CDW-PSA, Correlation: 0.9084436642047711
Pair: CDW-QCOM, Correlation: 0.9103985450533874
Pair: CDW-DGX, Correlation: 0.9411846276662712
Pair: CDW-RJF, Correlation: 0.9439242314029378
Pair: CDW-RSG, Correlation: 0.9643960983779419
Pair: CDW-RMD, Correlation: 0.9135233102065465
Pair: CDW-ROK, Correlation: 0.9492536984387302
Pair: CDW-ROL, Correlation: 0.953988563091352
Pair: CDW-ROP, Correlation: 0.9764005822750742
Pair: CDW-ROST, Correlation: 0.9273543768940308
Pair: CDW-SPGI, Correlation: 0.9686656253160773
Pair: CDW-CRM, Correlation: 0.9150965388034681
Pair: CDW-SRE, Correlation: 0.9316333541187617
Pair: CDW-NOW, Correlation: 0.9496220401011769
Pair: CDW-SHW, Correlation: 0.9660930818609347
Pair: CDW-SNA, Correlation: 0.9134142170547453
Pair: CDW-SO, Correlation: 0.948043249026077
Pair: CDW-SBUX, Correlation: 0.9076063949335799
Pair: CDW-STE, Correlation: 0.9716352443713929
Pair: CDW-SYK, Correlation: 0.9713882151817098
Pair: CDW-SNPS, Correlation: 0.9562391389839633
Pair: CDW-SYY, Correlation: 0.9133472550287088
Pair: CDW-TMUS, Correlation: 0.9517944894056565
Pair: CDW-TEL, Correlation: 0.9619735088740672
Pair: CDW-TDY, Correlation: 0.9550875517123953
Pair: CDW-TER, Correlation: 0.9307186714454819
Pair: CDW-TXN, Correlation: 0.9677952542935407
Pair: CDW-TMO, Correlation: 0.9655376091043903
Pair: CDW-TJX, Correlation: 0.94763134550452
Pair: CDW-TSCO, Correlation: 0.9426629130579194
Pair: CDW-TT, Correlation: 0.9119595703428887
Pair: CDW-TDG, Correlation: 0.9271560849942
Pair: CDW-TRV, Correlation: 0.9287557778723351
Pair: CDW-TYL, Correlation: 0.9274712110917559
Pair: CDW-UNP, Correlation: 0.9703986871392323
Pair: CDW-UNH, Correlation: 0.9673330916380555
Pair: CDW-VRSK, Correlation: 0.9652170797427824
Pair: CDW-VRTX, Correlation: 0.9027356900570687
Pair: CDW-VICI, Correlation: 0.9199153511052709
Pair: CDW-V, Correlation: 0.9733179555877567
Pair: CDW-VMC, Correlation: 0.9422127904448907
Pair: CDW-WRB, Correlation: 0.9590041981636069
Pair: CDW-WMT, Correlation: 0.9298290828353076
Pair: CDW-WM, Correlation: 0.9791124738552225
Pair: CDW-WAT, Correlation: 0.9371591717245618
Pair: CDW-WEC, Correlation: 0.9012557009668154
Pair: CDW-WST, Correlation: 0.9353210387445526
Pair: CDW-WTW, Correlation: 0.9655123437000241
Pair: CDW-WDAY, Correlation: 0.9026102593438974
Pair: CDW-XYL, Correlation: 0.9557639848149082
Pair: CDW-YUM, Correlation: 0.9746056317243874
Pair: CDW-ZTS, Correlation: 0.9549375608359848
Pair: CE-CNC, Correlation: 0.9143915440281485
Pair: CE-CRL, Correlation: 0.9129857300126076
Pair: CE-SCHW, Correlation: 0.9304935384012512
Pair: CE-CHD, Correlation: 0.9271686040752628
Pair: CE-CINF, Correlation: 0.9298561666923622
Pair: CE-CSCO, Correlation: 0.9306634643049433
Pair: CE-CME, Correlation: 0.9464740225483462
Pair: CE-CMS, Correlation: 0.920582715284713
Pair: CE-KO, Correlation: 0.9002914323846538
Pair: CE-CMCSA, Correlation: 0.9298219445007233
Pair: CE-STZ, Correlation: 0.9227785621308139
Pair: CE-COO, Correlation: 0.9523422820110249
Pair: CE-GLW, Correlation: 0.9220766007714986
Pair: CE-CSGP, Correlation: 0.918835081723113
Pair: CE-CSX, Correlation: 0.9560218480005447
Pair: CE-DHR, Correlation: 0.9248254908812428
Pair: CE-DRI, Correlation: 0.9303574708006592
Pair: CE-DLR, Correlation: 0.927478694455095
Pair: CE-DFS, Correlation: 0.905514301590842
Pair: CE-DPZ, Correlation: 0.9494167127240782
Pair: CE-DOV, Correlation: 0.9276419119272655
Pair: CE-DTE, Correlation: 0.9347003099144076
Pair: CE-DUK, Correlation: 0.9183976273624084
Pair: CE-EMN, Correlation: 0.9110079440132381
Pair: CE-EBAY, Correlation: 0.9236416356687681
Pair: CE-ECL, Correlation: 0.9215097632199392
Pair: CE-EW, Correlation: 0.9305492475285534
Pair: CE-EA, Correlation: 0.91500432830306
Pair: CE-ELV, Correlation: 0.9123980821215397
Pair: CE-EMR, Correlation: 0.9072954418689135
Pair: CE-EFX, Correlation: 0.9311081114973714
Pair: CE-EQIX, Correlation: 0.9289749652263267
Pair: CE-ESS, Correlation: 0.9081491980689165
Pair: CE-EXPD, Correlation: 0.9306413363004128
Pair: CE-EXR, Correlation: 0.9159600586020319
Pair: CE-FDS, Correlation: 0.9053238497536431
Pair: CE-FITB, Correlation: 0.928775686624835
Pair: CE-FI, Correlation: 0.9037867219249579
Pair: CE-GL, Correlation: 0.9060150808732829
Pair: CE-HOLX, Correlation: 0.9183542861368628
Pair: CE-HD, Correlation: 0.9420816539394642
Pair: CE-HON, Correlation: 0.9575556246445914
Pair: CE-HBAN, Correlation: 0.917220084401501
Pair: CE-IEX, Correlation: 0.9495288238872713
Pair: CE-IDXX, Correlation: 0.9404243389586691
Pair: CE-ITW, Correlation: 0.9415802501841403
Pair: CE-ICE, Correlation: 0.9411823494829725
Pair: CE-IPG, Correlation: 0.9022431037294614
Pair: CE-INTU, Correlation: 0.9157625207783099
Pair: CE-IQV, Correlation: 0.9325651433547198
Pair: CE-JBHT, Correlation: 0.9305124761138552
Pair: CE-JKHY, Correlation: 0.9146263227327327
Pair: CE-J, Correlation: 0.9010808421226579
Pair: CE-JNJ, Correlation: 0.9311382368199077
Pair: CE-JPM, Correlation: 0.9226624119852238
Pair: CE-KDP, Correlation: 0.9230651385999012
Pair: CE-LHX, Correlation: 0.9339407007879933
Pair: CE-LH, Correlation: 0.9531237522670769
Pair: CE-LYV, Correlation: 0.9414182014242644
Pair: CE-LOW, Correlation: 0.912925569657448
Pair: CE-MAR, Correlation: 0.9026424343273427
Pair: CE-MAS, Correlation: 0.9379861166523421
Pair: CE-MA, Correlation: 0.9256851442687496
Pair: CE-MCD, Correlation: 0.9159875424157673
Pair: CE-MTD, Correlation: 0.9308091635729886
Pair: CE-MGM, Correlation: 0.9167832918694169
Pair: CE-MCHP, Correlation: 0.9450311837674215
Pair: CE-MU, Correlation: 0.9200976448830611
Pair: CE-MAA, Correlation: 0.9169498743285028
Pair: CE-MDLZ, Correlation: 0.9098327499536648
Pair: CE-MNST, Correlation: 0.9148621842745068
Pair: CE-MCO, Correlation: 0.9255317050349013
Pair: CE-MSCI, Correlation: 0.90006387770289
Pair: CE-NDAQ, Correlation: 0.9149119663791825
Pair: CE-NEE, Correlation: 0.909758338037106
Pair: CE-NKE, Correlation: 0.9170406245884852
Pair: CE-NDSN, Correlation: 0.939667670433089
Pair: CE-NSC, Correlation: 0.9507533512142856
Pair: CE-NTRS, Correlation: 0.9197157085017403
Pair: CE-NXPI, Correlation: 0.9251156789322623
Pair: CE-PKG, Correlation: 0.9130180485513691
Pair: CE-PAYX, Correlation: 0.9192683541798107
Pair: CE-PEP, Correlation: 0.906015927466655
Pair: CE-PNC, Correlation: 0.9491811122905957
Pair: CE-POOL, Correlation: 0.9323433008093116
Pair: CE-PPG, Correlation: 0.9153611464116718
Pair: CE-PG, Correlation: 0.901862314030796
Pair: CE-PLD, Correlation: 0.9292871925495639
Pair: CE-PEG, Correlation: 0.9120826331322651
Pair: CE-PTC, Correlation: 0.9184960690179744
Pair: CE-DGX, Correlation: 0.9290843866335886
Pair: CE-RF, Correlation: 0.9216737480483318
Pair: CE-RVTY, Correlation: 0.9176626999369488
Pair: CE-ROK, Correlation: 0.941563453417833
Pair: CE-ROL, Correlation: 0.9152076816578252
Pair: CE-ROP, Correlation: 0.94430353018212
Pair: CE-ROST, Correlation: 0.9307779049967153
Pair: CE-SPGI, Correlation: 0.9333938612739732
Pair: CE-CRM, Correlation: 0.9345747994136184
Pair: CE-STX, Correlation: 0.9007660853788652
Pair: CE-SHW, Correlation: 0.9390758512239564
Pair: CE-SBUX, Correlation: 0.9183322998014305
Pair: CE-STE, Correlation: 0.9392572631020446
Pair: CE-SYK, Correlation: 0.9311186830556729
Pair: CE-SYY, Correlation: 0.944540551551493
Pair: CE-TROW, Correlation: 0.916698699342334
Pair: CE-TTWO, Correlation: 0.9359636806820195
Pair: CE-TEL, Correlation: 0.9590871192843143
Pair: CE-TDY, Correlation: 0.9328786612684499
Pair: CE-TER, Correlation: 0.9177744786813632
Pair: CE-TXN, Correlation: 0.9425506522024063
Pair: CE-TMO, Correlation: 0.9206334236481079
Pair: CE-TYL, Correlation: 0.9276235128480259
Pair: CE-UDR, Correlation: 0.9194113027625971
Pair: CE-UNP, Correlation: 0.9473694139418175
Pair: CE-UPS, Correlation: 0.9069099222548108
Pair: CE-VRSN, Correlation: 0.9102721153113457
Pair: CE-VRSK, Correlation: 0.9065315028320372
Pair: CE-V, Correlation: 0.9355978200166158
Pair: CE-VMC, Correlation: 0.9129249156536259
Pair: CE-WM, Correlation: 0.9069305022649433
Pair: CE-WAT, Correlation: 0.9456483617858584
Pair: CE-WEC, Correlation: 0.9049232109916147
Pair: CE-WST, Correlation: 0.9087075203938048
Pair: CE-WTW, Correlation: 0.924231260330437
Pair: CE-WDAY, Correlation: 0.9091385436963727
Pair: CE-XEL, Correlation: 0.905851469655472
Pair: CE-XYL, Correlation: 0.9377120860006432
Pair: CE-YUM, Correlation: 0.9375883261818407
Pair: CE-ZTS, Correlation: 0.9149736661363096
Pair: COR-CMG, Correlation: 0.940759476507612
Pair: COR-CB, Correlation: 0.9602142285558479
Pair: COR-CI, Correlation: 0.9448074173497393
Pair: COR-CTAS, Correlation: 0.9498013143851383
Pair: COR-KO, Correlation: 0.9198152782470999
Pair: COR-CL, Correlation: 0.90024729722706
Pair: COR-CPRT, Correlation: 0.9258858667167815
Pair: COR-COST, Correlation: 0.955099825925893
Pair: COR-CMI, Correlation: 0.9176975237431078
Pair: COR-DECK, Correlation: 0.9166397342219131
Pair: COR-DELL, Correlation: 0.9019243834211831
Pair: COR-DFS, Correlation: 0.9032964507794242
Pair: COR-DHI, Correlation: 0.9487725015894836
Pair: COR-ETN, Correlation: 0.9519985613774679
Pair: COR-ELV, Correlation: 0.9158481013396255
Pair: COR-EMR, Correlation: 0.9143195127769836
Pair: COR-ERIE, Correlation: 0.9162140447846214
Pair: COR-EG, Correlation: 0.9440238531426074
Pair: COR-FDS, Correlation: 0.9038329568326438
Pair: COR-FICO, Correlation: 0.9111388821279487
Pair: COR-FAST, Correlation: 0.9251687497386473
Pair: COR-IT, Correlation: 0.9642318337952533
Pair: COR-GD, Correlation: 0.9283495610742467
Pair: COR-GPC, Correlation: 0.9096730401808586
Pair: COR-GS, Correlation: 0.9251115856463493
Pair: COR-HIG, Correlation: 0.9557866174711276
Pair: COR-HCA, Correlation: 0.9495566533451222
Pair: COR-HLT, Correlation: 0.9300847962919364
Pair: COR-HD, Correlation: 0.9010165978792188
Pair: COR-HUBB, Correlation: 0.9668990086193844
Pair: COR-ITW, Correlation: 0.9080807033267689
Pair: COR-IR, Correlation: 0.9557600853825733
Pair: COR-INTU, Correlation: 0.9045290124828074
Pair: COR-IRM, Correlation: 0.9369793651889112
Pair: COR-JBL, Correlation: 0.9390354090560017
Pair: COR-JPM, Correlation: 0.9149587209473957
Pair: COR-KKR, Correlation: 0.9215466424851776
Pair: COR-KLAC, Correlation: 0.9469848623310827
Pair: COR-KR, Correlation: 0.9395325350811052
Pair: COR-LRCX, Correlation: 0.9171691831273899
Pair: COR-LEN, Correlation: 0.9598150514570076
Pair: COR-LII, Correlation: 0.9137611124000289
Pair: COR-LLY, Correlation: 0.9376578960827558
Pair: COR-LIN, Correlation: 0.9474333769107418
Pair: COR-LOW, Correlation: 0.9235924065984216
Pair: COR-MPC, Correlation: 0.9511214686904796
Pair: COR-MAR, Correlation: 0.9387198309986287
Pair: COR-MMC, Correlation: 0.9541824616532735
Pair: COR-MLM, Correlation: 0.9540596614288379
Pair: COR-MAS, Correlation: 0.9014864279807175
Pair: COR-MCK, Correlation: 0.969845190383162
Pair: COR-MRK, Correlation: 0.9468874200783326
Pair: COR-MET, Correlation: 0.9326963026852015
Pair: COR-MSFT, Correlation: 0.9285947664931109
Pair: COR-MOH, Correlation: 0.9107219392340985
Pair: COR-MDLZ, Correlation: 0.921913818292578
Pair: COR-MPWR, Correlation: 0.9326646071358333
Pair: COR-MNST, Correlation: 0.9045787492612029
Pair: COR-MCO, Correlation: 0.9051636718600478
Pair: COR-MS, Correlation: 0.9088092023235896
Pair: COR-MSI, Correlation: 0.9444743932954303
Pair: COR-NUE, Correlation: 0.9307767519537402
Pair: COR-NVR, Correlation: 0.935080068042519
Pair: COR-NXPI, Correlation: 0.9322063531196201
Pair: COR-ORLY, Correlation: 0.9709027478193842
Pair: COR-ODFL, Correlation: 0.9317119108876363
Pair: COR-ON, Correlation: 0.9025332390380011
Pair: COR-ORCL, Correlation: 0.9460769977319577
Pair: COR-PCAR, Correlation: 0.9641987234003309
Pair: COR-PKG, Correlation: 0.9365738963231061
Pair: COR-PANW, Correlation: 0.9701717351856469
Pair: COR-PH, Correlation: 0.9533387867990694
Pair: COR-PAYX, Correlation: 0.9164790533592866
Pair: COR-PEP, Correlation: 0.9119709815159612
Pair: COR-PFG, Correlation: 0.9292858805784895
Pair: COR-PG, Correlation: 0.9122101629369204
Pair: COR-PGR, Correlation: 0.947454393190167
Pair: COR-PEG, Correlation: 0.9011361337304848
Pair: COR-PTC, Correlation: 0.916654645122375
Pair: COR-PHM, Correlation: 0.9377484726242769
Pair: COR-PWR, Correlation: 0.9371337787822475
Pair: COR-RJF, Correlation: 0.9406150872374747
Pair: COR-REGN, Correlation: 0.9516655268253674
Pair: COR-RSG, Correlation: 0.9521164286463741
Pair: COR-ROL, Correlation: 0.9022291330152478
Pair: COR-SHW, Correlation: 0.9015619687942652
Pair: COR-SNA, Correlation: 0.9597879712456154
Pair: COR-SO, Correlation: 0.927862743018697
Pair: COR-STLD, Correlation: 0.9496435458572537
Pair: COR-SYK, Correlation: 0.9187621803158427
Pair: COR-SNPS, Correlation: 0.9459067409077765
Pair: COR-TMUS, Correlation: 0.9205533747691059
Pair: COR-TXT, Correlation: 0.9046121754067755
Pair: COR-TJX, Correlation: 0.9524258396774932
Pair: COR-TSCO, Correlation: 0.9529320433387926
Pair: COR-TT, Correlation: 0.9389995479427795
Pair: COR-TDG, Correlation: 0.9492210139527086
Pair: COR-TRV, Correlation: 0.9507393438701921
Pair: COR-URI, Correlation: 0.9539421972511871
Pair: COR-UNH, Correlation: 0.9171011205685418
Pair: COR-VLO, Correlation: 0.936229198265418
Pair: COR-VRSK, Correlation: 0.9103408399414712
Pair: COR-VRTX, Correlation: 0.9492857688001941
Pair: COR-VMC, Correlation: 0.9424537933194804
Pair: COR-WRB, Correlation: 0.9491842566039645
Pair: COR-GWW, Correlation: 0.9591467039487797
Pair: COR-WAB, Correlation: 0.9065061210005804
Pair: COR-WMT, Correlation: 0.9203455497529106
Pair: COR-WM, Correlation: 0.9345339204623777
Pair: COR-WELL, Correlation: 0.9031020767468108
Pair: COR-WTW, Correlation: 0.9008716621758119
Pair: CNC-SCHW, Correlation: 0.9187444067133338
Pair: CNC-CHD, Correlation: 0.9291854870666525
Pair: CNC-CI, Correlation: 0.924351512380896
Pair: CNC-CINF, Correlation: 0.9081310860038633
Pair: CNC-CSCO, Correlation: 0.9348600648148911
Pair: CNC-CME, Correlation: 0.9514862183573619
Pair: CNC-CMS, Correlation: 0.9553395433571239
Pair: CNC-KO, Correlation: 0.9148374963713958
Pair: CNC-ED, Correlation: 0.9221094875208452
Pair: CNC-STZ, Correlation: 0.9506088072632612
Pair: CNC-COO, Correlation: 0.9333098231984633
Pair: CNC-CSGP, Correlation: 0.9039774812436157
Pair: CNC-CCI, Correlation: 0.9076900705395208
Pair: CNC-CSX, Correlation: 0.9429433296121734
Pair: CNC-DHR, Correlation: 0.9011659586751044
Pair: CNC-DRI, Correlation: 0.9043544800357578
Pair: CNC-DLR, Correlation: 0.9069322172717643
Pair: CNC-DLTR, Correlation: 0.9013797323443493
Pair: CNC-DPZ, Correlation: 0.9378626892860217
Pair: CNC-DTE, Correlation: 0.9567497219854005
Pair: CNC-DUK, Correlation: 0.9318046315608218
Pair: CNC-EW, Correlation: 0.9176725613771398
Pair: CNC-EA, Correlation: 0.9436949811599772
Pair: CNC-ELV, Correlation: 0.9338804103872254
Pair: CNC-ETR, Correlation: 0.9082844430743713
Pair: CNC-EQIX, Correlation: 0.9172109457979929
Pair: CNC-EVRG, Correlation: 0.9470279410003739
Pair: CNC-ES, Correlation: 0.926677457086314
Pair: CNC-EXR, Correlation: 0.9232930569733802
Pair: CNC-FDS, Correlation: 0.918815338893618
Pair: CNC-GL, Correlation: 0.9370180059315574
Pair: CNC-HOLX, Correlation: 0.9147359200617802
Pair: CNC-HD, Correlation: 0.9258640973995184
Pair: CNC-HON, Correlation: 0.9428977493669028
Pair: CNC-HRL, Correlation: 0.9146606575029165
Pair: CNC-HUM, Correlation: 0.9543471432101871
Pair: CNC-HBAN, Correlation: 0.9051415767013766
Pair: CNC-HII, Correlation: 0.9018851691789325
Pair: CNC-IEX, Correlation: 0.9472035170938956
Pair: CNC-ITW, Correlation: 0.9198543460871017
Pair: CNC-ICE, Correlation: 0.9138536145870993
Pair: CNC-JBHT, Correlation: 0.9210081624880304
Pair: CNC-JKHY, Correlation: 0.9770244517298918
Pair: CNC-JNJ, Correlation: 0.96512815493447
Pair: CNC-KDP, Correlation: 0.9543533294680574
Pair: CNC-LHX, Correlation: 0.9529143154411979
Pair: CNC-LH, Correlation: 0.9175474453638799
Pair: CNC-LYV, Correlation: 0.9127104881487221
Pair: CNC-LMT, Correlation: 0.9355831042097474
Pair: CNC-MAS, Correlation: 0.9021021332469162
Pair: CNC-MA, Correlation: 0.910872315536507
Pair: CNC-MKC, Correlation: 0.9324394247214267
Pair: CNC-MCD, Correlation: 0.9186816133474611
Pair: CNC-MTD, Correlation: 0.9103902069470979
Pair: CNC-MAA, Correlation: 0.9080158459037602
Pair: CNC-MDLZ, Correlation: 0.9136310594619179
Pair: CNC-MNST, Correlation: 0.9283671448644296
Pair: CNC-NDAQ, Correlation: 0.910823269093218
Pair: CNC-NEE, Correlation: 0.9275591099879749
Pair: CNC-NI, Correlation: 0.9331321307671951
Pair: CNC-NDSN, Correlation: 0.9241001848949171
Pair: CNC-NSC, Correlation: 0.932636159199138
Pair: CNC-NTRS, Correlation: 0.9134222636738124
Pair: CNC-NOC, Correlation: 0.948496687844761
Pair: CNC-PAYX, Correlation: 0.9165645400227977
Pair: CNC-PEP, Correlation: 0.9277417039347139
Pair: CNC-PFE, Correlation: 0.9207444860300154
Pair: CNC-PNC, Correlation: 0.9154139354558807
Pair: CNC-PLD, Correlation: 0.9122969038089439
Pair: CNC-PEG, Correlation: 0.9151491503912658
Pair: CNC-DGX, Correlation: 0.9308028849083362
Pair: CNC-O, Correlation: 0.9274161855164423
Pair: CNC-RF, Correlation: 0.9057261345248981
Pair: CNC-RMD, Correlation: 0.9020336289069377
Pair: CNC-RVTY, Correlation: 0.9154010841127532
Pair: CNC-ROK, Correlation: 0.9093977209059769
Pair: CNC-ROL, Correlation: 0.9197760174099305
Pair: CNC-ROP, Correlation: 0.9304462455650315
Pair: CNC-ROST, Correlation: 0.9091645198087331
Pair: CNC-SPGI, Correlation: 0.910182279400798
Pair: CNC-SBAC, Correlation: 0.9181068216720245
Pair: CNC-SRE, Correlation: 0.9285305739249452
Pair: CNC-SHW, Correlation: 0.9013069868356727
Pair: CNC-SBUX, Correlation: 0.9031712922415492
Pair: CNC-STE, Correlation: 0.924995599033049
Pair: CNC-SYY, Correlation: 0.9550892695041698
Pair: CNC-TTWO, Correlation: 0.9166882617058181
Pair: CNC-TEL, Correlation: 0.916934233122676
Pair: CNC-TDY, Correlation: 0.9239586699541656
Pair: CNC-TXN, Correlation: 0.9216258448728621
Pair: CNC-TMO, Correlation: 0.9119398825761066
Pair: CNC-TYL, Correlation: 0.9020728865579953
Pair: CNC-UDR, Correlation: 0.9212444555913784
Pair: CNC-ULTA, Correlation: 0.9028683794439877
Pair: CNC-UNP, Correlation: 0.9400341633283964
Pair: CNC-UNH, Correlation: 0.924729352474203
Pair: CNC-VRSN, Correlation: 0.9355564544842024
Pair: CNC-V, Correlation: 0.9279077980079594
Pair: CNC-WAT, Correlation: 0.9269518930676388
Pair: CNC-WEC, Correlation: 0.9467838586481091
Pair: CNC-WTW, Correlation: 0.9076670477538553
Pair: CNC-XEL, Correlation: 0.9489123631355106
Pair: CNC-YUM, Correlation: 0.9244991716653228
Pair: CNP-CB, Correlation: 0.9093679140071658
Pair: CNP-CINF, Correlation: 0.9104923757894956
Pair: CNP-KO, Correlation: 0.9168011550052733
Pair: CNP-ED, Correlation: 0.9398759517176226
Pair: CNP-STZ, Correlation: 0.9137869318401532
Pair: CNP-DRI, Correlation: 0.9062461019304164
Pair: CNP-DTE, Correlation: 0.9351734726618437
Pair: CNP-DUK, Correlation: 0.9209079759295155
Pair: CNP-EG, Correlation: 0.9164685514739617
Pair: CNP-EVRG, Correlation: 0.9037940162708481
Pair: CNP-GD, Correlation: 0.9215834894348841
Pair: CNP-GPC, Correlation: 0.9011676470188944
Pair: CNP-GL, Correlation: 0.9209918977155541
Pair: CNP-JNJ, Correlation: 0.9101120409392526
Pair: CNP-LMT, Correlation: 0.9035636002509376
Pair: CNP-MTB, Correlation: 0.9068709826548598
Pair: CNP-MAR, Correlation: 0.9040275899520819
Pair: CNP-NI, Correlation: 0.9309452145235286
Pair: CNP-NOC, Correlation: 0.9179923976397665
Pair: CNP-OKE, Correlation: 0.9142184901302699
Pair: CNP-PEP, Correlation: 0.9000848548305719
Pair: CNP-PNW, Correlation: 0.9046789889596337
Pair: CNP-PFG, Correlation: 0.9195345453954704
Pair: CNP-PRU, Correlation: 0.9167684970447043
Pair: CNP-PEG, Correlation: 0.9026233679592552
Pair: CNP-RTX, Correlation: 0.9274633037126024
Pair: CNP-RF, Correlation: 0.90453893886736
Pair: CNP-SRE, Correlation: 0.9286878682407265
Pair: CNP-SYY, Correlation: 0.9178704609463083
Pair: CNP-TXT, Correlation: 0.9000267361939122
Pair: CNP-TRV, Correlation: 0.9163247157144457
Pair: CNP-ULTA, Correlation: 0.9202768275260598
Pair: CNP-YUM, Correlation: 0.9168513605290626
Pair: CF-CVX, Correlation: 0.9270958049272908
Pair: CF-COP, Correlation: 0.9332002372624869
Pair: CRL-CHTR, Correlation: 0.9003009119206888
Pair: CRL-COO, Correlation: 0.9064608408981473
Pair: CRL-CSGP, Correlation: 0.9133173197569743
Pair: CRL-CCI, Correlation: 0.923077322094896
Pair: CRL-CSX, Correlation: 0.9035631535070399
Pair: CRL-DHR, Correlation: 0.9341718421552841
Pair: CRL-DXCM, Correlation: 0.9205546507943323
Pair: CRL-DPZ, Correlation: 0.9261526021747553
Pair: CRL-EBAY, Correlation: 0.9393068309375595
Pair: CRL-EW, Correlation: 0.947060734944346
Pair: CRL-EPAM, Correlation: 0.9693111486493462
Pair: CRL-EFX, Correlation: 0.9043626026540429
Pair: CRL-EL, Correlation: 0.9253027503983396
Pair: CRL-EXPD, Correlation: 0.909587803787587
Pair: CRL-EXR, Correlation: 0.9015859044682784
Pair: CRL-GNRC, Correlation: 0.9360962471031953
Pair: CRL-HD, Correlation: 0.9025319547723408
Pair: CRL-HON, Correlation: 0.9076029315575797
Pair: CRL-IEX, Correlation: 0.9077385245298651
Pair: CRL-IDXX, Correlation: 0.962658109163239
Pair: CRL-PODD, Correlation: 0.9179845115440999
Pair: CRL-IQV, Correlation: 0.9216363740333222
Pair: CRL-LH, Correlation: 0.9398693756617179
Pair: CRL-LULU, Correlation: 0.9063901326998257
Pair: CRL-MTD, Correlation: 0.934859853323018
Pair: CRL-MAA, Correlation: 0.9279628470500333
Pair: CRL-MRNA, Correlation: 0.9095727940419094
Pair: CRL-MSCI, Correlation: 0.925039756155445
Pair: CRL-NDAQ, Correlation: 0.9086835486691264
Pair: CRL-NEE, Correlation: 0.9167404013129382
Pair: CRL-NKE, Correlation: 0.9585528269265277
Pair: CRL-NDSN, Correlation: 0.9005007360230354
Pair: CRL-NSC, Correlation: 0.9317990991231846
Pair: CRL-PAYC, Correlation: 0.9012605428040622
Pair: CRL-POOL, Correlation: 0.9639557903661501
Pair: CRL-PLD, Correlation: 0.9224132323041164
Pair: CRL-RMD, Correlation: 0.9408431353368463
Pair: CRL-RVTY, Correlation: 0.9628024463300446
Pair: CRL-ROK, Correlation: 0.9184885003338091
Pair: CRL-SPGI, Correlation: 0.9113003402666122
Pair: CRL-CRM, Correlation: 0.9038088778521568
Pair: CRL-SBAC, Correlation: 0.9183488851043391
Pair: CRL-SHW, Correlation: 0.9040420260004944
Pair: CRL-SWKS, Correlation: 0.9029602228651505
Pair: CRL-SBUX, Correlation: 0.9070874409400654
Pair: CRL-STE, Correlation: 0.9129858035790063
Pair: CRL-TROW, Correlation: 0.9734670391162076
Pair: CRL-TGT, Correlation: 0.9691724964353685
Pair: CRL-TEL, Correlation: 0.9059776623991105
Pair: CRL-TDY, Correlation: 0.916909584488551
Pair: CRL-TER, Correlation: 0.9315515035333758
Pair: CRL-TXN, Correlation: 0.9125135830758111
Pair: CRL-TMO, Correlation: 0.9220939815833121
Pair: CRL-TRMB, Correlation: 0.9545702521428466
Pair: CRL-TYL, Correlation: 0.9115607803825656
Pair: CRL-UPS, Correlation: 0.930522104524628
Pair: CRL-WAT, Correlation: 0.9283019870113245
Pair: CRL-WST, Correlation: 0.9400585075554919
Pair: CRL-ZBRA, Correlation: 0.9773432298302249
Pair: CRL-ZTS, Correlation: 0.9147399041238315
Pair: SCHW-CB, Correlation: 0.9127918301183794
Pair: SCHW-CI, Correlation: 0.9170556194157772
Pair: SCHW-CINF, Correlation: 0.9279227785652583
Pair: SCHW-CSCO, Correlation: 0.9158980724065912
Pair: SCHW-CFG, Correlation: 0.9120038728594497
Pair: SCHW-CME, Correlation: 0.9193843477065837
Pair: SCHW-KO, Correlation: 0.9086209656895327
Pair: SCHW-STZ, Correlation: 0.916250954023177
Pair: SCHW-COO, Correlation: 0.9096796789122029
Pair: SCHW-GLW, Correlation: 0.9255168261809342
Pair: SCHW-CSX, Correlation: 0.9401389977274212
Pair: SCHW-DHR, Correlation: 0.9277384413498364
Pair: SCHW-DRI, Correlation: 0.9248942961049017
Pair: SCHW-DE, Correlation: 0.9162940763855815
Pair: SCHW-DFS, Correlation: 0.9385716948247737
Pair: SCHW-DPZ, Correlation: 0.9191774192927781
Pair: SCHW-DOV, Correlation: 0.9297006007185813
Pair: SCHW-DTE, Correlation: 0.9309046183083935
Pair: SCHW-DUK, Correlation: 0.9233476151553065
Pair: SCHW-EMN, Correlation: 0.9106146285151848
Pair: SCHW-ELV, Correlation: 0.9371461598949437
Pair: SCHW-EMR, Correlation: 0.926596279160373
Pair: SCHW-EFX, Correlation: 0.9266304707984817
Pair: SCHW-EXPD, Correlation: 0.9197897718337698
Pair: SCHW-EXR, Correlation: 0.9492446919949429
Pair: SCHW-FDS, Correlation: 0.9188090829639165
Pair: SCHW-FITB, Correlation: 0.9711321866400819
Pair: SCHW-GEN, Correlation: 0.915648902653335
Pair: SCHW-GD, Correlation: 0.9166030612771051
Pair: SCHW-GPC, Correlation: 0.9047520006220221
Pair: SCHW-GL, Correlation: 0.9042979246442249
Pair: SCHW-GS, Correlation: 0.9166718953793517
Pair: SCHW-HOLX, Correlation: 0.9152943584545061
Pair: SCHW-HD, Correlation: 0.9386182879344472
Pair: SCHW-HON, Correlation: 0.9426517318099631
Pair: SCHW-HPQ, Correlation: 0.9151162423437827
Pair: SCHW-HBAN, Correlation: 0.9495158098526255
Pair: SCHW-IEX, Correlation: 0.9415976375110309
Pair: SCHW-IDXX, Correlation: 0.9076034938659664
Pair: SCHW-ITW, Correlation: 0.931947401789273
Pair: SCHW-ICE, Correlation: 0.9229024980216103
Pair: SCHW-IPG, Correlation: 0.9393198147320844
Pair: SCHW-INTU, Correlation: 0.9058170624108577
Pair: SCHW-IQV, Correlation: 0.9168495394587423
Pair: SCHW-JBHT, Correlation: 0.9509633826968619
Pair: SCHW-JKHY, Correlation: 0.906362066099631
Pair: SCHW-J, Correlation: 0.9034077022024419
Pair: SCHW-JNJ, Correlation: 0.9344634257594838
Pair: SCHW-JCI, Correlation: 0.9273205843205758
Pair: SCHW-JPM, Correlation: 0.9164048291261061
Pair: SCHW-KDP, Correlation: 0.9248361062598327
Pair: SCHW-KEY, Correlation: 0.9126780364490401
Pair: SCHW-LHX, Correlation: 0.9290704476336061
Pair: SCHW-LH, Correlation: 0.9565435265715123
Pair: SCHW-LYV, Correlation: 0.9448803623765432
Pair: SCHW-LOW, Correlation: 0.9309840904846878
Pair: SCHW-MAR, Correlation: 0.9051300064115673
Pair: SCHW-MMC, Correlation: 0.9076508905580055
Pair: SCHW-MAS, Correlation: 0.9107684702717248
Pair: SCHW-MCD, Correlation: 0.9100435894732206
Pair: SCHW-MET, Correlation: 0.9363812712790012
Pair: SCHW-MTD, Correlation: 0.9428675032113903
Pair: SCHW-MGM, Correlation: 0.9300686765606694
Pair: SCHW-MCHP, Correlation: 0.9321839242538051
Pair: SCHW-MU, Correlation: 0.9015211967763407
Pair: SCHW-MAA, Correlation: 0.9378614619551402
Pair: SCHW-MOH, Correlation: 0.9066692712002242
Pair: SCHW-MNST, Correlation: 0.90681135728686
Pair: SCHW-MCO, Correlation: 0.9097328617113076
Pair: SCHW-MS, Correlation: 0.9465360266397608
Pair: SCHW-MSCI, Correlation: 0.903236787922435
Pair: SCHW-NDAQ, Correlation: 0.9449072944098023
Pair: SCHW-NEE, Correlation: 0.9171090372438465
Pair: SCHW-NDSN, Correlation: 0.9369542388083499
Pair: SCHW-NSC, Correlation: 0.9412551262577373
Pair: SCHW-NTRS, Correlation: 0.926438833704863
Pair: SCHW-NOC, Correlation: 0.9238065660319349
Pair: SCHW-NXPI, Correlation: 0.9246837275393331
Pair: SCHW-PKG, Correlation: 0.9179108655351248
Pair: SCHW-PAYX, Correlation: 0.9429570242888522
Pair: SCHW-PEP, Correlation: 0.9206465328370179
Pair: SCHW-PNC, Correlation: 0.9723365344981503
Pair: SCHW-POOL, Correlation: 0.9180327351306169
Pair: SCHW-PFG, Correlation: 0.934136152446959
Pair: SCHW-PLD, Correlation: 0.9277897040963925
Pair: SCHW-PRU, Correlation: 0.9319146170738529
Pair: SCHW-PEG, Correlation: 0.9117951083431901
Pair: SCHW-PTC, Correlation: 0.9103211649123792
Pair: SCHW-PSA, Correlation: 0.9268611872964172
Pair: SCHW-DGX, Correlation: 0.9428148617794425
Pair: SCHW-RJF, Correlation: 0.9480364210968593
Pair: SCHW-RTX, Correlation: 0.9043414294478738
Pair: SCHW-RF, Correlation: 0.9772556673421909
Pair: SCHW-RMD, Correlation: 0.9128725314659261
Pair: SCHW-RVTY, Correlation: 0.9232020499482343
Pair: SCHW-ROK, Correlation: 0.9364123095887608
Pair: SCHW-ROL, Correlation: 0.9024953330718111
Pair: SCHW-ROP, Correlation: 0.9129675844637819
Pair: SCHW-SPGI, Correlation: 0.9158853357523697
Pair: SCHW-STX, Correlation: 0.9075645591752184
Pair: SCHW-SRE, Correlation: 0.9005356284952576
Pair: SCHW-SHW, Correlation: 0.9208420087442462
Pair: SCHW-SNA, Correlation: 0.9018279566756807
Pair: SCHW-STE, Correlation: 0.920338668776652
Pair: SCHW-SYK, Correlation: 0.9096803029732147
Pair: SCHW-SYY, Correlation: 0.9333546801359007
Pair: SCHW-TEL, Correlation: 0.9609790604816095
Pair: SCHW-TDY, Correlation: 0.9148191201849407
Pair: SCHW-TXN, Correlation: 0.9417620913629631
Pair: SCHW-TXT, Correlation: 0.9260466006859566
Pair: SCHW-TMO, Correlation: 0.9286797613262007
Pair: SCHW-TRV, Correlation: 0.917924561870069
Pair: SCHW-TYL, Correlation: 0.9079291360638893
Pair: SCHW-UDR, Correlation: 0.9096617407548112
Pair: SCHW-UNP, Correlation: 0.9373213421261464
Pair: SCHW-UPS, Correlation: 0.9276172412850444
Pair: SCHW-UNH, Correlation: 0.9319114799101931
Pair: SCHW-V, Correlation: 0.90623836030779
Pair: SCHW-VMC, Correlation: 0.9107322047160852
Pair: SCHW-WM, Correlation: 0.9146245137628255
Pair: SCHW-WAT, Correlation: 0.9593573639124798
Pair: SCHW-WY, Correlation: 0.9014998292847335
Pair: SCHW-WTW, Correlation: 0.9148813636860598
Pair: SCHW-XYL, Correlation: 0.9172675833524209
Pair: SCHW-YUM, Correlation: 0.9241536919669334
Pair: CHTR-CLX, Correlation: 0.907792439551351
Pair: CHTR-CMCSA, Correlation: 0.9383834219028186
Pair: CHTR-CCI, Correlation: 0.946666184315448
Pair: CHTR-EW, Correlation: 0.9011437470451359
Pair: CHTR-EL, Correlation: 0.9142683732564318
Pair: CHTR-ES, Correlation: 0.9264552087526113
Pair: CHTR-FIS, Correlation: 0.9081416586702099
Pair: CHTR-GPN, Correlation: 0.9354408691363557
Pair: CHTR-MKTX, Correlation: 0.9510353286372454
Pair: CHTR-MTCH, Correlation: 0.9065598797317357
Pair: CHTR-MKC, Correlation: 0.9034824681969437
Pair: CHTR-MDT, Correlation: 0.9452969255097396
Pair: CHTR-NKE, Correlation: 0.9314078244679549
Pair: CHTR-PYPL, Correlation: 0.9037340096450143
Pair: CHTR-RVTY, Correlation: 0.9082695692145935
Pair: CHTR-SBAC, Correlation: 0.9278025651699576
Pair: CHTR-SWKS, Correlation: 0.9381001067811232
Pair: CHTR-SWK, Correlation: 0.908355106100157
Pair: CHTR-TROW, Correlation: 0.9211494736130876
Pair: CHTR-TTWO, Correlation: 0.9051184735259993
Pair: CHTR-TFX, Correlation: 0.9524551341393069
Pair: CHTR-DIS, Correlation: 0.9094041892908171
Pair: CVX-CB, Correlation: 0.9115118895566444
Pair: CVX-KO, Correlation: 0.9000751573671169
Pair: CVX-COP, Correlation: 0.9605679195871104
Pair: CVX-ELV, Correlation: 0.9054472004493703
Pair: CVX-EOG, Correlation: 0.913013634451677
Pair: CVX-EG, Correlation: 0.9032278707529826
Pair: CVX-XOM, Correlation: 0.9107632481519778
Pair: CVX-IT, Correlation: 0.9038273780354747
Pair: CVX-GPC, Correlation: 0.9277129243414505
Pair: CVX-HSY, Correlation: 0.9069268544405292
Pair: CVX-L, Correlation: 0.9037915883102908
Pair: CVX-MPC, Correlation: 0.913294929069806
Pair: CVX-MMC, Correlation: 0.9025212804112328
Pair: CVX-MRK, Correlation: 0.9054964190840663
Pair: CVX-MET, Correlation: 0.9057547664053389
Pair: CVX-NUE, Correlation: 0.9349850597496059
Pair: CVX-ORLY, Correlation: 0.9047679709243467
Pair: CVX-ON, Correlation: 0.9163073718278474
Pair: CVX-OKE, Correlation: 0.9139295751013453
Pair: CVX-PFG, Correlation: 0.9224005827493241
Pair: CVX-RJF, Correlation: 0.9217105501448243
Pair: CVX-STLD, Correlation: 0.9267850021244302
Pair: CVX-VLO, Correlation: 0.939015608075593
Pair: CVX-WRB, Correlation: 0.9159029278061809
Pair: CMG-CB, Correlation: 0.9091384790870096
Pair: CMG-CTAS, Correlation: 0.9618100419161559
Pair: CMG-CEG, Correlation: 0.9228227945380713
Pair: CMG-CPRT, Correlation: 0.9604977495029254
Pair: CMG-COST, Correlation: 0.9667070951970478
Pair: CMG-CMI, Correlation: 0.9317239870305359
Pair: CMG-DECK, Correlation: 0.963043462347608
Pair: CMG-DE, Correlation: 0.9066223431726266
Pair: CMG-DELL, Correlation: 0.9150573573972741
Pair: CMG-DOV, Correlation: 0.9308560025017215
Pair: CMG-DHI, Correlation: 0.9606546093736382
Pair: CMG-ETN, Correlation: 0.9681886137017025
Pair: CMG-EMR, Correlation: 0.9251151553504787
Pair: CMG-ERIE, Correlation: 0.9247233902690974
Pair: CMG-EXPD, Correlation: 0.903240548633814
Pair: CMG-FDS, Correlation: 0.9018561708271818
Pair: CMG-FICO, Correlation: 0.9250478233452603
Pair: CMG-FAST, Correlation: 0.961063057479516
Pair: CMG-FTNT, Correlation: 0.9306009061297584
Pair: CMG-GRMN, Correlation: 0.9277673961153104
Pair: CMG-IT, Correlation: 0.949704959088779
Pair: CMG-GS, Correlation: 0.919833078974476
Pair: CMG-HIG, Correlation: 0.9049492896702256
Pair: CMG-HCA, Correlation: 0.9462821312999887
Pair: CMG-HLT, Correlation: 0.9395100093242825
Pair: CMG-HUBB, Correlation: 0.960180329107196
Pair: CMG-IR, Correlation: 0.9545334998356015
Pair: CMG-INTU, Correlation: 0.9421766537545581
Pair: CMG-ISRG, Correlation: 0.9287039252896844
Pair: CMG-IRM, Correlation: 0.9168474097370872
Pair: CMG-JBL, Correlation: 0.9369413271227794
Pair: CMG-J, Correlation: 0.9173192440045721
Pair: CMG-JPM, Correlation: 0.9100701149318791
Pair: CMG-KKR, Correlation: 0.9586390245470575
Pair: CMG-KLAC, Correlation: 0.9717776372531531
Pair: CMG-LRCX, Correlation: 0.9678279445547407
Pair: CMG-LEN, Correlation: 0.9599358346854076
Pair: CMG-LII, Correlation: 0.9074961164377662
Pair: CMG-LLY, Correlation: 0.9393190067633472
Pair: CMG-LIN, Correlation: 0.9679055954197989
Pair: CMG-LOW, Correlation: 0.9301895170479759
Pair: CMG-MMC, Correlation: 0.9410006326312688
Pair: CMG-MLM, Correlation: 0.9420145732031752
Pair: CMG-MA, Correlation: 0.9084778650825329
Pair: CMG-MCK, Correlation: 0.9169734258288886
Pair: CMG-MRK, Correlation: 0.9150905149955999
Pair: CMG-MU, Correlation: 0.9002797526406414
Pair: CMG-MSFT, Correlation: 0.9638751653347285
Pair: CMG-MOH, Correlation: 0.9185645550319916
Pair: CMG-MPWR, Correlation: 0.9663353536446504
Pair: CMG-MCO, Correlation: 0.9273226243165958
Pair: CMG-MS, Correlation: 0.9150191316756326
Pair: CMG-MSI, Correlation: 0.9565309219843467
Pair: CMG-MSCI, Correlation: 0.9067293496299262
Pair: CMG-NDAQ, Correlation: 0.9024067569651576
Pair: CMG-NVR, Correlation: 0.9339625698407866
Pair: CMG-NXPI, Correlation: 0.916181704065652
Pair: CMG-ORLY, Correlation: 0.9515877517287485
Pair: CMG-ODFL, Correlation: 0.9459043775717301
Pair: CMG-ORCL, Correlation: 0.9535923699809357
Pair: CMG-PCAR, Correlation: 0.9548126593895272
Pair: CMG-PANW, Correlation: 0.9524521902791745
Pair: CMG-PH, Correlation: 0.957979092355162
Pair: CMG-PAYX, Correlation: 0.9030466154390069
Pair: CMG-PNR, Correlation: 0.9081269643975293
Pair: CMG-PG, Correlation: 0.9259606877554203
Pair: CMG-PGR, Correlation: 0.9497966108709202
Pair: CMG-PTC, Correlation: 0.9161499537810713
Pair: CMG-PHM, Correlation: 0.9454247052969171
Pair: CMG-PWR, Correlation: 0.950742233820211
Pair: CMG-QCOM, Correlation: 0.941202846567208
Pair: CMG-RJF, Correlation: 0.912244381515815
Pair: CMG-RSG, Correlation: 0.9473334426741591
Pair: CMG-SPGI, Correlation: 0.9064912012071414
Pair: CMG-STX, Correlation: 0.906616771951718
Pair: CMG-NOW, Correlation: 0.9426217413123358
Pair: CMG-SHW, Correlation: 0.91629407825837
Pair: CMG-SO, Correlation: 0.922990972287242
Pair: CMG-STLD, Correlation: 0.9130775896233349
Pair: CMG-SYK, Correlation: 0.9131596115427842
Pair: CMG-SNPS, Correlation: 0.9697016927166667
Pair: CMG-TMUS, Correlation: 0.923461392997441
Pair: CMG-TJX, Correlation: 0.9364024453590709
Pair: CMG-TSCO, Correlation: 0.9679055455100778
Pair: CMG-TT, Correlation: 0.9676332634753388
Pair: CMG-TDG, Correlation: 0.9605050415050977
Pair: CMG-URI, Correlation: 0.9567625430392404
Pair: CMG-VRSK, Correlation: 0.925827409159079
Pair: CMG-VRTX, Correlation: 0.9174241226387464
Pair: CMG-VMC, Correlation: 0.9064247145868345
Pair: CMG-WRB, Correlation: 0.925894040712881
Pair: CMG-GWW, Correlation: 0.9589150440537035
Pair: CMG-WMT, Correlation: 0.9425806975724954
Pair: CMG-WM, Correlation: 0.9305536119100162
Pair: CMG-WTW, Correlation: 0.9011116065056008
Pair: CB-CHD, Correlation: 0.9313242369748853
Pair: CB-CI, Correlation: 0.9689811312849343
Pair: CB-CINF, Correlation: 0.9543152169349659
Pair: CB-CTAS, Correlation: 0.959582794391236
Pair: CB-CME, Correlation: 0.9160135657265169
Pair: CB-CMS, Correlation: 0.913210237086852
Pair: CB-KO, Correlation: 0.970939166730366
Pair: CB-CL, Correlation: 0.9414723403113961
Pair: CB-ED, Correlation: 0.9516304304666443
Pair: CB-STZ, Correlation: 0.9098696640502028
Pair: CB-CEG, Correlation: 0.9231805046535521
Pair: CB-CPRT, Correlation: 0.9358562033604426
Pair: CB-COST, Correlation: 0.9597924548218529
Pair: CB-CSX, Correlation: 0.9217343411523718
Pair: CB-CMI, Correlation: 0.9492435118988414
Pair: CB-DHR, Correlation: 0.9134638046039691
Pair: CB-DRI, Correlation: 0.9485224978623558
Pair: CB-DE, Correlation: 0.9170785591199109
Pair: CB-DFS, Correlation: 0.9566031770527866
Pair: CB-DOV, Correlation: 0.9469710469353952
Pair: CB-DHI, Correlation: 0.9447786098229803
Pair: CB-DTE, Correlation: 0.9360676128687402
Pair: CB-DUK, Correlation: 0.959731689664413
Pair: CB-ETN, Correlation: 0.9314958983055123
Pair: CB-EIX, Correlation: 0.921948723003252
Pair: CB-ELV, Correlation: 0.9530439875405909
Pair: CB-EMR, Correlation: 0.949695019057091
Pair: CB-ETR, Correlation: 0.9361819703554163
Pair: CB-EFX, Correlation: 0.941906217981066
Pair: CB-EQIX, Correlation: 0.9186400450320686
Pair: CB-ERIE, Correlation: 0.9310277568288482
Pair: CB-EG, Correlation: 0.9744184385938319
Pair: CB-EXPD, Correlation: 0.9168100130611894
Pair: CB-EXR, Correlation: 0.9280174177119265
Pair: CB-FDS, Correlation: 0.938588862690644
Pair: CB-FAST, Correlation: 0.9394181530918464
Pair: CB-FITB, Correlation: 0.9257125077368118
Pair: CB-FI, Correlation: 0.9386200078507815
Pair: CB-FTNT, Correlation: 0.9085599164632954
Pair: CB-GRMN, Correlation: 0.908515994931384
Pair: CB-IT, Correlation: 0.9689571689502731
Pair: CB-GD, Correlation: 0.9717688118086127
Pair: CB-GIS, Correlation: 0.9049106343280618
Pair: CB-GPC, Correlation: 0.9334839470048557
Pair: CB-GL, Correlation: 0.9019854467077631
Pair: CB-GS, Correlation: 0.9487855538865624
Pair: CB-HIG, Correlation: 0.9828959673100024
Pair: CB-HCA, Correlation: 0.9688816644924636
Pair: CB-HSY, Correlation: 0.9156439770790104
Pair: CB-HLT, Correlation: 0.9728342251902011
Pair: CB-HOLX, Correlation: 0.9233408810043934
Pair: CB-HD, Correlation: 0.9507160516079448
Pair: CB-HON, Correlation: 0.9268199923800684
Pair: CB-HWM, Correlation: 0.9194653609629434
Pair: CB-HUBB, Correlation: 0.9423032039614326
Pair: CB-IEX, Correlation: 0.9200971013776066
Pair: CB-ITW, Correlation: 0.9541908281261016
Pair: CB-IR, Correlation: 0.9482661794195162
Pair: CB-ICE, Correlation: 0.9510228493008865
Pair: CB-IPG, Correlation: 0.9316192935674136
Pair: CB-INTU, Correlation: 0.9348733264668873
Pair: CB-ISRG, Correlation: 0.9305820170448753
Pair: CB-IRM, Correlation: 0.9265998039962396
Pair: CB-JBHT, Correlation: 0.9332615561580744
Pair: CB-JBL, Correlation: 0.9011228564925459
Pair: CB-J, Correlation: 0.9203699641774715
Pair: CB-JNJ, Correlation: 0.9206986516869001
Pair: CB-JCI, Correlation: 0.9355027557736262
Pair: CB-JPM, Correlation: 0.9624693933834717
Pair: CB-KDP, Correlation: 0.9050146567204186
Pair: CB-KKR, Correlation: 0.9193816103043247
Pair: CB-KLAC, Correlation: 0.9324387523243268
Pair: CB-KR, Correlation: 0.9218819870488839
Pair: CB-LHX, Correlation: 0.9101556322187055
Pair: CB-LH, Correlation: 0.9185455654971802
Pair: CB-LRCX, Correlation: 0.9123680020840763
Pair: CB-LDOS, Correlation: 0.9332505560903791
Pair: CB-LEN, Correlation: 0.9471742508588021
Pair: CB-LII, Correlation: 0.9431997183720661
Pair: CB-LIN, Correlation: 0.9513660088451383
Pair: CB-LYV, Correlation: 0.9250847708838792
Pair: CB-LMT, Correlation: 0.9540168076619546
Pair: CB-L, Correlation: 0.9316687387291793
Pair: CB-LOW, Correlation: 0.9518623542146232
Pair: CB-MPC, Correlation: 0.9189771205031044
Pair: CB-MAR, Correlation: 0.972865744474974
Pair: CB-MMC, Correlation: 0.9767760977661328
Pair: CB-MLM, Correlation: 0.9721281541643481
Pair: CB-MAS, Correlation: 0.9497627481599059
Pair: CB-MA, Correlation: 0.9378689911888554
Pair: CB-MCD, Correlation: 0.9493645710326393
Pair: CB-MCK, Correlation: 0.9020827033574211
Pair: CB-MRK, Correlation: 0.9558372200982164
Pair: CB-MET, Correlation: 0.9640656426943038
Pair: CB-MTD, Correlation: 0.9129991167512235
Pair: CB-MCHP, Correlation: 0.9386610955455015
Pair: CB-MU, Correlation: 0.9123006953576872
Pair: CB-MSFT, Correlation: 0.9383148047862485
Pair: CB-MOH, Correlation: 0.9251301084592544
Pair: CB-MDLZ, Correlation: 0.953642459143818
Pair: CB-MPWR, Correlation: 0.9351478294629951
Pair: CB-MNST, Correlation: 0.9331876833949604
Pair: CB-MCO, Correlation: 0.9425854102055518
Pair: CB-MS, Correlation: 0.942290188633344
Pair: CB-MSI, Correlation: 0.9612005535140714
Pair: CB-NDAQ, Correlation: 0.9448256759088128
Pair: CB-NI, Correlation: 0.9240201740351365
Pair: CB-NDSN, Correlation: 0.9410880358411021
Pair: CB-NSC, Correlation: 0.9000467296727644
Pair: CB-NOC, Correlation: 0.9521610214261021
Pair: CB-NUE, Correlation: 0.9130716822217936
Pair: CB-NVR, Correlation: 0.9632063062980168
Pair: CB-NXPI, Correlation: 0.9553348930941571
Pair: CB-ORLY, Correlation: 0.9656023090890283
Pair: CB-ODFL, Correlation: 0.9334009196266095
Pair: CB-OMC, Correlation: 0.9271454883201228
Pair: CB-OKE, Correlation: 0.9460774427415114
Pair: CB-ORCL, Correlation: 0.940509276509032
Pair: CB-PCAR, Correlation: 0.9393174002471907
Pair: CB-PKG, Correlation: 0.9774137282936061
Pair: CB-PANW, Correlation: 0.9510079751970153
Pair: CB-PH, Correlation: 0.9505359658103512
Pair: CB-PAYX, Correlation: 0.9657602388137182
Pair: CB-PNR, Correlation: 0.9091861146736023
Pair: CB-PEP, Correlation: 0.9537391025914328
Pair: CB-PM, Correlation: 0.9487825731580518
Pair: CB-PNC, Correlation: 0.9109040257929181
Pair: CB-PFG, Correlation: 0.9662080651977655
Pair: CB-PG, Correlation: 0.9487007267743249
Pair: CB-PGR, Correlation: 0.9517561002264037
Pair: CB-PLD, Correlation: 0.910528809398877
Pair: CB-PRU, Correlation: 0.946534459084905
Pair: CB-PEG, Correlation: 0.9627434763056951
Pair: CB-PTC, Correlation: 0.9464648726814535
Pair: CB-PSA, Correlation: 0.9499424471675629
Pair: CB-PHM, Correlation: 0.918815462941499
Pair: CB-PWR, Correlation: 0.9015178600920374
Pair: CB-DGX, Correlation: 0.9366815891780034
Pair: CB-RJF, Correlation: 0.9736806091141373
Pair: CB-RTX, Correlation: 0.9554643841142582
Pair: CB-REGN, Correlation: 0.922694906137648
Pair: CB-RF, Correlation: 0.9327772119139567
Pair: CB-RSG, Correlation: 0.9726150783851457
Pair: CB-ROK, Correlation: 0.9121477754387146
Pair: CB-ROL, Correlation: 0.9408767092136819
Pair: CB-ROP, Correlation: 0.9433131724492337
Pair: CB-ROST, Correlation: 0.9243953262160307
Pair: CB-SPGI, Correlation: 0.9298937648757774
Pair: CB-STX, Correlation: 0.9184976850293155
Pair: CB-SRE, Correlation: 0.9494627921781714
Pair: CB-NOW, Correlation: 0.9109554380622557
Pair: CB-SHW, Correlation: 0.9463786737577222
Pair: CB-SNA, Correlation: 0.9688267587336904
Pair: CB-SO, Correlation: 0.967669638501948
Pair: CB-STLD, Correlation: 0.9348408961236464
Pair: CB-STE, Correlation: 0.9239238019784902
Pair: CB-SYK, Correlation: 0.9619468768814606
Pair: CB-SNPS, Correlation: 0.9316222023568218
Pair: CB-SYY, Correlation: 0.9103504419719727
Pair: CB-TMUS, Correlation: 0.9535547866618925
Pair: CB-TEL, Correlation: 0.9500049977318291
Pair: CB-TXN, Correlation: 0.9367859110247067
Pair: CB-TPL, Correlation: 0.9194392922244677
Pair: CB-TXT, Correlation: 0.9400367068899643
Pair: CB-TMO, Correlation: 0.9197703220062168
Pair: CB-TJX, Correlation: 0.972349850387296
Pair: CB-TSCO, Correlation: 0.9512776880190728
Pair: CB-TT, Correlation: 0.9417452426075452
Pair: CB-TDG, Correlation: 0.9536967747179357
Pair: CB-TRV, Correlation: 0.9921639423248277
Pair: CB-TYL, Correlation: 0.9154262939722451
Pair: CB-ULTA, Correlation: 0.9166810164458883
Pair: CB-UNP, Correlation: 0.9378048341105962
Pair: CB-URI, Correlation: 0.9410609227283129
Pair: CB-UNH, Correlation: 0.9555107840987992
Pair: CB-VLO, Correlation: 0.9470560765522719
Pair: CB-VLTO, Correlation: 0.9433057793607638
Pair: CB-VRSK, Correlation: 0.9423887592812503
Pair: CB-VRTX, Correlation: 0.9398993588292063
Pair: CB-V, Correlation: 0.9393320767388035
Pair: CB-VMC, Correlation: 0.9730217336762459
Pair: CB-WRB, Correlation: 0.9787830627348008
Pair: CB-GWW, Correlation: 0.9283010202256882
Pair: CB-WMT, Correlation: 0.9449898874446244
Pair: CB-WM, Correlation: 0.9712686359952718
Pair: CB-WAT, Correlation: 0.9236815304363003
Pair: CB-WELL, Correlation: 0.9504474025263461
Pair: CB-WTW, Correlation: 0.9522219885640977
Pair: CB-XYL, Correlation: 0.923572683989503
Pair: CB-YUM, Correlation: 0.9492707705261391
Pair: CHD-CI, Correlation: 0.9292362324012289
Pair: CHD-CINF, Correlation: 0.9576712064098899
Pair: CHD-CTAS, Correlation: 0.9202985548193815
Pair: CHD-CSCO, Correlation: 0.9492234977816604
Pair: CHD-CLX, Correlation: 0.9134443171683844
Pair: CHD-CME, Correlation: 0.9663005725703355
Pair: CHD-CMS, Correlation: 0.9725447157445039
Pair: CHD-KO, Correlation: 0.966230568677228
Pair: CHD-CL, Correlation: 0.934089509177071
Pair: CHD-CMCSA, Correlation: 0.9122410000022529
Pair: CHD-ED, Correlation: 0.9408090475545727
Pair: CHD-STZ, Correlation: 0.922509504042614
Pair: CHD-COO, Correlation: 0.9653413969800458
Pair: CHD-CPRT, Correlation: 0.9374288461988662
Pair: CHD-GLW, Correlation: 0.9172459889298523
Pair: CHD-CSGP, Correlation: 0.9558635865563131
Pair: CHD-COST, Correlation: 0.9195899409748628
Pair: CHD-CSX, Correlation: 0.9679218912377703
Pair: CHD-CMI, Correlation: 0.9300152799119922
Pair: CHD-DHR, Correlation: 0.9559136218589963
Pair: CHD-DRI, Correlation: 0.9479732965786327
Pair: CHD-DE, Correlation: 0.9101348855572862
Pair: CHD-DXCM, Correlation: 0.9134191194350552
Pair: CHD-DLR, Correlation: 0.949762342271369
Pair: CHD-DFS, Correlation: 0.9115209846799293
Pair: CHD-DPZ, Correlation: 0.9657352430224079
Pair: CHD-DOV, Correlation: 0.955173984580058
Pair: CHD-DTE, Correlation: 0.9673990681978624
Pair: CHD-DUK, Correlation: 0.9681699020797124
Pair: CHD-EBAY, Correlation: 0.9152132827939455
Pair: CHD-ECL, Correlation: 0.94997224964761
Pair: CHD-EW, Correlation: 0.9354606246602692
Pair: CHD-EA, Correlation: 0.9084463487918374
Pair: CHD-ELV, Correlation: 0.9532096324485907
Pair: CHD-EMR, Correlation: 0.9161399199065643
Pair: CHD-ETR, Correlation: 0.9606803276540812
Pair: CHD-EFX, Correlation: 0.9498981779491331
Pair: CHD-EQIX, Correlation: 0.9779304151647857
Pair: CHD-EG, Correlation: 0.9269942576137683
Pair: CHD-EVRG, Correlation: 0.9308824181699982
Pair: CHD-ES, Correlation: 0.9127313477926693
Pair: CHD-EXPD, Correlation: 0.9445765885873157
Pair: CHD-EXR, Correlation: 0.9472759048421623
Pair: CHD-FDS, Correlation: 0.9692049937110452
Pair: CHD-FAST, Correlation: 0.9408397425152831
Pair: CHD-FI, Correlation: 0.9606424898813888
Pair: CHD-GRMN, Correlation: 0.9276641131544485
Pair: CHD-GEN, Correlation: 0.9169769920711247
Pair: CHD-GPC, Correlation: 0.9028151750657903
Pair: CHD-GL, Correlation: 0.9157019807365565
Pair: CHD-HCA, Correlation: 0.9297185918602083
Pair: CHD-HSY, Correlation: 0.930185467005212
Pair: CHD-HLT, Correlation: 0.9057146645865407
Pair: CHD-HOLX, Correlation: 0.9666045995735677
Pair: CHD-HD, Correlation: 0.977787145054434
Pair: CHD-HON, Correlation: 0.9659807730711654
Pair: CHD-HUM, Correlation: 0.9192764170462442
Pair: CHD-IEX, Correlation: 0.9663615750714883
Pair: CHD-IDXX, Correlation: 0.9364722224987112
Pair: CHD-ITW, Correlation: 0.9714094109128076
Pair: CHD-ICE, Correlation: 0.9767061766829274
Pair: CHD-IPG, Correlation: 0.9116056874043765
Pair: CHD-INTU, Correlation: 0.9479741538766394
Pair: CHD-ISRG, Correlation: 0.9375732895179323
Pair: CHD-IQV, Correlation: 0.9499025270566018
Pair: CHD-JBHT, Correlation: 0.9426799102807369
Pair: CHD-JKHY, Correlation: 0.9554905041180626
Pair: CHD-J, Correlation: 0.9307215065240617
Pair: CHD-JNJ, Correlation: 0.9608861990335426
Pair: CHD-JCI, Correlation: 0.9046673967237935
Pair: CHD-JPM, Correlation: 0.9359063465648605
Pair: CHD-KDP, Correlation: 0.9704574693943577
Pair: CHD-KEYS, Correlation: 0.9119867283476784
Pair: CHD-KMB, Correlation: 0.9419950346522521
Pair: CHD-LHX, Correlation: 0.9562470903352311
Pair: CHD-LH, Correlation: 0.9428736199412714
Pair: CHD-LDOS, Correlation: 0.9421062658356042
Pair: CHD-LII, Correlation: 0.9224679078818235
Pair: CHD-LIN, Correlation: 0.9275812551331437
Pair: CHD-LYV, Correlation: 0.953460319279282
Pair: CHD-LMT, Correlation: 0.9582983594639222
Pair: CHD-LOW, Correlation: 0.9624628201735163
Pair: CHD-LULU, Correlation: 0.9185210713384049
Pair: CHD-MAR, Correlation: 0.92298339641294
Pair: CHD-MMC, Correlation: 0.9557012228405987
Pair: CHD-MLM, Correlation: 0.9277722858462853
Pair: CHD-MAS, Correlation: 0.9646241072681216
Pair: CHD-MA, Correlation: 0.9797814357961986
Pair: CHD-MKC, Correlation: 0.9549241765910665
Pair: CHD-MCD, Correlation: 0.9703625934819661
Pair: CHD-MRK, Correlation: 0.9404364501766701
Pair: CHD-MTD, Correlation: 0.9503542719712206
Pair: CHD-MCHP, Correlation: 0.9513327772313447
Pair: CHD-MU, Correlation: 0.9104846702348819
Pair: CHD-MSFT, Correlation: 0.9418553128098807
Pair: CHD-MAA, Correlation: 0.933765834876758
Pair: CHD-MOH, Correlation: 0.938317289765304
Pair: CHD-MDLZ, Correlation: 0.9761176217006371
Pair: CHD-MNST, Correlation: 0.9619477174496917
Pair: CHD-MCO, Correlation: 0.9692510133061031
Pair: CHD-MS, Correlation: 0.9063276079589708
Pair: CHD-MSI, Correlation: 0.9186452480430715
Pair: CHD-MSCI, Correlation: 0.9377622103898897
Pair: CHD-NDAQ, Correlation: 0.9555984982783389
Pair: CHD-NFLX, Correlation: 0.9089462868537872
Pair: CHD-NEE, Correlation: 0.9598730998106808
Pair: CHD-NKE, Correlation: 0.9029803890693445
Pair: CHD-NI, Correlation: 0.9298839618511375
Pair: CHD-NDSN, Correlation: 0.967653218180652
Pair: CHD-NSC, Correlation: 0.9602190046055011
Pair: CHD-NOC, Correlation: 0.945752595625983
Pair: CHD-NVR, Correlation: 0.9385379347693985
Pair: CHD-NXPI, Correlation: 0.9345163210871358
Pair: CHD-ORLY, Correlation: 0.9279475216709107
Pair: CHD-ODFL, Correlation: 0.9230347992124895
Pair: CHD-PKG, Correlation: 0.9394502194370279
Pair: CHD-PAYX, Correlation: 0.9644954058156647
Pair: CHD-PEP, Correlation: 0.9713384841598782
Pair: CHD-PNC, Correlation: 0.9077807421665866
Pair: CHD-POOL, Correlation: 0.9433477725195851
Pair: CHD-PG, Correlation: 0.9786389756829093
Pair: CHD-PGR, Correlation: 0.9009491373687034
Pair: CHD-PLD, Correlation: 0.9601271915149893
Pair: CHD-PEG, Correlation: 0.9658238963591846
Pair: CHD-PTC, Correlation: 0.9371490207950484
Pair: CHD-PSA, Correlation: 0.9378303795797507
Pair: CHD-DGX, Correlation: 0.9544108752765719
Pair: CHD-RJF, Correlation: 0.9147051851667503
Pair: CHD-O, Correlation: 0.9327416973317313
Pair: CHD-RSG, Correlation: 0.9415683159112491
Pair: CHD-RMD, Correlation: 0.93945449035292
Pair: CHD-RVTY, Correlation: 0.9127597323793276
Pair: CHD-ROK, Correlation: 0.9489493295078881
Pair: CHD-ROL, Correlation: 0.9702067396273424
Pair: CHD-ROP, Correlation: 0.9853385594902562
Pair: CHD-ROST, Correlation: 0.9514207301616403
Pair: CHD-SPGI, Correlation: 0.974096091834446
Pair: CHD-CRM, Correlation: 0.9577619982669819
Pair: CHD-SBAC, Correlation: 0.9109873276906395
Pair: CHD-STX, Correlation: 0.9047634981812671
Pair: CHD-SRE, Correlation: 0.9533895363869859
Pair: CHD-NOW, Correlation: 0.9467482160866562
Pair: CHD-SHW, Correlation: 0.9713141533459623
Pair: CHD-SNA, Correlation: 0.9208944090361691
Pair: CHD-SO, Correlation: 0.952181264515573
Pair: CHD-SBUX, Correlation: 0.9464343607154353
Pair: CHD-STE, Correlation: 0.979230195547728
Pair: CHD-SYK, Correlation: 0.9698570136915394
Pair: CHD-SNPS, Correlation: 0.9001726458877531
Pair: CHD-SYY, Correlation: 0.9452152403360013
Pair: CHD-TMUS, Correlation: 0.9536638917010445
Pair: CHD-TTWO, Correlation: 0.9255622102699993
Pair: CHD-TEL, Correlation: 0.9551898323303942
Pair: CHD-TDY, Correlation: 0.9637630820333836
Pair: CHD-TER, Correlation: 0.9279965946795452
Pair: CHD-TXN, Correlation: 0.9677441126353029
Pair: CHD-TMO, Correlation: 0.9639905620909385
Pair: CHD-TJX, Correlation: 0.9467129681291895
Pair: CHD-TSCO, Correlation: 0.9258708373166404
Pair: CHD-TDG, Correlation: 0.9116828230993449
Pair: CHD-TRV, Correlation: 0.9364659530279824
Pair: CHD-TYL, Correlation: 0.9632426540850932
Pair: CHD-UDR, Correlation: 0.9159541452145085
Pair: CHD-ULTA, Correlation: 0.913112806819944
Pair: CHD-UNP, Correlation: 0.9791825447355306
Pair: CHD-UPS, Correlation: 0.9099825825663198
Pair: CHD-UNH, Correlation: 0.9547522949293444
Pair: CHD-VRSN, Correlation: 0.9446715864812956
Pair: CHD-VRSK, Correlation: 0.9795702994989405
Pair: CHD-VRTX, Correlation: 0.9247234664145116
Pair: CHD-V, Correlation: 0.98376501776878
Pair: CHD-VMC, Correlation: 0.9436921505136636
Pair: CHD-WRB, Correlation: 0.9393285106152021
Pair: CHD-WMT, Correlation: 0.9413388852544305
Pair: CHD-WM, Correlation: 0.9622601480004731
Pair: CHD-WAT, Correlation: 0.9386851906337744
Pair: CHD-WEC, Correlation: 0.968109192914231
Pair: CHD-WST, Correlation: 0.935640984807475
Pair: CHD-WTW, Correlation: 0.9706246725087534
Pair: CHD-WDAY, Correlation: 0.9249561199181936
Pair: CHD-XEL, Correlation: 0.9612340433302405
Pair: CHD-XYL, Correlation: 0.9408485364795992
Pair: CHD-YUM, Correlation: 0.9728318628602044
Pair: CHD-ZTS, Correlation: 0.9640017297791547
Pair: CI-CINF, Correlation: 0.9281144194701011
Pair: CI-CTAS, Correlation: 0.9256798819408437
Pair: CI-CME, Correlation: 0.9239573879910659
Pair: CI-CMS, Correlation: 0.9240495689571633
Pair: CI-KO, Correlation: 0.9578100045261637
Pair: CI-CL, Correlation: 0.9302829484440557
Pair: CI-ED, Correlation: 0.9519710668878821
Pair: CI-STZ, Correlation: 0.943119383991695
Pair: CI-COO, Correlation: 0.9001582547449452
Pair: CI-CPRT, Correlation: 0.9105136143087716
Pair: CI-COST, Correlation: 0.921012207751595
Pair: CI-CSX, Correlation: 0.9257593748255085
Pair: CI-CMI, Correlation: 0.9312290067498207
Pair: CI-DHR, Correlation: 0.9025794100556327
Pair: CI-DRI, Correlation: 0.9431565434971003
Pair: CI-DE, Correlation: 0.9042343983682167
Pair: CI-DFS, Correlation: 0.9198510641480693
Pair: CI-DPZ, Correlation: 0.9038671292904803
Pair: CI-DOV, Correlation: 0.9192877820082553
Pair: CI-DHI, Correlation: 0.9096235435778195
Pair: CI-DTE, Correlation: 0.9397002812415766
Pair: CI-DUK, Correlation: 0.9482999257359256
Pair: CI-EIX, Correlation: 0.90779078388044
Pair: CI-EA, Correlation: 0.9045979990337051
Pair: CI-ELV, Correlation: 0.9618553700240903
Pair: CI-EMR, Correlation: 0.9230891494983888
Pair: CI-ETR, Correlation: 0.922911026518397
Pair: CI-EFX, Correlation: 0.9206097072078919
Pair: CI-EQIX, Correlation: 0.9199183647465705
Pair: CI-ERIE, Correlation: 0.9004983221179521
Pair: CI-EG, Correlation: 0.967212296180656
Pair: CI-EXPD, Correlation: 0.9096749347715299
Pair: CI-EXR, Correlation: 0.9134933444974066
Pair: CI-FDS, Correlation: 0.9350488647661386
Pair: CI-FAST, Correlation: 0.9062985701904108
Pair: CI-FI, Correlation: 0.9374416053539474
Pair: CI-IT, Correlation: 0.930763452219657
Pair: CI-GD, Correlation: 0.9708473420217691
Pair: CI-GIS, Correlation: 0.9115546084145458
Pair: CI-GPC, Correlation: 0.9404985548794715
Pair: CI-GL, Correlation: 0.9293272408019191
Pair: CI-GS, Correlation: 0.9144731703370814
Pair: CI-HIG, Correlation: 0.9505234240213255
Pair: CI-HCA, Correlation: 0.9373471774115479
Pair: CI-HSY, Correlation: 0.9121302525409893
Pair: CI-HLT, Correlation: 0.9270486204605475
Pair: CI-HOLX, Correlation: 0.9301328548087474
Pair: CI-HD, Correlation: 0.9443633449242892
Pair: CI-HON, Correlation: 0.9362372357090502
Pair: CI-HUBB, Correlation: 0.9034908845915461
Pair: CI-HBAN, Correlation: 0.9026784845020605
Pair: CI-HII, Correlation: 0.9077662533108997
Pair: CI-IEX, Correlation: 0.9363816956909129
Pair: CI-ITW, Correlation: 0.9558467976545834
Pair: CI-ICE, Correlation: 0.9371107750756535
Pair: CI-IPG, Correlation: 0.9191893825187074
Pair: CI-INTU, Correlation: 0.9068755052850267
Pair: CI-ISRG, Correlation: 0.9011424183233696
Pair: CI-JBHT, Correlation: 0.9348611964735054
Pair: CI-JKHY, Correlation: 0.9197485405909299
Pair: CI-JNJ, Correlation: 0.943330890995514
Pair: CI-JPM, Correlation: 0.9407187237087
Pair: CI-KDP, Correlation: 0.9190891928619931
Pair: CI-KR, Correlation: 0.9225687549005599
Pair: CI-LHX, Correlation: 0.9180436891546099
Pair: CI-LH, Correlation: 0.9114094562862252
Pair: CI-LDOS, Correlation: 0.9258770314989527
Pair: CI-LEN, Correlation: 0.9097028759736937
Pair: CI-LII, Correlation: 0.9195219903275571
Pair: CI-LIN, Correlation: 0.9202965334214279
Pair: CI-LYV, Correlation: 0.9045259954835311
Pair: CI-LMT, Correlation: 0.9656690447936699
Pair: CI-LOW, Correlation: 0.9372213413160537
Pair: CI-LYB, Correlation: 0.9008883578055082
Pair: CI-MAR, Correlation: 0.9585424171158681
Pair: CI-MMC, Correlation: 0.9573839153929024
Pair: CI-MLM, Correlation: 0.941611786274891
Pair: CI-MAS, Correlation: 0.9418674544027817
Pair: CI-MA, Correlation: 0.9351573802234106
Pair: CI-MCD, Correlation: 0.9472429738862387
Pair: CI-MRK, Correlation: 0.9531715206004653
Pair: CI-MET, Correlation: 0.93765513815624
Pair: CI-MTD, Correlation: 0.9087126127135193
Pair: CI-MCHP, Correlation: 0.9350669587556016
Pair: CI-MSFT, Correlation: 0.9109709451629582
Pair: CI-MOH, Correlation: 0.9256313540940952
Pair: CI-MDLZ, Correlation: 0.9530146923408367
Pair: CI-MNST, Correlation: 0.9564447119462621
Pair: CI-MCO, Correlation: 0.9264266464992998
Pair: CI-MS, Correlation: 0.9178787767467417
Pair: CI-MSI, Correlation: 0.921201272251016
Pair: CI-NDAQ, Correlation: 0.9338443778540717
Pair: CI-NI, Correlation: 0.9317523323091568
Pair: CI-NDSN, Correlation: 0.9399180677305261
Pair: CI-NSC, Correlation: 0.9008710881483386
Pair: CI-NOC, Correlation: 0.968072026970963
Pair: CI-NVR, Correlation: 0.9369114941663199
Pair: CI-NXPI, Correlation: 0.9419326705321803
Pair: CI-ORLY, Correlation: 0.9457699694347536
Pair: CI-ODFL, Correlation: 0.9131209584055746
Pair: CI-OMC, Correlation: 0.9027739149374171
Pair: CI-PCAR, Correlation: 0.9141447027507833
Pair: CI-PKG, Correlation: 0.9597758502303446
Pair: CI-PANW, Correlation: 0.9011925582030234
Pair: CI-PH, Correlation: 0.9108761361487653
Pair: CI-PAYX, Correlation: 0.948938935159368
Pair: CI-PEP, Correlation: 0.9567198744850042
Pair: CI-PM, Correlation: 0.916694471032409
Pair: CI-PNC, Correlation: 0.9013494773088334
Pair: CI-PFG, Correlation: 0.9558507370459454
Pair: CI-PG, Correlation: 0.9283833351099853
Pair: CI-PGR, Correlation: 0.9221979913680691
Pair: CI-PRU, Correlation: 0.9235240408241466
Pair: CI-PEG, Correlation: 0.9466372565532295
Pair: CI-PTC, Correlation: 0.9439047914156566
Pair: CI-PSA, Correlation: 0.925748283946378
Pair: CI-DGX, Correlation: 0.9363818889069682
Pair: CI-RJF, Correlation: 0.952628886622664
Pair: CI-RTX, Correlation: 0.9308845538311687
Pair: CI-REGN, Correlation: 0.927994301695599
Pair: CI-RF, Correlation: 0.9259284156363533
Pair: CI-RSG, Correlation: 0.9480445881870757
Pair: CI-ROK, Correlation: 0.9175479401612819
Pair: CI-ROL, Correlation: 0.9509173454595402
Pair: CI-ROP, Correlation: 0.9419780420959096
Pair: CI-ROST, Correlation: 0.9316146873157523
Pair: CI-SPGI, Correlation: 0.9191568092705825
Pair: CI-SRE, Correlation: 0.9505489961941012
Pair: CI-SHW, Correlation: 0.929997778742173
Pair: CI-SNA, Correlation: 0.963502230891315
Pair: CI-SO, Correlation: 0.9397341080647567
Pair: CI-STLD, Correlation: 0.9101707023930687
Pair: CI-STE, Correlation: 0.9195371492326613
Pair: CI-SYK, Correlation: 0.9492767417374666
Pair: CI-SNPS, Correlation: 0.9010353095431566
Pair: CI-SYY, Correlation: 0.9227565273575415
Pair: CI-TMUS, Correlation: 0.9467629590774268
Pair: CI-TEL, Correlation: 0.9407265527162945
Pair: CI-TDY, Correlation: 0.9011705845495797
Pair: CI-TXN, Correlation: 0.933206800388205
Pair: CI-TXT, Correlation: 0.930096652998592
Pair: CI-TMO, Correlation: 0.9146735564741683
Pair: CI-TJX, Correlation: 0.9540380954033624
Pair: CI-TSCO, Correlation: 0.9208558184771828
Pair: CI-TDG, Correlation: 0.9179154502030863
Pair: CI-TRV, Correlation: 0.9713275931102765
Pair: CI-TYL, Correlation: 0.9056156369627326
Pair: CI-ULTA, Correlation: 0.9234357806775426
Pair: CI-UNP, Correlation: 0.9344414750328573
Pair: CI-UNH, Correlation: 0.9568333267330429
Pair: CI-VLO, Correlation: 0.9520670272956557
Pair: CI-VRSK, Correlation: 0.9272746839495389
Pair: CI-VRTX, Correlation: 0.946367169999021
Pair: CI-V, Correlation: 0.9433073993027353
Pair: CI-VMC, Correlation: 0.9554215580938159
Pair: CI-WRB, Correlation: 0.957437145106257
Pair: CI-WMT, Correlation: 0.9166276599878825
Pair: CI-WM, Correlation: 0.9551127783808226
Pair: CI-WAT, Correlation: 0.9191004429975844
Pair: CI-WEC, Correlation: 0.9035895126182331
Pair: CI-WTW, Correlation: 0.9441422387348305
Pair: CI-XYL, Correlation: 0.916511608697834
Pair: CI-YUM, Correlation: 0.9430281003660131
Pair: CINF-CTAS, Correlation: 0.9086416892611384
Pair: CINF-CSCO, Correlation: 0.9481625195744332
Pair: CINF-CME, Correlation: 0.9648292341367759
Pair: CINF-CMS, Correlation: 0.9644342797791341
Pair: CINF-KO, Correlation: 0.9680302851452541
Pair: CINF-CL, Correlation: 0.9227502256537388
Pair: CINF-CMCSA, Correlation: 0.9081443321993339
Pair: CINF-ED, Correlation: 0.9511100452186653
Pair: CINF-STZ, Correlation: 0.9271453158809251
Pair: CINF-COO, Correlation: 0.9540066244988434
Pair: CINF-CPRT, Correlation: 0.9074018394511967
Pair: CINF-GLW, Correlation: 0.9293522453827701
Pair: CINF-CSGP, Correlation: 0.9049493205627328
Pair: CINF-COST, Correlation: 0.9066845993078038
Pair: CINF-CSX, Correlation: 0.9492078059596528
Pair: CINF-CMI, Correlation: 0.9206344931688581
Pair: CINF-DHR, Correlation: 0.9363445853371101
Pair: CINF-DRI, Correlation: 0.9549760439122896
Pair: CINF-DE, Correlation: 0.9039510710748216
Pair: CINF-DLR, Correlation: 0.9301260975364313
Pair: CINF-DFS, Correlation: 0.9527795505496973
Pair: CINF-DPZ, Correlation: 0.9308847482155683
Pair: CINF-DOV, Correlation: 0.9521131883313337
Pair: CINF-DTE, Correlation: 0.9751516053710373
Pair: CINF-DUK, Correlation: 0.9757992831210803
Pair: CINF-EBAY, Correlation: 0.9076787205530908
Pair: CINF-ECL, Correlation: 0.925054245076685
Pair: CINF-EW, Correlation: 0.9141510633064175
Pair: CINF-ELV, Correlation: 0.9427760478888063
Pair: CINF-EMR, Correlation: 0.9259632483258854
Pair: CINF-ETR, Correlation: 0.9624315860003667
Pair: CINF-EFX, Correlation: 0.951417073703847
Pair: CINF-EQIX, Correlation: 0.9461760219614106
Pair: CINF-EQR, Correlation: 0.930553961525017
Pair: CINF-ESS, Correlation: 0.9331446541021731
Pair: CINF-EG, Correlation: 0.936392772005256
Pair: CINF-EVRG, Correlation: 0.9478715129593331
Pair: CINF-EXC, Correlation: 0.90367165664435
Pair: CINF-EXPD, Correlation: 0.9269102360171051
Pair: CINF-EXR, Correlation: 0.9588968046674315
Pair: CINF-FDS, Correlation: 0.9403577300841236
Pair: CINF-FAST, Correlation: 0.9125641823432242
Pair: CINF-FITB, Correlation: 0.9427065125325895
Pair: CINF-FI, Correlation: 0.9512686257733441
Pair: CINF-GRMN, Correlation: 0.9197535213452909
Pair: CINF-IT, Correlation: 0.9037315975210153
Pair: CINF-GEV, Correlation: 0.9000442284592877
Pair: CINF-GEN, Correlation: 0.9121902955750396
Pair: CINF-GD, Correlation: 0.9292339061351667
Pair: CINF-GPC, Correlation: 0.9059929749789798
Pair: CINF-GL, Correlation: 0.9284865097046061
Pair: CINF-GS, Correlation: 0.9047206475111422
Pair: CINF-HIG, Correlation: 0.9333631962266952
Pair: CINF-HCA, Correlation: 0.9300685323498017
Pair: CINF-HSY, Correlation: 0.9187691402550273
Pair: CINF-HLT, Correlation: 0.9152449666184391
Pair: CINF-HOLX, Correlation: 0.9394287400239523
Pair: CINF-HD, Correlation: 0.9613643474200491
Pair: CINF-HON, Correlation: 0.9654307005425383
Pair: CINF-HBAN, Correlation: 0.9266864091068892
Pair: CINF-IEX, Correlation: 0.9531260191513081
Pair: CINF-IDXX, Correlation: 0.9097980328687248
Pair: CINF-ITW, Correlation: 0.9549112849986828
Pair: CINF-ICE, Correlation: 0.9652351360718856
Pair: CINF-IPG, Correlation: 0.9325138985929742
Pair: CINF-INTU, Correlation: 0.9283896235233411
Pair: CINF-ISRG, Correlation: 0.9218875336721564
Pair: CINF-IQV, Correlation: 0.936845811159711
Pair: CINF-JBHT, Correlation: 0.9332817981073653
Pair: CINF-JKHY, Correlation: 0.9329231328598854
Pair: CINF-J, Correlation: 0.9315396162522169
Pair: CINF-JNJ, Correlation: 0.952962705327374
Pair: CINF-JCI, Correlation: 0.9295865487395194
Pair: CINF-JPM, Correlation: 0.9513586271804673
Pair: CINF-KDP, Correlation: 0.9544988616790719
Pair: CINF-KMB, Correlation: 0.9178493028535362
Pair: CINF-LHX, Correlation: 0.9642442961443973
Pair: CINF-LH, Correlation: 0.9470919807671205
Pair: CINF-LDOS, Correlation: 0.9366531852589651
Pair: CINF-LII, Correlation: 0.9150516084066583
Pair: CINF-LIN, Correlation: 0.9059261821745379
Pair: CINF-LYV, Correlation: 0.96306568533154
Pair: CINF-LMT, Correlation: 0.9569390028479526
Pair: CINF-LOW, Correlation: 0.9429563586824392
Pair: CINF-MAR, Correlation: 0.9369314762451999
Pair: CINF-MMC, Correlation: 0.9453159387669482
Pair: CINF-MLM, Correlation: 0.9314379877542516
Pair: CINF-MAS, Correlation: 0.9505817792768516
Pair: CINF-MA, Correlation: 0.9517138773720735
Pair: CINF-MKC, Correlation: 0.9130194680670187
Pair: CINF-MCD, Correlation: 0.9543859931414601
Pair: CINF-MRK, Correlation: 0.9150555636801159
Pair: CINF-MET, Correlation: 0.9220070900026408
Pair: CINF-MTD, Correlation: 0.9400785752254477
Pair: CINF-MGM, Correlation: 0.9011949682167328
Pair: CINF-MCHP, Correlation: 0.9320453628595673
Pair: CINF-MSFT, Correlation: 0.9098138204191458
Pair: CINF-MAA, Correlation: 0.9507387871789231
Pair: CINF-MOH, Correlation: 0.9075855244474553
Pair: CINF-MDLZ, Correlation: 0.954973633664286
Pair: CINF-MNST, Correlation: 0.9313795043625038
Pair: CINF-MCO, Correlation: 0.9482721804497545
Pair: CINF-MS, Correlation: 0.9228289685503633
Pair: CINF-MSI, Correlation: 0.9186370769070727
Pair: CINF-MSCI, Correlation: 0.9153704948069046
Pair: CINF-NDAQ, Correlation: 0.9545176939023893
Pair: CINF-NEE, Correlation: 0.9380755088919396
Pair: CINF-NI, Correlation: 0.9501394155890486
Pair: CINF-NDSN, Correlation: 0.9459660513692426
Pair: CINF-NSC, Correlation: 0.9466451109850704
Pair: CINF-NOC, Correlation: 0.9543723473820621
Pair: CINF-NVR, Correlation: 0.9310740757346208
Pair: CINF-NXPI, Correlation: 0.9282393772648944
Pair: CINF-ORLY, Correlation: 0.9129954882472382
Pair: CINF-OKE, Correlation: 0.9056332600340407
Pair: CINF-PKG, Correlation: 0.9487825821573911
Pair: CINF-PAYX, Correlation: 0.9680862330128582
Pair: CINF-PEP, Correlation: 0.9551513604751776
Pair: CINF-PM, Correlation: 0.9107356325903228
Pair: CINF-PNW, Correlation: 0.907453044070435
Pair: CINF-PNC, Correlation: 0.952429644709195
Pair: CINF-POOL, Correlation: 0.9165827262905982
Pair: CINF-PFG, Correlation: 0.9170905448563891
Pair: CINF-PG, Correlation: 0.9507901283210812
Pair: CINF-PLD, Correlation: 0.9441014271821492
Pair: CINF-PRU, Correlation: 0.9178125416494644
Pair: CINF-PEG, Correlation: 0.971945955464417
Pair: CINF-PTC, Correlation: 0.9218044107146847
Pair: CINF-PSA, Correlation: 0.957817483230681
Pair: CINF-DGX, Correlation: 0.9501308081063196
Pair: CINF-RJF, Correlation: 0.9365591173337234
Pair: CINF-RTX, Correlation: 0.9432879608222028
Pair: CINF-O, Correlation: 0.9518073808402732
Pair: CINF-RF, Correlation: 0.943876592089575
Pair: CINF-RSG, Correlation: 0.9340116290153225
Pair: CINF-RMD, Correlation: 0.9214886907996114
Pair: CINF-ROK, Correlation: 0.9249527433080458
Pair: CINF-ROL, Correlation: 0.9339277930640046
Pair: CINF-ROP, Correlation: 0.9582475621593797
Pair: CINF-ROST, Correlation: 0.9468789678965025
Pair: CINF-SPGI, Correlation: 0.9481650286075598
Pair: CINF-CRM, Correlation: 0.9161107844996533
Pair: CINF-STX, Correlation: 0.9102443024047022
Pair: CINF-SRE, Correlation: 0.9600752123284176
Pair: CINF-NOW, Correlation: 0.9016670127169787
Pair: CINF-SHW, Correlation: 0.955274446068885
Pair: CINF-SNA, Correlation: 0.9297631611188721
Pair: CINF-SO, Correlation: 0.9512548772223207
Pair: CINF-SBUX, Correlation: 0.9364668490046095
Pair: CINF-STE, Correlation: 0.9532834916190447
Pair: CINF-SYK, Correlation: 0.9606227015976821
Pair: CINF-SYY, Correlation: 0.9625583455079149
Pair: CINF-TMUS, Correlation: 0.9383809538388413
Pair: CINF-TEL, Correlation: 0.9553236366722283
Pair: CINF-TDY, Correlation: 0.9483841282847482
Pair: CINF-TXN, Correlation: 0.9587820837942657
Pair: CINF-TMO, Correlation: 0.9366315458711406
Pair: CINF-TJX, Correlation: 0.9369116448783218
Pair: CINF-TSCO, Correlation: 0.9068820921107216
Pair: CINF-TRV, Correlation: 0.9604452265857341
Pair: CINF-TYL, Correlation: 0.9399094572546207
Pair: CINF-UDR, Correlation: 0.947865609079771
Pair: CINF-ULTA, Correlation: 0.9228981103844283
Pair: CINF-UNP, Correlation: 0.9574350894261602
Pair: CINF-UNH, Correlation: 0.9435257917200124
Pair: CINF-VRSN, Correlation: 0.9093938174049654
Pair: CINF-VRSK, Correlation: 0.9420115654245822
Pair: CINF-V, Correlation: 0.9592232289783345
Pair: CINF-VMC, Correlation: 0.9494489960625805
Pair: CINF-WRB, Correlation: 0.9453123591826955
Pair: CINF-WMT, Correlation: 0.9198746384835228
Pair: CINF-WM, Correlation: 0.9568843140310161
Pair: CINF-WAT, Correlation: 0.9599737458853516
Pair: CINF-WEC, Correlation: 0.9508103146527123
Pair: CINF-WELL, Correlation: 0.938443460441143
Pair: CINF-WTW, Correlation: 0.961574601122927
Pair: CINF-XEL, Correlation: 0.9413086958035488
Pair: CINF-XYL, Correlation: 0.9390346946368756
Pair: CINF-YUM, Correlation: 0.9671253616252463
Pair: CINF-ZTS, Correlation: 0.9181602058137992
Pair: CTAS-KO, Correlation: 0.9387477009595957
Pair: CTAS-CEG, Correlation: 0.9594774561111474
Pair: CTAS-CPRT, Correlation: 0.981652605357949
Pair: CTAS-COST, Correlation: 0.99267039791472
Pair: CTAS-CSX, Correlation: 0.9126144017274389
Pair: CTAS-CMI, Correlation: 0.9582580334747746
Pair: CTAS-DHR, Correlation: 0.9241689288905388
Pair: CTAS-DRI, Correlation: 0.9328308879660644
Pair: CTAS-DECK, Correlation: 0.9563213084024083
Pair: CTAS-DE, Correlation: 0.9288187159273236
Pair: CTAS-DELL, Correlation: 0.9284608499580526
Pair: CTAS-DFS, Correlation: 0.9168690616663155
Pair: CTAS-DOV, Correlation: 0.9547330053818303
Pair: CTAS-DHI, Correlation: 0.9846160629156949
Pair: CTAS-DUK, Correlation: 0.9156586044608045
Pair: CTAS-ETN, Correlation: 0.9738657284696172
Pair: CTAS-ELV, Correlation: 0.9367617179484867
Pair: CTAS-EMR, Correlation: 0.9515145814362076
Pair: CTAS-ETR, Correlation: 0.937875494603319
Pair: CTAS-EFX, Correlation: 0.9176061358993156
Pair: CTAS-EQIX, Correlation: 0.9167072419522218
Pair: CTAS-ERIE, Correlation: 0.9706647046253033
Pair: CTAS-EG, Correlation: 0.9252306355007969
Pair: CTAS-EXPD, Correlation: 0.9366777982412672
Pair: CTAS-FDS, Correlation: 0.9397732488518706
Pair: CTAS-FICO, Correlation: 0.9596433154342484
Pair: CTAS-FAST, Correlation: 0.9732797171927491
Pair: CTAS-FI, Correlation: 0.9399593047196798
Pair: CTAS-FTNT, Correlation: 0.9408688918995066
Pair: CTAS-GRMN, Correlation: 0.9454085380247577
Pair: CTAS-IT, Correlation: 0.9769139281157437
Pair: CTAS-GEV, Correlation: 0.9064282956029994
Pair: CTAS-GD, Correlation: 0.9049237647436968
Pair: CTAS-GDDY, Correlation: 0.9129988000956344
Pair: CTAS-GS, Correlation: 0.9518042642658071
Pair: CTAS-HIG, Correlation: 0.955477044915775
Pair: CTAS-HCA, Correlation: 0.9752015695357186
Pair: CTAS-HLT, Correlation: 0.9835792783593652
Pair: CTAS-HOLX, Correlation: 0.9046920629632483
Pair: CTAS-HD, Correlation: 0.9443457664937569
Pair: CTAS-HWM, Correlation: 0.9151122265462658
Pair: CTAS-HUBB, Correlation: 0.9702723932318996
Pair: CTAS-ITW, Correlation: 0.9393884641214412
Pair: CTAS-IR, Correlation: 0.9736209832881179
Pair: CTAS-ICE, Correlation: 0.948840604862371
Pair: CTAS-INTU, Correlation: 0.9625509094139798
Pair: CTAS-ISRG, Correlation: 0.9714771269848336
Pair: CTAS-IRM, Correlation: 0.9537219948631517
Pair: CTAS-JBL, Correlation: 0.9420026458463424
Pair: CTAS-J, Correlation: 0.9442608922192716
Pair: CTAS-JCI, Correlation: 0.9024015973297064
Pair: CTAS-JPM, Correlation: 0.964759380320826
Pair: CTAS-KKR, Correlation: 0.9667522730913929
Pair: CTAS-KLAC, Correlation: 0.978448717111845
Pair: CTAS-LRCX, Correlation: 0.9628418084835431
Pair: CTAS-LDOS, Correlation: 0.9533898626172177
Pair: CTAS-LEN, Correlation: 0.9684509040702032
Pair: CTAS-LII, Correlation: 0.9622284845087833
Pair: CTAS-LLY, Correlation: 0.9484265944734044
Pair: CTAS-LIN, Correlation: 0.9852233104910327
Pair: CTAS-LYV, Correlation: 0.9080192423576949
Pair: CTAS-LMT, Correlation: 0.9207545699518472
Pair: CTAS-L, Correlation: 0.9108283470777324
Pair: CTAS-LOW, Correlation: 0.9568121439923624
Pair: CTAS-MPC, Correlation: 0.909656360056269
Pair: CTAS-MAR, Correlation: 0.9492959488918526
Pair: CTAS-MMC, Correlation: 0.9787685813789241
Pair: CTAS-MLM, Correlation: 0.970978175593671
Pair: CTAS-MAS, Correlation: 0.9380352803057623
Pair: CTAS-MA, Correlation: 0.9539432029025912
Pair: CTAS-MCD, Correlation: 0.9435626554022135
Pair: CTAS-MCK, Correlation: 0.9023715495484598
Pair: CTAS-MRK, Correlation: 0.948240865199647
Pair: CTAS-META, Correlation: 0.9108890820410146
Pair: CTAS-MET, Correlation: 0.9318316527144906
Pair: CTAS-MTD, Correlation: 0.9009475125102355
Pair: CTAS-MCHP, Correlation: 0.9330381418533328
Pair: CTAS-MU, Correlation: 0.9189816107393542
Pair: CTAS-MSFT, Correlation: 0.9795382504653217
Pair: CTAS-MOH, Correlation: 0.9381414439213771
Pair: CTAS-MDLZ, Correlation: 0.9204369492761206
Pair: CTAS-MPWR, Correlation: 0.9796169808218558
Pair: CTAS-MNST, Correlation: 0.9015472807187632
Pair: CTAS-MCO, Correlation: 0.9598636154735554
Pair: CTAS-MS, Correlation: 0.9455367906335808
Pair: CTAS-MSI, Correlation: 0.9945633002643878
Pair: CTAS-MSCI, Correlation: 0.9290627791666856
Pair: CTAS-NDAQ, Correlation: 0.9443959505120677
Pair: CTAS-NTAP, Correlation: 0.9218241180401585
Pair: CTAS-NDSN, Correlation: 0.9330412564150287
Pair: CTAS-NOC, Correlation: 0.906743253895363
Pair: CTAS-NRG, Correlation: 0.9066506157043823
Pair: CTAS-NUE, Correlation: 0.9122080775330154
Pair: CTAS-NVR, Correlation: 0.9835965932721097
Pair: CTAS-NXPI, Correlation: 0.9344346265277311
Pair: CTAS-ORLY, Correlation: 0.9790968915680512
Pair: CTAS-ODFL, Correlation: 0.9625810254091104
Pair: CTAS-ON, Correlation: 0.9099864230475168
Pair: CTAS-OKE, Correlation: 0.9121558702906378
Pair: CTAS-ORCL, Correlation: 0.9773996795638368
Pair: CTAS-PCAR, Correlation: 0.9680991352127282
Pair: CTAS-PKG, Correlation: 0.95275705797029
Pair: CTAS-PANW, Correlation: 0.9714124821221994
Pair: CTAS-PH, Correlation: 0.9839397973239513
Pair: CTAS-PAYX, Correlation: 0.9509844735493586
Pair: CTAS-PNR, Correlation: 0.9045750534863662
Pair: CTAS-PEP, Correlation: 0.9256974352955042
Pair: CTAS-PG, Correlation: 0.9539600639611902
Pair: CTAS-PGR, Correlation: 0.9926222105852166
Pair: CTAS-PLD, Correlation: 0.9040028447334428
Pair: CTAS-PEG, Correlation: 0.9482912720311752
Pair: CTAS-PTC, Correlation: 0.9578515319949629
Pair: CTAS-PHM, Correlation: 0.967054592936012
Pair: CTAS-PWR, Correlation: 0.9539981994887154
Pair: CTAS-QCOM, Correlation: 0.922291652211643
Pair: CTAS-DGX, Correlation: 0.9154650495129996
Pair: CTAS-RJF, Correlation: 0.9558001410744377
Pair: CTAS-RSG, Correlation: 0.9905279400223598
Pair: CTAS-ROL, Correlation: 0.9527870999387402
Pair: CTAS-ROP, Correlation: 0.9393490237408055
Pair: CTAS-ROST, Correlation: 0.9051911855943063
Pair: CTAS-SPGI, Correlation: 0.9458922953254926
Pair: CTAS-CRM, Correlation: 0.9075610119423793
Pair: CTAS-STX, Correlation: 0.9087032690069492
Pair: CTAS-NOW, Correlation: 0.9622361384521422
Pair: CTAS-SHW, Correlation: 0.9522223261331609
Pair: CTAS-SNA, Correlation: 0.9274273070291441
Pair: CTAS-SO, Correlation: 0.9653079594516841
Pair: CTAS-STLD, Correlation: 0.945771736879707
Pair: CTAS-STE, Correlation: 0.9258540987148004
Pair: CTAS-SYK, Correlation: 0.9633393972828149
Pair: CTAS-SNPS, Correlation: 0.9759918996167573
Pair: CTAS-TMUS, Correlation: 0.9696193696103141
Pair: CTAS-TEL, Correlation: 0.9212205292949296
Pair: CTAS-TDY, Correlation: 0.9003702699925874
Pair: CTAS-TXN, Correlation: 0.9365617135366093
Pair: CTAS-TPL, Correlation: 0.9427259411198567
Pair: CTAS-TMO, Correlation: 0.9238624915089242
Pair: CTAS-TJX, Correlation: 0.9758127265180035
Pair: CTAS-TSCO, Correlation: 0.9702825023049232
Pair: CTAS-TT, Correlation: 0.987615799100178
Pair: CTAS-TDG, Correlation: 0.9896662823386368
Pair: CTAS-TRV, Correlation: 0.9470020668635633
Pair: CTAS-TYL, Correlation: 0.9210785101276546
Pair: CTAS-UNP, Correlation: 0.9225810276696134
Pair: CTAS-URI, Correlation: 0.9731921021904708
Pair: CTAS-UNH, Correlation: 0.9504401066195185
Pair: CTAS-VLO, Correlation: 0.906910840386537
Pair: CTAS-VLTO, Correlation: 0.9409621058703901
Pair: CTAS-VRSK, Correlation: 0.9615008255998423
Pair: CTAS-VRTX, Correlation: 0.9616152478223752
Pair: CTAS-V, Correlation: 0.9407672488538059
Pair: CTAS-VMC, Correlation: 0.9517195358760382
Pair: CTAS-WRB, Correlation: 0.9754722569346453
Pair: CTAS-GWW, Correlation: 0.9703675783915647
Pair: CTAS-WMT, Correlation: 0.9794748349572027
Pair: CTAS-WM, Correlation: 0.9768046043306216
Pair: CTAS-WELL, Correlation: 0.9208425349327496
Pair: CTAS-WTW, Correlation: 0.9499700721403646
Pair: CTAS-XYL, Correlation: 0.9291168841642166
Pair: CTAS-YUM, Correlation: 0.9283914508082707
Pair: CSCO-CME, Correlation: 0.9797951125941003
Pair: CSCO-CMS, Correlation: 0.9487338702556709
Pair: CSCO-KO, Correlation: 0.918332560949628
Pair: CSCO-CMCSA, Correlation: 0.9113787260300706
Pair: CSCO-ED, Correlation: 0.9123591347312691
Pair: CSCO-STZ, Correlation: 0.9262157237641647
Pair: CSCO-COO, Correlation: 0.9600301673598396
Pair: CSCO-GLW, Correlation: 0.9321784738557154
Pair: CSCO-CPAY, Correlation: 0.9157031453239007
Pair: CSCO-CSGP, Correlation: 0.9315501433927322
Pair: CSCO-CSX, Correlation: 0.9660079204826171
Pair: CSCO-DHR, Correlation: 0.9264612597143894
Pair: CSCO-DRI, Correlation: 0.9545234703647045
Pair: CSCO-DLR, Correlation: 0.9303621238564198
Pair: CSCO-DPZ, Correlation: 0.9484268791103088
Pair: CSCO-DOV, Correlation: 0.9288639895582508
Pair: CSCO-DTE, Correlation: 0.9526324081731647
Pair: CSCO-DUK, Correlation: 0.9306050371676908
Pair: CSCO-EBAY, Correlation: 0.901046105142629
Pair: CSCO-ECL, Correlation: 0.9292396157116227
Pair: CSCO-EW, Correlation: 0.9284468366957084
Pair: CSCO-EA, Correlation: 0.9154341144139685
Pair: CSCO-ELV, Correlation: 0.9302563085458176
Pair: CSCO-ETR, Correlation: 0.9373859666847174
Pair: CSCO-EFX, Correlation: 0.9162416587859545
Pair: CSCO-EQIX, Correlation: 0.9423959267243642
Pair: CSCO-ESS, Correlation: 0.9075417958956257
Pair: CSCO-EG, Correlation: 0.9018447710571411
Pair: CSCO-EVRG, Correlation: 0.933854056159659
Pair: CSCO-EXPD, Correlation: 0.9329564496808656
Pair: CSCO-EXR, Correlation: 0.9234565574182502
Pair: CSCO-FDS, Correlation: 0.9384406433113424
Pair: CSCO-FITB, Correlation: 0.9015423078702934
Pair: CSCO-FI, Correlation: 0.9389099338716569
Pair: CSCO-GEV, Correlation: 0.9265829230076431
Pair: CSCO-GL, Correlation: 0.9302729449221498
Pair: CSCO-HOLX, Correlation: 0.9241109314934294
Pair: CSCO-HD, Correlation: 0.9521112651919206
Pair: CSCO-HON, Correlation: 0.9634923530204661
Pair: CSCO-HUM, Correlation: 0.9135172023219995
Pair: CSCO-HBAN, Correlation: 0.9075024972031445
Pair: CSCO-IEX, Correlation: 0.9658790185454282
Pair: CSCO-IDXX, Correlation: 0.9264078854010085
Pair: CSCO-ITW, Correlation: 0.9473259939794273
Pair: CSCO-ICE, Correlation: 0.9519982564040185
Pair: CSCO-INTU, Correlation: 0.9188512972770333
Pair: CSCO-ISRG, Correlation: 0.9142378036654716
Pair: CSCO-IQV, Correlation: 0.9375034380639736
Pair: CSCO-JBHT, Correlation: 0.9242919172076853
Pair: CSCO-JKHY, Correlation: 0.9496855373494688
Pair: CSCO-J, Correlation: 0.9030862006948737
Pair: CSCO-JNJ, Correlation: 0.948457294108164
Pair: CSCO-JPM, Correlation: 0.9287219208471067
Pair: CSCO-KDP, Correlation: 0.9619970209884624
Pair: CSCO-LHX, Correlation: 0.9632912511273881
Pair: CSCO-LH, Correlation: 0.9401626756882733
Pair: CSCO-LDOS, Correlation: 0.9147579716924003
Pair: CSCO-LYV, Correlation: 0.9569082464756694
Pair: CSCO-LMT, Correlation: 0.9377969748173884
Pair: CSCO-LOW, Correlation: 0.9231269598163568
Pair: CSCO-MAR, Correlation: 0.9181316276349994
Pair: CSCO-MMC, Correlation: 0.9151196736266891
Pair: CSCO-MAS, Correlation: 0.9277613194603362
Pair: CSCO-MA, Correlation: 0.9509096398866861
Pair: CSCO-MKC, Correlation: 0.9323855517185666
Pair: CSCO-MCD, Correlation: 0.9483196194108424
Pair: CSCO-MTD, Correlation: 0.9315784294805479
Pair: CSCO-MCHP, Correlation: 0.9303425672346928
Pair: CSCO-MAA, Correlation: 0.9207975500044357
Pair: CSCO-MDLZ, Correlation: 0.9287441123303569
Pair: CSCO-MNST, Correlation: 0.9265491658685282
Pair: CSCO-MCO, Correlation: 0.9366348690518785
Pair: CSCO-MSCI, Correlation: 0.9165776421163838
Pair: CSCO-NDAQ, Correlation: 0.9328132791119261
Pair: CSCO-NFLX, Correlation: 0.9115363335053726
Pair: CSCO-NEE, Correlation: 0.9326558649886203
Pair: CSCO-NKE, Correlation: 0.9043725000307286
Pair: CSCO-NI, Correlation: 0.9215076223290358
Pair: CSCO-NDSN, Correlation: 0.9414543847441319
Pair: CSCO-NSC, Correlation: 0.9548988291425872
Pair: CSCO-NTRS, Correlation: 0.9063744497848265
Pair: CSCO-NOC, Correlation: 0.9371635449749516
Pair: CSCO-NVR, Correlation: 0.9037174937029562
Pair: CSCO-PKG, Correlation: 0.9106643482474052
Pair: CSCO-PAYX, Correlation: 0.942430665860652
Pair: CSCO-PEP, Correlation: 0.9352632103033722
Pair: CSCO-PNC, Correlation: 0.9332267176476707
Pair: CSCO-POOL, Correlation: 0.9180816463120157
Pair: CSCO-PG, Correlation: 0.9196831392580708
Pair: CSCO-PLD, Correlation: 0.9346281543579649
Pair: CSCO-PEG, Correlation: 0.9464163232897005
Pair: CSCO-PTC, Correlation: 0.9261462053939638
Pair: CSCO-DGX, Correlation: 0.9420850478489544
Pair: CSCO-O, Correlation: 0.926514916285089
Pair: CSCO-RF, Correlation: 0.9254225150354942
Pair: CSCO-RMD, Correlation: 0.9185408494316821
Pair: CSCO-RVTY, Correlation: 0.9169916238523261
Pair: CSCO-ROK, Correlation: 0.9398505812117751
Pair: CSCO-ROL, Correlation: 0.93491428612919
Pair: CSCO-ROP, Correlation: 0.9634287670918686
Pair: CSCO-ROST, Correlation: 0.9476152809970245
Pair: CSCO-SPGI, Correlation: 0.946498588868926
Pair: CSCO-CRM, Correlation: 0.9335099240279419
Pair: CSCO-SBAC, Correlation: 0.902460774531079
Pair: CSCO-SRE, Correlation: 0.9212495790342051
Pair: CSCO-SHW, Correlation: 0.936087188392799
Pair: CSCO-SBUX, Correlation: 0.9382827192974615
Pair: CSCO-STE, Correlation: 0.9525773214436468
Pair: CSCO-SYK, Correlation: 0.9508409872708848
Pair: CSCO-SYY, Correlation: 0.9574033176347105
Pair: CSCO-TMUS, Correlation: 0.9078717841041799
Pair: CSCO-TTWO, Correlation: 0.9346673533030376
Pair: CSCO-TEL, Correlation: 0.9430613113941847
Pair: CSCO-TDY, Correlation: 0.9558440003332287
Pair: CSCO-TXN, Correlation: 0.9523776297036884
Pair: CSCO-TMO, Correlation: 0.9267334072670963
Pair: CSCO-TJX, Correlation: 0.9056337740037527
Pair: CSCO-TRV, Correlation: 0.9083269975582885
Pair: CSCO-TYL, Correlation: 0.9297518382924993
Pair: CSCO-UDR, Correlation: 0.931675587875645
Pair: CSCO-ULTA, Correlation: 0.9066814530552015
Pair: CSCO-UNP, Correlation: 0.9561239991056152
Pair: CSCO-UNH, Correlation: 0.9280990126258983
Pair: CSCO-VRSN, Correlation: 0.9600874907201719
Pair: CSCO-VRSK, Correlation: 0.936159089083834
Pair: CSCO-V, Correlation: 0.9616684671955384
Pair: CSCO-VMC, Correlation: 0.9119947162495539
Pair: CSCO-WM, Correlation: 0.9296632630988928
Pair: CSCO-WAT, Correlation: 0.9452219300000146
Pair: CSCO-WEC, Correlation: 0.9419301893076066
Pair: CSCO-WTW, Correlation: 0.941243065591199
Pair: CSCO-WDAY, Correlation: 0.9277155108287729
Pair: CSCO-XEL, Correlation: 0.9414305907155608
Pair: CSCO-XYL, Correlation: 0.9371012839488833
Pair: CSCO-YUM, Correlation: 0.9617354620117837
Pair: CSCO-ZTS, Correlation: 0.9351040084646812
Pair: CFG-FITB, Correlation: 0.9530890913960683
Pair: CFG-HBAN, Correlation: 0.9663140377254607
Pair: CFG-KEY, Correlation: 0.9550723824356402
Pair: CFG-NTRS, Correlation: 0.9422469757275785
Pair: CFG-PNC, Correlation: 0.9637626119087531
Pair: CFG-RF, Correlation: 0.9297719632014958
Pair: CFG-TFC, Correlation: 0.9202504279499784
Pair: CFG-VLTO, Correlation: 0.9030172842791934
Pair: CLX-CMS, Correlation: 0.9338135541981093
Pair: CLX-CMCSA, Correlation: 0.9290082333097097
Pair: CLX-COO, Correlation: 0.9263117407357345
Pair: CLX-CSGP, Correlation: 0.9150468308221178
Pair: CLX-CCI, Correlation: 0.9111181004898213
Pair: CLX-DLR, Correlation: 0.9168443751925927
Pair: CLX-DPZ, Correlation: 0.9129129469719759
Pair: CLX-ECL, Correlation: 0.9314488722737431
Pair: CLX-EA, Correlation: 0.92188842234221
Pair: CLX-EQIX, Correlation: 0.9204462183831319
Pair: CLX-EVRG, Correlation: 0.9155540586295878
Pair: CLX-ES, Correlation: 0.9412053803653745
Pair: CLX-GPN, Correlation: 0.9289340598649084
Pair: CLX-HON, Correlation: 0.9073013263310736
Pair: CLX-HRL, Correlation: 0.9348786431647614
Pair: CLX-IEX, Correlation: 0.9000894269365266
Pair: CLX-JKHY, Correlation: 0.9336574353017679
Pair: CLX-JNJ, Correlation: 0.9157399601635423
Pair: CLX-KMB, Correlation: 0.938797607624762
Pair: CLX-MKTX, Correlation: 0.9376094224672777
Pair: CLX-MKC, Correlation: 0.9500025441689539
Pair: CLX-MDT, Correlation: 0.9322362811404471
Pair: CLX-PNW, Correlation: 0.9004788264180086
Pair: CLX-O, Correlation: 0.9015422650694636
Pair: CLX-SBAC, Correlation: 0.9101563152709347
Pair: CLX-SBUX, Correlation: 0.9172967962881777
Pair: CLX-TTWO, Correlation: 0.9291006021823186
Pair: CLX-TFX, Correlation: 0.9256377762717733
Pair: CLX-VRSN, Correlation: 0.9387674222312237
Pair: CLX-VZ, Correlation: 0.9047795003141821
Pair: CLX-V, Correlation: 0.9001633089129959
Pair: CLX-WEC, Correlation: 0.9353501525814936
Pair: CLX-XEL, Correlation: 0.9363044831003394
Pair: CME-CMS, Correlation: 0.9698284257445062
Pair: CME-KO, Correlation: 0.9438298644938795
Pair: CME-CMCSA, Correlation: 0.9147482729547054
Pair: CME-ED, Correlation: 0.9383955577379353
Pair: CME-STZ, Correlation: 0.9385497234159461
Pair: CME-COO, Correlation: 0.9669165487873681
Pair: CME-CPRT, Correlation: 0.909117924040777
Pair: CME-GLW, Correlation: 0.9307774217271765
Pair: CME-CPAY, Correlation: 0.9218200379423096
Pair: CME-CSGP, Correlation: 0.938953882971902
Pair: CME-CSX, Correlation: 0.974557294125098
Pair: CME-DHR, Correlation: 0.9352252358606873
Pair: CME-DRI, Correlation: 0.9567580467763473
Pair: CME-DLR, Correlation: 0.9491227310671596
Pair: CME-DFS, Correlation: 0.9026951557514904
Pair: CME-DPZ, Correlation: 0.9592224858299221
Pair: CME-DOV, Correlation: 0.9374526053756321
Pair: CME-DTE, Correlation: 0.9682374161049832
Pair: CME-DUK, Correlation: 0.9524736843252054
Pair: CME-ECL, Correlation: 0.9423816888249394
Pair: CME-EW, Correlation: 0.9361348669176861
Pair: CME-EA, Correlation: 0.9269301181929221
Pair: CME-ELV, Correlation: 0.946073965362111
Pair: CME-EMR, Correlation: 0.9072667181107659
Pair: CME-ETR, Correlation: 0.9583550925943585
Pair: CME-EFX, Correlation: 0.9242103661433255
Pair: CME-EQIX, Correlation: 0.9557723891833093
Pair: CME-EQR, Correlation: 0.9104829505452793
Pair: CME-ESS, Correlation: 0.9225272318533079
Pair: CME-EG, Correlation: 0.9188223514192462
Pair: CME-EVRG, Correlation: 0.9466305019190236
Pair: CME-ES, Correlation: 0.9122563122661573
Pair: CME-EXC, Correlation: 0.9028493737657326
Pair: CME-EXPD, Correlation: 0.9332268526982437
Pair: CME-EXR, Correlation: 0.9339150665314224
Pair: CME-FDS, Correlation: 0.947646380316347
Pair: CME-FITB, Correlation: 0.913655512913806
Pair: CME-FI, Correlation: 0.9614148114548708
Pair: CME-GRMN, Correlation: 0.9066911489649493
Pair: CME-GD, Correlation: 0.9118901230701351
Pair: CME-GL, Correlation: 0.9403069245900201
Pair: CME-HOLX, Correlation: 0.9317368516808132
Pair: CME-HD, Correlation: 0.9625510727189408
Pair: CME-HON, Correlation: 0.9675630373542005
Pair: CME-HUM, Correlation: 0.9200392185061094
Pair: CME-HBAN, Correlation: 0.9154883723365053
Pair: CME-HII, Correlation: 0.902935639983125
Pair: CME-IEX, Correlation: 0.9688731278315074
Pair: CME-IDXX, Correlation: 0.9231766916047697
Pair: CME-ITW, Correlation: 0.9581209514306123
Pair: CME-ICE, Correlation: 0.970745300282531
Pair: CME-INTU, Correlation: 0.9296870425835818
Pair: CME-ISRG, Correlation: 0.9223163010657423
Pair: CME-IQV, Correlation: 0.9403925963689835
Pair: CME-JBHT, Correlation: 0.9308381928954557
Pair: CME-JKHY, Correlation: 0.9658300109778646
Pair: CME-J, Correlation: 0.917359654173363
Pair: CME-JNJ, Correlation: 0.9583638753791711
Pair: CME-JPM, Correlation: 0.9441614984642543
Pair: CME-KDP, Correlation: 0.969650251778248
Pair: CME-KMB, Correlation: 0.9037259959443931
Pair: CME-LHX, Correlation: 0.981210778805067
Pair: CME-LH, Correlation: 0.9424645405866124
Pair: CME-LDOS, Correlation: 0.9457454987324297
Pair: CME-LII, Correlation: 0.9117554055829662
Pair: CME-LYV, Correlation: 0.967095447124573
Pair: CME-LMT, Correlation: 0.9589301261352591
Pair: CME-LOW, Correlation: 0.9303420483967807
Pair: CME-MAR, Correlation: 0.9364352986799256
Pair: CME-MMC, Correlation: 0.93107513110028
Pair: CME-MLM, Correlation: 0.9076172686297228
Pair: CME-MAS, Correlation: 0.9465052977283505
Pair: CME-MA, Correlation: 0.9676646187711393
Pair: CME-MKC, Correlation: 0.9410090177919077
Pair: CME-MCD, Correlation: 0.9601795718976661
Pair: CME-MRK, Correlation: 0.9061927648460186
Pair: CME-MTD, Correlation: 0.931273777879073
Pair: CME-MCHP, Correlation: 0.9386243407563134
Pair: CME-MU, Correlation: 0.9106481567469065
Pair: CME-MSFT, Correlation: 0.9089900219410716
Pair: CME-MAA, Correlation: 0.9284092896296005
Pair: CME-MOH, Correlation: 0.9125769069871769
Pair: CME-MDLZ, Correlation: 0.9421856193055965
Pair: CME-MNST, Correlation: 0.9344518199302012
Pair: CME-MCO, Correlation: 0.9495476667142388
Pair: CME-MSCI, Correlation: 0.9174744229671931
Pair: CME-NDAQ, Correlation: 0.9414806002167123
Pair: CME-NFLX, Correlation: 0.9122626379818329
Pair: CME-NEE, Correlation: 0.9433841424131998
Pair: CME-NI, Correlation: 0.9407043527453035
Pair: CME-NDSN, Correlation: 0.9522666204988027
Pair: CME-NSC, Correlation: 0.9614314226060496
Pair: CME-NTRS, Correlation: 0.9078273074098399
Pair: CME-NOC, Correlation: 0.9573535628613117
Pair: CME-NVR, Correlation: 0.9233483263053107
Pair: CME-NXPI, Correlation: 0.9069220110526939
Pair: CME-PKG, Correlation: 0.9341412283467451
Pair: CME-PAYX, Correlation: 0.9540974166420126
Pair: CME-PEP, Correlation: 0.9475203139901369
Pair: CME-PNW, Correlation: 0.9107311162040292
Pair: CME-PNC, Correlation: 0.9431260408362874
Pair: CME-POOL, Correlation: 0.9214021177001805
Pair: CME-PG, Correlation: 0.9391189006088274
Pair: CME-PLD, Correlation: 0.9447517461185521
Pair: CME-PEG, Correlation: 0.9631615361103509
Pair: CME-PTC, Correlation: 0.9340469043444698
Pair: CME-PSA, Correlation: 0.9120527191404038
Pair: CME-DGX, Correlation: 0.94795690199374
Pair: CME-RJF, Correlation: 0.909606042397148
Pair: CME-RTX, Correlation: 0.9037061482102877
Pair: CME-O, Correlation: 0.936996218336268
Pair: CME-RF, Correlation: 0.9308552014881555
Pair: CME-RSG, Correlation: 0.9211107480828276
Pair: CME-RMD, Correlation: 0.9240762411503458
Pair: CME-RVTY, Correlation: 0.9083449989533168
Pair: CME-ROK, Correlation: 0.9365483230436855
Pair: CME-ROL, Correlation: 0.9490505833340346
Pair: CME-ROP, Correlation: 0.9742665007450388
Pair: CME-ROST, Correlation: 0.9622717789771943
Pair: CME-SPGI, Correlation: 0.9578478253970872
Pair: CME-CRM, Correlation: 0.9442180061393365
Pair: CME-SBAC, Correlation: 0.9092364899906262
Pair: CME-SRE, Correlation: 0.9416677053598949
Pair: CME-SHW, Correlation: 0.9507821302509593
Pair: CME-SOLV, Correlation: 0.9063832655794619
Pair: CME-SO, Correlation: 0.9205223702578185
Pair: CME-SBUX, Correlation: 0.9356596779316421
Pair: CME-STE, Correlation: 0.9652107753275719
Pair: CME-SYK, Correlation: 0.9636186001470395
Pair: CME-SYY, Correlation: 0.9717137267223717
Pair: CME-TMUS, Correlation: 0.9286214437834833
Pair: CME-TTWO, Correlation: 0.9486746456282099
Pair: CME-TEL, Correlation: 0.9496954131756115
Pair: CME-TDY, Correlation: 0.9667822767416732
Pair: CME-TER, Correlation: 0.9004708167347311
Pair: CME-TXN, Correlation: 0.9605266884217734
Pair: CME-TMO, Correlation: 0.9361591662909817
Pair: CME-TJX, Correlation: 0.9215478484980777
Pair: CME-TRV, Correlation: 0.9266742853131711
Pair: CME-TYL, Correlation: 0.9451308335898855
Pair: CME-UDR, Correlation: 0.9379505682345561
Pair: CME-ULTA, Correlation: 0.9060661076090015
Pair: CME-UNP, Correlation: 0.9700191178833032
Pair: CME-UNH, Correlation: 0.9440137440244177
Pair: CME-VRSN, Correlation: 0.9580104902108421
Pair: CME-VRSK, Correlation: 0.9510529035067847
Pair: CME-V, Correlation: 0.9765745371861141
Pair: CME-VMC, Correlation: 0.9282860941149694
Pair: CME-WRB, Correlation: 0.9223691293248817
Pair: CME-WMT, Correlation: 0.9091814731703369
Pair: CME-WM, Correlation: 0.9489051717571055
Pair: CME-WAT, Correlation: 0.9465232601838232
Pair: CME-WEC, Correlation: 0.9602647053866462
Pair: CME-WST, Correlation: 0.9001701830750977
Pair: CME-WTW, Correlation: 0.9589638783859168
Pair: CME-WDAY, Correlation: 0.9189930904624299
Pair: CME-XEL, Correlation: 0.9556975884971048
Pair: CME-XYL, Correlation: 0.9386186675948254
Pair: CME-YUM, Correlation: 0.968035017447191
Pair: CME-ZTS, Correlation: 0.943911575637092
Pair: CMS-KO, Correlation: 0.9593945362654236
Pair: CMS-CL, Correlation: 0.9288011235096909
Pair: CMS-CMCSA, Correlation: 0.931191269469546
Pair: CMS-ED, Correlation: 0.9635855945686748
Pair: CMS-STZ, Correlation: 0.9474760005213347
Pair: CMS-COO, Correlation: 0.9697061094658366
Pair: CMS-GLW, Correlation: 0.9215248173902096
Pair: CMS-CPAY, Correlation: 0.9207293142483235
Pair: CMS-CSGP, Correlation: 0.9370625814736824
Pair: CMS-CCI, Correlation: 0.9268459522040461
Pair: CMS-CSX, Correlation: 0.9523023791311636
Pair: CMS-DHR, Correlation: 0.9301703407632527
Pair: CMS-DRI, Correlation: 0.9272624393675468
Pair: CMS-DLR, Correlation: 0.9522198055681523
Pair: CMS-DPZ, Correlation: 0.951756517607837
Pair: CMS-DOV, Correlation: 0.9197695409595645
Pair: CMS-DTE, Correlation: 0.9896625488286392
Pair: CMS-DUK, Correlation: 0.9777529163649858
Pair: CMS-EBAY, Correlation: 0.9081213093711139
Pair: CMS-ECL, Correlation: 0.9475762027946696
Pair: CMS-EW, Correlation: 0.9355665643625907
Pair: CMS-EA, Correlation: 0.9377080002263997
Pair: CMS-ELV, Correlation: 0.9322733531420264
Pair: CMS-ETR, Correlation: 0.9661923228354897
Pair: CMS-EFX, Correlation: 0.93111715332176
Pair: CMS-EQIX, Correlation: 0.9652110922975812
Pair: CMS-EQR, Correlation: 0.9257489835081031
Pair: CMS-ESS, Correlation: 0.9367121243988902
Pair: CMS-EG, Correlation: 0.912320976750581
Pair: CMS-EVRG, Correlation: 0.9813620145935731
Pair: CMS-ES, Correlation: 0.9625412248926382
Pair: CMS-EXPD, Correlation: 0.9042199815749402
Pair: CMS-EXR, Correlation: 0.9441766168901748
Pair: CMS-FDS, Correlation: 0.9390041430932998
Pair: CMS-FI, Correlation: 0.9564639020919197
Pair: CMS-GEN, Correlation: 0.9088207792662034
Pair: CMS-GD, Correlation: 0.9050947374187706
Pair: CMS-GL, Correlation: 0.9445688714650001
Pair: CMS-HSIC, Correlation: 0.9028893238231003
Pair: CMS-HSY, Correlation: 0.9137713876319857
Pair: CMS-HOLX, Correlation: 0.9485590091929164
Pair: CMS-HD, Correlation: 0.9559024458631505
Pair: CMS-HON, Correlation: 0.9704449300726201
Pair: CMS-HRL, Correlation: 0.918393654844768
Pair: CMS-HUM, Correlation: 0.9314773325235328
Pair: CMS-HBAN, Correlation: 0.9047314345622756
Pair: CMS-IEX, Correlation: 0.9627191348193633
Pair: CMS-IDXX, Correlation: 0.9007025445541459
Pair: CMS-ITW, Correlation: 0.952177152457318
Pair: CMS-ICE, Correlation: 0.9564735784613917
Pair: CMS-IQV, Correlation: 0.9313689800174128
Pair: CMS-JBHT, Correlation: 0.9194462763722956
Pair: CMS-JKHY, Correlation: 0.981542492855218
Pair: CMS-JNJ, Correlation: 0.9772409553318703
Pair: CMS-JPM, Correlation: 0.910202031898257
Pair: CMS-KDP, Correlation: 0.9711503831009348
Pair: CMS-KEYS, Correlation: 0.9036523724986524
Pair: CMS-KMB, Correlation: 0.9611690962158664
Pair: CMS-LHX, Correlation: 0.9765409974744778
Pair: CMS-LH, Correlation: 0.9274781568290352
Pair: CMS-LDOS, Correlation: 0.9339524983151998
Pair: CMS-LYV, Correlation: 0.9370907218010972
Pair: CMS-LMT, Correlation: 0.9712885097504922
Pair: CMS-LOW, Correlation: 0.9216099145906832
Pair: CMS-MAR, Correlation: 0.9008085001046723
Pair: CMS-MMC, Correlation: 0.9187605709492533
Pair: CMS-MAS, Correlation: 0.9467788468307929
Pair: CMS-MA, Correlation: 0.9523668910255735
Pair: CMS-MKC, Correlation: 0.9679994231940386
Pair: CMS-MCD, Correlation: 0.9522399503110405
Pair: CMS-MDT, Correlation: 0.919664105382858
Pair: CMS-MRK, Correlation: 0.9043370260423215
Pair: CMS-MTD, Correlation: 0.9342967138519026
Pair: CMS-MCHP, Correlation: 0.9179065688859999
Pair: CMS-MAA, Correlation: 0.9385673675854821
Pair: CMS-MDLZ, Correlation: 0.9561011037991163
Pair: CMS-MNST, Correlation: 0.944520932730891
Pair: CMS-MCO, Correlation: 0.9379755437760705
Pair: CMS-NDAQ, Correlation: 0.9389151148835659
Pair: CMS-NEE, Correlation: 0.9632380303622133
Pair: CMS-NKE, Correlation: 0.9034358431498356
Pair: CMS-NI, Correlation: 0.9693587941970203
Pair: CMS-NDSN, Correlation: 0.9471532062245015
Pair: CMS-NSC, Correlation: 0.9500011722400556
Pair: CMS-NTRS, Correlation: 0.9023147607378718
Pair: CMS-NOC, Correlation: 0.9624874524170342
Pair: CMS-PKG, Correlation: 0.9237359279703925
Pair: CMS-PAYX, Correlation: 0.9450687198187736
Pair: CMS-PEP, Correlation: 0.9583731370115096
Pair: CMS-PNW, Correlation: 0.9459197374494502
Pair: CMS-PNC, Correlation: 0.9253956765556899
Pair: CMS-POOL, Correlation: 0.9103429466538033
Pair: CMS-PPG, Correlation: 0.9024944709060063
Pair: CMS-PG, Correlation: 0.9441311057956417
Pair: CMS-PLD, Correlation: 0.9375175068349227
Pair: CMS-PEG, Correlation: 0.9635624869942729
Pair: CMS-PSA, Correlation: 0.9323704911877588
Pair: CMS-DGX, Correlation: 0.952843112944836
Pair: CMS-RTX, Correlation: 0.9045999535702075
Pair: CMS-O, Correlation: 0.9747034253533924
Pair: CMS-RF, Correlation: 0.9061943742253354
Pair: CMS-RSG, Correlation: 0.901449314601581
Pair: CMS-RMD, Correlation: 0.9316218498759986
Pair: CMS-RVTY, Correlation: 0.9168284195251878
Pair: CMS-ROK, Correlation: 0.9243684053797916
Pair: CMS-ROL, Correlation: 0.9455563068567618
Pair: CMS-ROP, Correlation: 0.9630114908615456
Pair: CMS-ROST, Correlation: 0.9484723151955438
Pair: CMS-SPGI, Correlation: 0.9476375643886303
Pair: CMS-CRM, Correlation: 0.923508163366278
Pair: CMS-SBAC, Correlation: 0.9376740769748512
Pair: CMS-SRE, Correlation: 0.9717074211608504
Pair: CMS-SHW, Correlation: 0.9424744503245382
Pair: CMS-SO, Correlation: 0.9368433002500997
Pair: CMS-SBUX, Correlation: 0.9482447401341256
Pair: CMS-STE, Correlation: 0.953702509355139
Pair: CMS-SYK, Correlation: 0.9429228939977683
Pair: CMS-SYY, Correlation: 0.9677800430343458
Pair: CMS-TMUS, Correlation: 0.9285272147917384
Pair: CMS-TTWO, Correlation: 0.9281341540526674
Pair: CMS-TEL, Correlation: 0.9355621294598909
Pair: CMS-TDY, Correlation: 0.9551251030483968
Pair: CMS-TXN, Correlation: 0.9531065061134535
Pair: CMS-TMO, Correlation: 0.9357645027617493
Pair: CMS-TJX, Correlation: 0.9101210379193571
Pair: CMS-TRV, Correlation: 0.9247102772333986
Pair: CMS-TYL, Correlation: 0.9440604868608159
Pair: CMS-UDR, Correlation: 0.9501477401482158
Pair: CMS-ULTA, Correlation: 0.9127071616586206
Pair: CMS-UNP, Correlation: 0.9589285089377472
Pair: CMS-UNH, Correlation: 0.9339955155606442
Pair: CMS-VLTO, Correlation: 0.9131958219971849
Pair: CMS-VRSN, Correlation: 0.9560946018538339
Pair: CMS-VRSK, Correlation: 0.940546102113684
Pair: CMS-V, Correlation: 0.9653319350072345
Pair: CMS-VMC, Correlation: 0.9144481140558296
Pair: CMS-WRB, Correlation: 0.9126288822804777
Pair: CMS-WMT, Correlation: 0.900841595870013
Pair: CMS-WM, Correlation: 0.9341694523627629
Pair: CMS-WAT, Correlation: 0.9408685103282509
Pair: CMS-WEC, Correlation: 0.9934887959178617
Pair: CMS-WTW, Correlation: 0.9546291264008209
Pair: CMS-XEL, Correlation: 0.9878522492679382
Pair: CMS-XYL, Correlation: 0.9232885129315723
Pair: CMS-YUM, Correlation: 0.9570814339318208
Pair: CMS-ZTS, Correlation: 0.9389071303076378
Pair: KO-CL, Correlation: 0.9391700518584675
Pair: KO-ED, Correlation: 0.9708428421915286
Pair: KO-STZ, Correlation: 0.9178195741339595
Pair: KO-COO, Correlation: 0.9355799754810816
Pair: KO-CPRT, Correlation: 0.9336929580933868
Pair: KO-GLW, Correlation: 0.9006802611551571
Pair: KO-CSGP, Correlation: 0.9111925562842198
Pair: KO-COST, Correlation: 0.940558471794231
Pair: KO-CSX, Correlation: 0.9494228251675138
Pair: KO-CMI, Correlation: 0.9391890805001288
Pair: KO-DHR, Correlation: 0.943654731627526
Pair: KO-DRI, Correlation: 0.9555291937184601
Pair: KO-DE, Correlation: 0.930621394533215
Pair: KO-DLR, Correlation: 0.901011482901813
Pair: KO-DFS, Correlation: 0.9436480447897072
Pair: KO-DPZ, Correlation: 0.9203364760359019
Pair: KO-DOV, Correlation: 0.9563988231756856
Pair: KO-DHI, Correlation: 0.9163750642877807
Pair: KO-DTE, Correlation: 0.9701808155510406
Pair: KO-DUK, Correlation: 0.9842553343145232
Pair: KO-ECL, Correlation: 0.9037378299188155
Pair: KO-EIX, Correlation: 0.9026918111818882
Pair: KO-ELV, Correlation: 0.9714121721616733
Pair: KO-EMR, Correlation: 0.933838724896249
Pair: KO-ETR, Correlation: 0.967310223087541
Pair: KO-EFX, Correlation: 0.9445180080046334
Pair: KO-EQIX, Correlation: 0.9471816271342341
Pair: KO-ERIE, Correlation: 0.9023612478854116
Pair: KO-EG, Correlation: 0.9566376127965608
Pair: KO-EVRG, Correlation: 0.926301504128669
Pair: KO-EXC, Correlation: 0.927581435934137
Pair: KO-EXPD, Correlation: 0.9344069850100809
Pair: KO-EXR, Correlation: 0.9599375186370763
Pair: KO-FDS, Correlation: 0.9623747984179987
Pair: KO-FAST, Correlation: 0.9406978537446656
Pair: KO-FITB, Correlation: 0.9085445667027346
Pair: KO-FI, Correlation: 0.94648556552533
Pair: KO-FTNT, Correlation: 0.9187026626519412
Pair: KO-GRMN, Correlation: 0.9080320540492606
Pair: KO-IT, Correlation: 0.9336046474010412
Pair: KO-GEN, Correlation: 0.9065434513876873
Pair: KO-GD, Correlation: 0.934300894809345
Pair: KO-GIS, Correlation: 0.9300271270375241
Pair: KO-GPC, Correlation: 0.9491116893432765
Pair: KO-GL, Correlation: 0.9253410618347563
Pair: KO-GS, Correlation: 0.9046484054945974
Pair: KO-HIG, Correlation: 0.9359239505447808
Pair: KO-HCA, Correlation: 0.9618358843325497
Pair: KO-HSY, Correlation: 0.9622915847786349
Pair: KO-HLT, Correlation: 0.9427065922276323
Pair: KO-HOLX, Correlation: 0.9519213862872205
Pair: KO-HD, Correlation: 0.9661641006758727
Pair: KO-HON, Correlation: 0.9550855431856132
Pair: KO-HUM, Correlation: 0.9031863886015368
Pair: KO-IEX, Correlation: 0.952539678638567
Pair: KO-ITW, Correlation: 0.9637095927309727
Pair: KO-ICE, Correlation: 0.9601339413113409
Pair: KO-IPG, Correlation: 0.9375463849832488
Pair: KO-INTU, Correlation: 0.9370153770050887
Pair: KO-ISRG, Correlation: 0.9274253176848735
Pair: KO-IQV, Correlation: 0.9325195902324251
Pair: KO-JBHT, Correlation: 0.9483012783521095
Pair: KO-JKHY, Correlation: 0.9341354408514565
Pair: KO-J, Correlation: 0.9342722036366977
Pair: KO-JNJ, Correlation: 0.9556557588213761
Pair: KO-JCI, Correlation: 0.9282035889714113
Pair: KO-JPM, Correlation: 0.940375335423706
Pair: KO-KDP, Correlation: 0.9567225641482361
Pair: KO-KEYS, Correlation: 0.902148599724085
Pair: KO-KMB, Correlation: 0.9224882199098768
Pair: KO-KR, Correlation: 0.9155527076271357
Pair: KO-LHX, Correlation: 0.9481276353710786
Pair: KO-LH, Correlation: 0.935024192899714
Pair: KO-LDOS, Correlation: 0.9357501157809114
Pair: KO-LEN, Correlation: 0.9082166396771463
Pair: KO-LII, Correlation: 0.9107031349376522
Pair: KO-LIN, Correlation: 0.9442989343770071
Pair: KO-LYV, Correlation: 0.9429944143869221
Pair: KO-LMT, Correlation: 0.9707206997649697
Pair: KO-LOW, Correlation: 0.9613597785374257
Pair: KO-MAR, Correlation: 0.9429903975090527
Pair: KO-MMC, Correlation: 0.9740623131750082
Pair: KO-MLM, Correlation: 0.9386186301896493
Pair: KO-MAS, Correlation: 0.9454637551656015
Pair: KO-MA, Correlation: 0.9621053711860617
Pair: KO-MKC, Correlation: 0.9075103982936349
Pair: KO-MCD, Correlation: 0.9765787339181815
Pair: KO-MRK, Correlation: 0.9588883556115317
Pair: KO-MET, Correlation: 0.9315158497534723
Pair: KO-MTD, Correlation: 0.946508968400784
Pair: KO-MCHP, Correlation: 0.9454897954575223
Pair: KO-MSFT, Correlation: 0.9369127996725934
Pair: KO-MAA, Correlation: 0.9365243139840523
Pair: KO-MOH, Correlation: 0.9430128060751318
Pair: KO-MDLZ, Correlation: 0.9784848331200897
Pair: KO-MPWR, Correlation: 0.9142056364617991
Pair: KO-MNST, Correlation: 0.9537385366132982
Pair: KO-MCO, Correlation: 0.9563836858281778
Pair: KO-MS, Correlation: 0.9274658601266027
Pair: KO-MSI, Correlation: 0.9469737382160621
Pair: KO-MSCI, Correlation: 0.9260774698847819
Pair: KO-NDAQ, Correlation: 0.9600080434292279
Pair: KO-NEE, Correlation: 0.9476087746677121
Pair: KO-NI, Correlation: 0.9388228105453131
Pair: KO-NDSN, Correlation: 0.9600433466258937
Pair: KO-NSC, Correlation: 0.9385531974151888
Pair: KO-NOC, Correlation: 0.9673577519747183
Pair: KO-NVR, Correlation: 0.9454242010880154
Pair: KO-NXPI, Correlation: 0.9365361766571316
Pair: KO-ORLY, Correlation: 0.9533932761789223
Pair: KO-ODFL, Correlation: 0.9310086178076544
Pair: KO-OKE, Correlation: 0.9106017653245387
Pair: KO-ORCL, Correlation: 0.903398492872259
Pair: KO-PKG, Correlation: 0.9522507349849302
Pair: KO-PANW, Correlation: 0.9071385899422768
Pair: KO-PH, Correlation: 0.9033926426062145
Pair: KO-PAYX, Correlation: 0.9785817738298401
Pair: KO-PEP, Correlation: 0.9833412581019335
Pair: KO-PM, Correlation: 0.9284013397291137
Pair: KO-PNC, Correlation: 0.9124900233169247
Pair: KO-POOL, Correlation: 0.9102598046954988
Pair: KO-PFG, Correlation: 0.9338243830911201
Pair: KO-PG, Correlation: 0.9746728730199071
Pair: KO-PGR, Correlation: 0.9254939667406841
Pair: KO-PLD, Correlation: 0.950453020691488
Pair: KO-PEG, Correlation: 0.9720925123264017
Pair: KO-PTC, Correlation: 0.9330958979011752
Pair: KO-PSA, Correlation: 0.9653993733922018
Pair: KO-DGX, Correlation: 0.9532161456767648
Pair: KO-RJF, Correlation: 0.9512202548438365
Pair: KO-RTX, Correlation: 0.9489805639531749
Pair: KO-O, Correlation: 0.9293660632566845
Pair: KO-REGN, Correlation: 0.9029770465936403
Pair: KO-RF, Correlation: 0.9266040799333811
Pair: KO-RSG, Correlation: 0.9606105014710483
Pair: KO-RMD, Correlation: 0.9250018880136334
Pair: KO-ROK, Correlation: 0.9331210269011977
Pair: KO-ROL, Correlation: 0.9566240195046394
Pair: KO-ROP, Correlation: 0.9646410686212155
Pair: KO-ROST, Correlation: 0.9346171573287434
Pair: KO-SPGI, Correlation: 0.953657165679054
Pair: KO-CRM, Correlation: 0.9033734355267046
Pair: KO-STX, Correlation: 0.9097519712660864
Pair: KO-SRE, Correlation: 0.9762764919042523
Pair: KO-NOW, Correlation: 0.9209779100789119
Pair: KO-SHW, Correlation: 0.9579800482499763
Pair: KO-SNA, Correlation: 0.9454817121054417
Pair: KO-SO, Correlation: 0.9833701488784017
Pair: KO-SBUX, Correlation: 0.9233173971863958
Pair: KO-STE, Correlation: 0.9602465339994884
Pair: KO-SYK, Correlation: 0.961979860178103
Pair: KO-SNPS, Correlation: 0.912463742372533
Pair: KO-SYY, Correlation: 0.9453166722259178
Pair: KO-TMUS, Correlation: 0.956348031361785
Pair: KO-TEL, Correlation: 0.9540939667889936
Pair: KO-TDY, Correlation: 0.9474232893242838
Pair: KO-TER, Correlation: 0.9009513888726802
Pair: KO-TXN, Correlation: 0.9602510746185328
Pair: KO-TMO, Correlation: 0.9552289155226283
Pair: KO-TJX, Correlation: 0.9608784739354461
Pair: KO-TSCO, Correlation: 0.9460827558977603
Pair: KO-TT, Correlation: 0.902414751635443
Pair: KO-TDG, Correlation: 0.9266122499235082
Pair: KO-TRV, Correlation: 0.9673229765857768
Pair: KO-TYL, Correlation: 0.9360796287695035
Pair: KO-UDR, Correlation: 0.9069483089771571
Pair: KO-ULTA, Correlation: 0.928687121811693
Pair: KO-UNP, Correlation: 0.965505777672904
Pair: KO-UPS, Correlation: 0.902141485286515
Pair: KO-UNH, Correlation: 0.972240068897009
Pair: KO-VLO, Correlation: 0.9141730612586849
Pair: KO-VLTO, Correlation: 0.9255294446703
Pair: KO-VRSK, Correlation: 0.961282578247104
Pair: KO-VRTX, Correlation: 0.935418383973831
Pair: KO-VICI, Correlation: 0.9373559534197199
Pair: KO-V, Correlation: 0.9631670727981909
Pair: KO-VMC, Correlation: 0.9455697231191442
Pair: KO-WRB, Correlation: 0.9710028398079334
Pair: KO-WMT, Correlation: 0.9457668051070436
Pair: KO-WM, Correlation: 0.9732457064646182
Pair: KO-WAT, Correlation: 0.9426471934741848
Pair: KO-WEC, Correlation: 0.9518737479796288
Pair: KO-WELL, Correlation: 0.9306075973230551
Pair: KO-WST, Correlation: 0.9022413700573679
Pair: KO-WTW, Correlation: 0.9658638117089893
Pair: KO-XEL, Correlation: 0.9398986290826354
Pair: KO-XYL, Correlation: 0.9348200737855735
Pair: KO-YUM, Correlation: 0.9749753831065854
Pair: KO-ZTS, Correlation: 0.9238608271883405
Pair: CTSH-CMCSA, Correlation: 0.903823907901582
Pair: CTSH-STZ, Correlation: 0.9272099242848942
Pair: CTSH-EMN, Correlation: 0.9031147955252824
Pair: CTSH-EA, Correlation: 0.9225950884545872
Pair: CTSH-ESS, Correlation: 0.9007601552385336
Pair: CTSH-EXPE, Correlation: 0.9117093188587728
Pair: CTSH-FDX, Correlation: 0.9108934363696403
Pair: CTSH-HBAN, Correlation: 0.916250628543862
Pair: CTSH-NTRS, Correlation: 0.9160180552687278
Pair: CTSH-PPG, Correlation: 0.9024639634601779
Pair: CL-ED, Correlation: 0.9191727240095197
Pair: CL-STZ, Correlation: 0.9226935635157031
Pair: CL-COO, Correlation: 0.9197685539979861
Pair: CL-CMI, Correlation: 0.9201030357574996
Pair: CL-DVA, Correlation: 0.9047788797528711
Pair: CL-DLR, Correlation: 0.9015297111682508
Pair: CL-DFS, Correlation: 0.9242060838793815
Pair: CL-DPZ, Correlation: 0.9014519848179029
Pair: CL-DOV, Correlation: 0.9061019570218058
Pair: CL-DTE, Correlation: 0.9338363031431471
Pair: CL-DUK, Correlation: 0.9537651547949151
Pair: CL-ECL, Correlation: 0.9358665003036529
Pair: CL-EIX, Correlation: 0.93241645268823
Pair: CL-EFX, Correlation: 0.9374512169477714
Pair: CL-EQIX, Correlation: 0.921434793292176
Pair: CL-EG, Correlation: 0.9217844840949407
Pair: CL-FI, Correlation: 0.9295470970686763
Pair: CL-GD, Correlation: 0.9242384999444521
Pair: CL-GIS, Correlation: 0.901767912289434
Pair: CL-HIG, Correlation: 0.9163538636427192
Pair: CL-HCA, Correlation: 0.9084856412967292
Pair: CL-HLT, Correlation: 0.925345230129892
Pair: CL-HOLX, Correlation: 0.9109694230949527
Pair: CL-HD, Correlation: 0.9265580698827526
Pair: CL-HON, Correlation: 0.9263363084676932
Pair: CL-IEX, Correlation: 0.9024708129927713
Pair: CL-ITW, Correlation: 0.9289489477671322
Pair: CL-IR, Correlation: 0.9062350897629818
Pair: CL-ICE, Correlation: 0.9352315495233382
Pair: CL-JNJ, Correlation: 0.930077684124363
Pair: CL-JCI, Correlation: 0.9113518404116576
Pair: CL-JPM, Correlation: 0.9141837237083537
Pair: CL-K, Correlation: 0.9084944778039267
Pair: CL-KMB, Correlation: 0.9559390306680972
Pair: CL-KR, Correlation: 0.9081765437948881
Pair: CL-LDOS, Correlation: 0.9022187137035936
Pair: CL-LEN, Correlation: 0.9034139065257183
Pair: CL-LII, Correlation: 0.9173304361718693
Pair: CL-LMT, Correlation: 0.9349647948570305
Pair: CL-LOW, Correlation: 0.9074224384063092
Pair: CL-LYB, Correlation: 0.9061999851976669
Pair: CL-MAR, Correlation: 0.9062182265805369
Pair: CL-MMC, Correlation: 0.9127092489204491
Pair: CL-MLM, Correlation: 0.9074137788109916
Pair: CL-MAS, Correlation: 0.9510123854248153
Pair: CL-MA, Correlation: 0.909224169260062
Pair: CL-MRK, Correlation: 0.9036325237260237
Pair: CL-META, Correlation: 0.9152235194736086
Pair: CL-MDLZ, Correlation: 0.9442824125388101
Pair: CL-MNST, Correlation: 0.9248872436895927
Pair: CL-MCO, Correlation: 0.9223924115860174
Pair: CL-NDAQ, Correlation: 0.9040602545336308
Pair: CL-NI, Correlation: 0.9330805321967837
Pair: CL-NDSN, Correlation: 0.9098644690294702
Pair: CL-NOC, Correlation: 0.911196559104043
Pair: CL-NVR, Correlation: 0.9116755464740198
Pair: CL-NXPI, Correlation: 0.9364137583412433
Pair: CL-OMC, Correlation: 0.9143104321929626
Pair: CL-PKG, Correlation: 0.9476307164244886
Pair: CL-PAYX, Correlation: 0.9079236562481272
Pair: CL-PNR, Correlation: 0.9014798959257629
Pair: CL-PEP, Correlation: 0.9201207407365938
Pair: CL-PM, Correlation: 0.9327229839302383
Pair: CL-PNW, Correlation: 0.9026110330757691
Pair: CL-PPG, Correlation: 0.9194403591991949
Pair: CL-PPL, Correlation: 0.908592286459603
Pair: CL-PFG, Correlation: 0.901356218051054
Pair: CL-PG, Correlation: 0.9205407551637114
Pair: CL-PRU, Correlation: 0.9041647978468607
Pair: CL-PEG, Correlation: 0.9340638748569766
Pair: CL-PSA, Correlation: 0.9226391282277187
Pair: CL-DGX, Correlation: 0.9065633224479936
Pair: CL-RTX, Correlation: 0.9144762730109113
Pair: CL-REGN, Correlation: 0.93142094995724
Pair: CL-ROL, Correlation: 0.9157508058114935
Pair: CL-ROP, Correlation: 0.9246667117759496
Pair: CL-ROST, Correlation: 0.921761077429728
Pair: CL-SPGI, Correlation: 0.9085733586593958
Pair: CL-STX, Correlation: 0.9012466514700207
Pair: CL-SRE, Correlation: 0.9449776535623419
Pair: CL-NOW, Correlation: 0.9166340599971464
Pair: CL-SHW, Correlation: 0.9289356438316999
Pair: CL-SNA, Correlation: 0.9332542612181325
Pair: CL-SO, Correlation: 0.9228424453153576
Pair: CL-SYK, Correlation: 0.921907243868328
Pair: CL-TMUS, Correlation: 0.9157679453177693
Pair: CL-TEL, Correlation: 0.9283312033169102
Pair: CL-TXN, Correlation: 0.9075842792912446
Pair: CL-TJX, Correlation: 0.9325286572256062
Pair: CL-TRV, Correlation: 0.9472061958778828
Pair: CL-TYL, Correlation: 0.9277279885744213
Pair: CL-UNP, Correlation: 0.9199879061571008
Pair: CL-UHS, Correlation: 0.9186148310721937
Pair: CL-VLTO, Correlation: 0.9539021932886259
Pair: CL-VRSK, Correlation: 0.9185841970964197
Pair: CL-V, Correlation: 0.9211427880173216
Pair: CL-VMC, Correlation: 0.9313525538907871
Pair: CL-WRB, Correlation: 0.9001561975724898
Pair: CL-WMT, Correlation: 0.9126856652576141
Pair: CL-WM, Correlation: 0.9094091507142554
Pair: CL-WEC, Correlation: 0.9051661481672983
Pair: CL-WELL, Correlation: 0.9129184897067776
Pair: CL-WTW, Correlation: 0.9270965831899547
Pair: CL-XYL, Correlation: 0.9145101751327654
Pair: CL-YUM, Correlation: 0.9110195038561864
Pair: CMCSA-STZ, Correlation: 0.924583678428534
Pair: CMCSA-COO, Correlation: 0.9632362214132407
Pair: CMCSA-CPAY, Correlation: 0.9271493967938735
Pair: CMCSA-CSGP, Correlation: 0.9028862379826518
Pair: CMCSA-CCI, Correlation: 0.9149295118814512
Pair: CMCSA-DLR, Correlation: 0.9168092134959718
Pair: CMCSA-DPZ, Correlation: 0.9195270817244044
Pair: CMCSA-DTE, Correlation: 0.9271802061316824
Pair: CMCSA-DUK, Correlation: 0.9048273253108688
Pair: CMCSA-EBAY, Correlation: 0.9301406582782942
Pair: CMCSA-ECL, Correlation: 0.9445317859670411
Pair: CMCSA-EW, Correlation: 0.9034244442448921
Pair: CMCSA-EA, Correlation: 0.9234942014296267
Pair: CMCSA-EFX, Correlation: 0.9014442401417248
Pair: CMCSA-EQIX, Correlation: 0.9183960083276105
Pair: CMCSA-EQR, Correlation: 0.9084207658666144
Pair: CMCSA-ESS, Correlation: 0.937674295637853
Pair: CMCSA-EVRG, Correlation: 0.928761888656984
Pair: CMCSA-ES, Correlation: 0.9244009877735128
Pair: CMCSA-GPN, Correlation: 0.9106577276729113
Pair: CMCSA-GL, Correlation: 0.9177574401159546
Pair: CMCSA-HSIC, Correlation: 0.9161529299010441
Pair: CMCSA-HON, Correlation: 0.9461047458802968
Pair: CMCSA-HRL, Correlation: 0.9082861976464036
Pair: CMCSA-IEX, Correlation: 0.918281781253776
Pair: CMCSA-ITW, Correlation: 0.903231776552462
Pair: CMCSA-ICE, Correlation: 0.9028268061175876
Pair: CMCSA-JKHY, Correlation: 0.9120029201978405
Pair: CMCSA-JNJ, Correlation: 0.937171714515579
Pair: CMCSA-KMB, Correlation: 0.9358380849469721
Pair: CMCSA-LHX, Correlation: 0.9019743774489276
Pair: CMCSA-LH, Correlation: 0.9024604976145744
Pair: CMCSA-MAS, Correlation: 0.9054859577394457
Pair: CMCSA-MKC, Correlation: 0.9223694212412384
Pair: CMCSA-MDT, Correlation: 0.968927864268545
Pair: CMCSA-MNST, Correlation: 0.9027147114151015
Pair: CMCSA-NKE, Correlation: 0.9266785259686188
Pair: CMCSA-NI, Correlation: 0.9014347310988212
Pair: CMCSA-NSC, Correlation: 0.9066440573856247
Pair: CMCSA-NTRS, Correlation: 0.9214648677939266
Pair: CMCSA-PNW, Correlation: 0.9124068072865011
Pair: CMCSA-PNC, Correlation: 0.9069345196921534
Pair: CMCSA-PPG, Correlation: 0.9593739262200774
Pair: CMCSA-O, Correlation: 0.9261405982195942
Pair: CMCSA-RVTY, Correlation: 0.9038591361199689
Pair: CMCSA-ROK, Correlation: 0.9029427578962297
Pair: CMCSA-ROP, Correlation: 0.9086598305450645
Pair: CMCSA-ROST, Correlation: 0.9156561238643799
Pair: CMCSA-CRM, Correlation: 0.9034905945951318
Pair: CMCSA-SBAC, Correlation: 0.9064955380801765
Pair: CMCSA-SWKS, Correlation: 0.9341115742287525
Pair: CMCSA-SBUX, Correlation: 0.9486479505703092
Pair: CMCSA-SYY, Correlation: 0.9128980992311069
Pair: CMCSA-TROW, Correlation: 0.9065564913457861
Pair: CMCSA-TTWO, Correlation: 0.922571585011977
Pair: CMCSA-TEL, Correlation: 0.9093382195330514
Pair: CMCSA-TFX, Correlation: 0.918445958576393
Pair: CMCSA-TYL, Correlation: 0.9095367015113542
Pair: CMCSA-USB, Correlation: 0.9073396421719518
Pair: CMCSA-UDR, Correlation: 0.9284464128214932
Pair: CMCSA-UNP, Correlation: 0.9050652591847196
Pair: CMCSA-VRSN, Correlation: 0.9230084124037864
Pair: CMCSA-VZ, Correlation: 0.9150437650160248
Pair: CMCSA-V, Correlation: 0.9047702845725248
Pair: CMCSA-DIS, Correlation: 0.9149509060541439
Pair: CMCSA-WEC, Correlation: 0.9210426751645903
Pair: CMCSA-XEL, Correlation: 0.9208717227159994
Pair: CMCSA-ZBH, Correlation: 0.9422833369557531
Pair: CAG-STZ, Correlation: 0.9120393905065723
Pair: CAG-EA, Correlation: 0.905150031485961
Pair: CAG-HSIC, Correlation: 0.9193284457839715
Pair: CAG-KMB, Correlation: 0.900557419477833
Pair: CAG-SJM, Correlation: 0.9221719031775129
Pair: COP-EOG, Correlation: 0.9143785046471405
Pair: COP-XOM, Correlation: 0.9399296779537012
Pair: COP-HES, Correlation: 0.9597786432596949
Pair: COP-MPC, Correlation: 0.9348341953594487
Pair: COP-MCK, Correlation: 0.9183604130491712
Pair: COP-NUE, Correlation: 0.9376040660896447
Pair: COP-ON, Correlation: 0.9058986147057363
Pair: COP-STLD, Correlation: 0.9255789163671457
Pair: COP-VLO, Correlation: 0.9091400644952994
Pair: COP-GWW, Correlation: 0.9023077487085577
Pair: ED-STZ, Correlation: 0.9406122061023607
Pair: ED-COO, Correlation: 0.9136950994744266
Pair: ED-CSX, Correlation: 0.9208263429367597
Pair: ED-DRI, Correlation: 0.9364945124161282
Pair: ED-DLR, Correlation: 0.9011153901439706
Pair: ED-DTE, Correlation: 0.9669501183489031
Pair: ED-DUK, Correlation: 0.9667180589735425
Pair: ED-EIX, Correlation: 0.9401514555084773
Pair: ED-ELV, Correlation: 0.9412464540242025
Pair: ED-ETR, Correlation: 0.9486999681568496
Pair: ED-EFX, Correlation: 0.9049702136640806
Pair: ED-EQIX, Correlation: 0.9270405785476794
Pair: ED-EG, Correlation: 0.9572897761024912
Pair: ED-EVRG, Correlation: 0.9463393014976497
Pair: ED-EXC, Correlation: 0.9100157796268376
Pair: ED-EXR, Correlation: 0.9208473485947165
Pair: ED-FDS, Correlation: 0.9279164811405618
Pair: ED-FI, Correlation: 0.938398870676715
Pair: ED-GD, Correlation: 0.9487193497417601
Pair: ED-GIS, Correlation: 0.9108696909628665
Pair: ED-GPC, Correlation: 0.9198665278282437
Pair: ED-GL, Correlation: 0.9376585156801991
Pair: ED-HIG, Correlation: 0.9149428226057
Pair: ED-HCA, Correlation: 0.9044923730179413
Pair: ED-HSY, Correlation: 0.9247805924452863
Pair: ED-HOLX, Correlation: 0.9190885244916973
Pair: ED-HD, Correlation: 0.9310712926479519
Pair: ED-HON, Correlation: 0.9316000264405558
Pair: ED-HII, Correlation: 0.9100442895828962
Pair: ED-IEX, Correlation: 0.9285841352415418
Pair: ED-ITW, Correlation: 0.9404613433815576
Pair: ED-ICE, Correlation: 0.9274887988345122
Pair: ED-JBHT, Correlation: 0.9079818530124079
Pair: ED-JKHY, Correlation: 0.9359806226414469
Pair: ED-JNJ, Correlation: 0.9465982568681752
Pair: ED-JPM, Correlation: 0.9097113914966559
Pair: ED-KDP, Correlation: 0.9296696532459506
Pair: ED-KMB, Correlation: 0.923843114868927
Pair: ED-LHX, Correlation: 0.9360680149566878
Pair: ED-LDOS, Correlation: 0.9135930716177215
Pair: ED-LYV, Correlation: 0.9043188213980138
Pair: ED-LMT, Correlation: 0.9769310326168504
Pair: ED-LOW, Correlation: 0.9100718145956727
Pair: ED-MAR, Correlation: 0.9360679416701218
Pair: ED-MMC, Correlation: 0.9396945776266912
Pair: ED-MLM, Correlation: 0.9069835131017938
Pair: ED-MAS, Correlation: 0.9235552346064403
Pair: ED-MA, Correlation: 0.9266505707982842
Pair: ED-MCD, Correlation: 0.9565833290097578
Pair: ED-MRK, Correlation: 0.9391647182115671
Pair: ED-MTD, Correlation: 0.9008351831349309
Pair: ED-MCHP, Correlation: 0.9100051227738581
Pair: ED-MDLZ, Correlation: 0.9546001507733223
Pair: ED-MNST, Correlation: 0.9391719272558868
Pair: ED-MCO, Correlation: 0.908259935882218
Pair: ED-MSI, Correlation: 0.9048667759544465
Pair: ED-NDAQ, Correlation: 0.9166722743449124
Pair: ED-NEE, Correlation: 0.9092359754380094
Pair: ED-NI, Correlation: 0.9737232899588287
Pair: ED-NDSN, Correlation: 0.925937253834339
Pair: ED-NOC, Correlation: 0.9766161302710052
Pair: ED-NVR, Correlation: 0.9160838507081706
Pair: ED-ORLY, Correlation: 0.9180119199604647
Pair: ED-PKG, Correlation: 0.9333085025411758
Pair: ED-PAYX, Correlation: 0.9449824058347899
Pair: ED-PEP, Correlation: 0.961432637373182
Pair: ED-PM, Correlation: 0.9209335934184603
Pair: ED-PNW, Correlation: 0.9373449853482004
Pair: ED-PFG, Correlation: 0.9192545984715514
Pair: ED-PG, Correlation: 0.9283828111192096
Pair: ED-PLD, Correlation: 0.9037910520298525
Pair: ED-PEG, Correlation: 0.9595204168793761
Pair: ED-PSA, Correlation: 0.9359359272374308
Pair: ED-DGX, Correlation: 0.9355446279624462
Pair: ED-RJF, Correlation: 0.9158697074037978
Pair: ED-RTX, Correlation: 0.9309871162769107
Pair: ED-O, Correlation: 0.9379179062837424
Pair: ED-RSG, Correlation: 0.9290358751961634
Pair: ED-ROL, Correlation: 0.9326273503619567
Pair: ED-ROP, Correlation: 0.9376916921103523
Pair: ED-ROST, Correlation: 0.9260830184547229
Pair: ED-SPGI, Correlation: 0.9099937020788257
Pair: ED-SRE, Correlation: 0.9705023110728005
Pair: ED-SHW, Correlation: 0.9107582495557115
Pair: ED-SNA, Correlation: 0.9246118604233747
Pair: ED-SO, Correlation: 0.9538844410376451
Pair: ED-STE, Correlation: 0.9165768057331818
Pair: ED-SYK, Correlation: 0.9385001174913475
Pair: ED-SYY, Correlation: 0.9411405357309
Pair: ED-TMUS, Correlation: 0.9204058176762712
Pair: ED-TEL, Correlation: 0.9141736970566322
Pair: ED-TDY, Correlation: 0.9058088987747297
Pair: ED-TXN, Correlation: 0.9226885094989805
Pair: ED-TMO, Correlation: 0.9014914808504014
Pair: ED-TJX, Correlation: 0.9293348219549264
Pair: ED-TRV, Correlation: 0.9550648229733945
Pair: ED-UDR, Correlation: 0.9000393061638539
Pair: ED-ULTA, Correlation: 0.9384622662679903
Pair: ED-UNP, Correlation: 0.9254606634063698
Pair: ED-UNH, Correlation: 0.9416729485649044
Pair: ED-VLO, Correlation: 0.9166050927896384
Pair: ED-VRSK, Correlation: 0.9225785039939216
Pair: ED-VRTX, Correlation: 0.9159527401139013
Pair: ED-V, Correlation: 0.9375805235354754
Pair: ED-VMC, Correlation: 0.9318986148716253
Pair: ED-WRB, Correlation: 0.9420478084804486
Pair: ED-WM, Correlation: 0.9446756645667939
Pair: ED-WAT, Correlation: 0.9098066215946543
Pair: ED-WEC, Correlation: 0.9468957749516871
Pair: ED-WELL, Correlation: 0.905385571797174
Pair: ED-WTW, Correlation: 0.934540435372662
Pair: ED-XEL, Correlation: 0.9367706926917639
Pair: ED-YUM, Correlation: 0.9511328974015246
Pair: STZ-COO, Correlation: 0.9324880553054032
Pair: STZ-GLW, Correlation: 0.9079085257002931
Pair: STZ-CPAY, Correlation: 0.9000485811049017
Pair: STZ-CSX, Correlation: 0.9161850866850695
Pair: STZ-DRI, Correlation: 0.9200705492681328
Pair: STZ-DLR, Correlation: 0.9060224160854231
Pair: STZ-DPZ, Correlation: 0.9147454601739109
Pair: STZ-DTE, Correlation: 0.9579883052800714
Pair: STZ-DUK, Correlation: 0.9333064169742232
Pair: STZ-ECL, Correlation: 0.9054420299641831
Pair: STZ-EIX, Correlation: 0.9187416824153087
Pair: STZ-EA, Correlation: 0.9669243192190744
Pair: STZ-ELV, Correlation: 0.9076209652260371
Pair: STZ-EFX, Correlation: 0.9101172967740438
Pair: STZ-EQIX, Correlation: 0.9172742198573594
Pair: STZ-ESS, Correlation: 0.9124394708592697
Pair: STZ-EG, Correlation: 0.9291091322223912
Pair: STZ-EVRG, Correlation: 0.95224661677671
Pair: STZ-EXR, Correlation: 0.9066964066709317
Pair: STZ-FDX, Correlation: 0.9115579422992072
Pair: STZ-FI, Correlation: 0.9154273223644155
Pair: STZ-GD, Correlation: 0.9460112264731313
Pair: STZ-GL, Correlation: 0.9585366075809655
Pair: STZ-HSIC, Correlation: 0.9324979486574048
Pair: STZ-HOLX, Correlation: 0.9171909215419561
Pair: STZ-HD, Correlation: 0.9226132146926586
Pair: STZ-HON, Correlation: 0.9515239261513261
Pair: STZ-HUM, Correlation: 0.9149594294137505
Pair: STZ-HBAN, Correlation: 0.9372227703066853
Pair: STZ-HII, Correlation: 0.9554677015724378
Pair: STZ-IEX, Correlation: 0.9398977713631146
Pair: STZ-ITW, Correlation: 0.9354779096069692
Pair: STZ-ICE, Correlation: 0.9171423111672378
Pair: STZ-IPG, Correlation: 0.9077239852366924
Pair: STZ-JBHT, Correlation: 0.9176520797346135
Pair: STZ-JKHY, Correlation: 0.9453213132279055
Pair: STZ-JNJ, Correlation: 0.9657599779036646
Pair: STZ-KDP, Correlation: 0.9165927348685379
Pair: STZ-KMB, Correlation: 0.9334054422732431
Pair: STZ-LHX, Correlation: 0.9282406328322105
Pair: STZ-LH, Correlation: 0.9127652870454743
Pair: STZ-LMT, Correlation: 0.9498358548676817
Pair: STZ-LYB, Correlation: 0.9277270721734439
Pair: STZ-MTB, Correlation: 0.9000638519211082
Pair: STZ-MAR, Correlation: 0.9172980115711848
Pair: STZ-MAS, Correlation: 0.9300133482145052
Pair: STZ-MCD, Correlation: 0.9151000353359566
Pair: STZ-MGM, Correlation: 0.9109348297136843
Pair: STZ-MCHP, Correlation: 0.9079344489088487
Pair: STZ-MDLZ, Correlation: 0.9326982076808102
Pair: STZ-MNST, Correlation: 0.948816202665009
Pair: STZ-NI, Correlation: 0.9658925457429782
Pair: STZ-NDSN, Correlation: 0.9135976168413682
Pair: STZ-NTRS, Correlation: 0.9173590118850116
Pair: STZ-NOC, Correlation: 0.9559830346960375
Pair: STZ-NXPI, Correlation: 0.9071017717085936
Pair: STZ-PKG, Correlation: 0.9236264721789462
Pair: STZ-PAYX, Correlation: 0.9108634751434989
Pair: STZ-PEP, Correlation: 0.9292551138263148
Pair: STZ-PNW, Correlation: 0.9385576459030341
Pair: STZ-PNC, Correlation: 0.920143007886042
Pair: STZ-PPG, Correlation: 0.9228383621247667
Pair: STZ-PPL, Correlation: 0.9014790439310406
Pair: STZ-PFG, Correlation: 0.9106695136237987
Pair: STZ-PRU, Correlation: 0.9092199466495021
Pair: STZ-PEG, Correlation: 0.9231964980914974
Pair: STZ-PSA, Correlation: 0.9118510449461302
Pair: STZ-DGX, Correlation: 0.9288925950245169
Pair: STZ-O, Correlation: 0.9303345735690723
Pair: STZ-RF, Correlation: 0.9148362262416468
Pair: STZ-ROK, Correlation: 0.9104216673702515
Pair: STZ-ROL, Correlation: 0.9139176387450173
Pair: STZ-ROP, Correlation: 0.9257667557960501
Pair: STZ-ROST, Correlation: 0.929038341002725
Pair: STZ-SRE, Correlation: 0.939248757971537
Pair: STZ-SJM, Correlation: 0.9066171194858549
Pair: STZ-SNA, Correlation: 0.919580343468236
Pair: STZ-SBUX, Correlation: 0.9150256891619835
Pair: STZ-SYK, Correlation: 0.915911893786666
Pair: STZ-SYY, Correlation: 0.9515668049122754
Pair: STZ-TTWO, Correlation: 0.9030489175037109
Pair: STZ-TEL, Correlation: 0.935374716474539
Pair: STZ-TXN, Correlation: 0.9146493232781981
Pair: STZ-TXT, Correlation: 0.9107006837320618
Pair: STZ-TRV, Correlation: 0.9284571563937751
Pair: STZ-TSN, Correlation: 0.9045948717436421
Pair: STZ-UDR, Correlation: 0.9150362965207821
Pair: STZ-ULTA, Correlation: 0.92759183200349
Pair: STZ-UNP, Correlation: 0.9178202583528505
Pair: STZ-UNH, Correlation: 0.9021541857620937
Pair: STZ-V, Correlation: 0.9226246296441036
Pair: STZ-VMC, Correlation: 0.923582567840647
Pair: STZ-WAT, Correlation: 0.9145584639803901
Pair: STZ-WEC, Correlation: 0.9243272960779741
Pair: STZ-WY, Correlation: 0.903748805912771
Pair: STZ-WTW, Correlation: 0.9051752637102707
Pair: STZ-XEL, Correlation: 0.921064853354864
Pair: STZ-XYL, Correlation: 0.9000023533579987
Pair: STZ-YUM, Correlation: 0.9264583369868681
Pair: CEG-COST, Correlation: 0.9331882844912642
Pair: CEG-CMI, Correlation: 0.9246282432657104
Pair: CEG-DECK, Correlation: 0.9359683547303012
Pair: CEG-DELL, Correlation: 0.9294923364021831
Pair: CEG-FANG, Correlation: 0.9123943849421946
Pair: CEG-ETN, Correlation: 0.9557034309911839
Pair: CEG-ECL, Correlation: 0.9005046570245739
Pair: CEG-ERIE, Correlation: 0.9316425643459703
Pair: CEG-FICO, Correlation: 0.9322611716516344
Pair: CEG-FI, Correlation: 0.9274595244945301
Pair: CEG-IT, Correlation: 0.9023449938376709
Pair: CEG-GE, Correlation: 0.9528063776237575
Pair: CEG-GD, Correlation: 0.9246139864263384
Pair: CEG-GDDY, Correlation: 0.919913568644714
Pair: CEG-GS, Correlation: 0.9088371604112377
Pair: CEG-HIG, Correlation: 0.9447283561448274
Pair: CEG-HLT, Correlation: 0.9250479572333506
Pair: CEG-HWM, Correlation: 0.9515811952716791
Pair: CEG-HUBB, Correlation: 0.93207257515311
Pair: CEG-IBM, Correlation: 0.9276062383915138
Pair: CEG-IR, Correlation: 0.9338224530213063
Pair: CEG-IRM, Correlation: 0.9368434530409218
Pair: CEG-JPM, Correlation: 0.9253783615861378
Pair: CEG-KKR, Correlation: 0.9291107035240624
Pair: CEG-KLAC, Correlation: 0.9091413150353691
Pair: CEG-LDOS, Correlation: 0.910349477148733
Pair: CEG-LII, Correlation: 0.9382058442434777
Pair: CEG-LLY, Correlation: 0.9354359179638859
Pair: CEG-MMC, Correlation: 0.907101236911512
Pair: CEG-META, Correlation: 0.9017964834364656
Pair: CEG-MSI, Correlation: 0.9431175705995861
Pair: CEG-NFLX, Correlation: 0.9023238702459355
Pair: CEG-NRG, Correlation: 0.9528267853413908
Pair: CEG-NVDA, Correlation: 0.9518227563682428
Pair: CEG-NVR, Correlation: 0.9062674662986366
Pair: CEG-OKE, Correlation: 0.9194844604629552
Pair: CEG-PH, Correlation: 0.9360136479251693
Pair: CEG-PGR, Correlation: 0.9580133875916037
Pair: CEG-PHM, Correlation: 0.9151897109600229
Pair: CEG-PWR, Correlation: 0.9583627405648344
Pair: CEG-RL, Correlation: 0.9181809704893794
Pair: CEG-RSG, Correlation: 0.9432876535109496
Pair: CEG-RCL, Correlation: 0.9041264492697256
Pair: CEG-TMUS, Correlation: 0.9008078365879852
Pair: CEG-TRGP, Correlation: 0.9323286380190646
Pair: CEG-TJX, Correlation: 0.9117459065482912
Pair: CEG-TSCO, Correlation: 0.9126249225233528
Pair: CEG-TT, Correlation: 0.9699103755251522
Pair: CEG-TDG, Correlation: 0.9448071724199673
Pair: CEG-URI, Correlation: 0.9351895795452675
Pair: CEG-VRTX, Correlation: 0.9098664158140597
Pair: CEG-VST, Correlation: 0.9559173272240167
Pair: CEG-GWW, Correlation: 0.9193033008488074
Pair: CEG-WAB, Correlation: 0.9671367437376394
Pair: CEG-WMT, Correlation: 0.9302008408341378
Pair: CEG-WM, Correlation: 0.9300671157302316
Pair: CEG-WMB, Correlation: 0.9209421187487299
Pair: COO-GLW, Correlation: 0.9341958463277861
Pair: COO-CPAY, Correlation: 0.9282381233776851
Pair: COO-CSGP, Correlation: 0.9513181571894811
Pair: COO-CCI, Correlation: 0.9251750250412419
Pair: COO-CSX, Correlation: 0.9639941867332574
Pair: COO-CMI, Correlation: 0.9088994784348201
Pair: COO-DHR, Correlation: 0.934133558669126
Pair: COO-DRI, Correlation: 0.9377119647306468
Pair: COO-DLR, Correlation: 0.9468854955186569
Pair: COO-DFS, Correlation: 0.9147886726127737
Pair: COO-DPZ, Correlation: 0.9620895679520628
Pair: COO-DOV, Correlation: 0.940086377655076
Pair: COO-DTE, Correlation: 0.9672062394824988
Pair: COO-DUK, Correlation: 0.957192690617099
Pair: COO-EBAY, Correlation: 0.9460171890802365
Pair: COO-ECL, Correlation: 0.9662129196275038
Pair: COO-EW, Correlation: 0.9440359534944278
Pair: COO-EA, Correlation: 0.9318025059213226
Pair: COO-ELV, Correlation: 0.9164039118401599
Pair: COO-ETR, Correlation: 0.934199779860535
Pair: COO-EFX, Correlation: 0.9436447975451921
Pair: COO-EQIX, Correlation: 0.9635004389705604
Pair: COO-EQR, Correlation: 0.9209909899810038
Pair: COO-ESS, Correlation: 0.9399630072085198
Pair: COO-EVRG, Correlation: 0.9471821678457066
Pair: COO-ES, Correlation: 0.9388574195230405
Pair: COO-EXPD, Correlation: 0.9225999185354663
Pair: COO-EXR, Correlation: 0.9320444879816986
Pair: COO-FDS, Correlation: 0.9286986665404687
Pair: COO-FITB, Correlation: 0.9081566719511472
Pair: COO-FI, Correlation: 0.9467956416792161
Pair: COO-GRMN, Correlation: 0.9150672878248446
Pair: COO-GEN, Correlation: 0.911312953188767
Pair: COO-GL, Correlation: 0.9363538058028774
Pair: COO-HOLX, Correlation: 0.947621301599636
Pair: COO-HD, Correlation: 0.958075366117481
Pair: COO-HON, Correlation: 0.9796450956991791
Pair: COO-HUM, Correlation: 0.916537111781782
Pair: COO-HBAN, Correlation: 0.9151959479405489
Pair: COO-IEX, Correlation: 0.9695315624780276
Pair: COO-IDXX, Correlation: 0.9421570192742126
Pair: COO-ITW, Correlation: 0.9569267523605406
Pair: COO-PODD, Correlation: 0.9026941005397084
Pair: COO-ICE, Correlation: 0.9644201034361228
Pair: COO-IPG, Correlation: 0.910374482550765
Pair: COO-INTU, Correlation: 0.9138269215090977
Pair: COO-ISRG, Correlation: 0.9121369270823868
Pair: COO-IQV, Correlation: 0.9565596825881768
Pair: COO-JBHT, Correlation: 0.9313813675706031
Pair: COO-JKHY, Correlation: 0.9541466241086483
Pair: COO-J, Correlation: 0.9015947920192795
Pair: COO-JNJ, Correlation: 0.9672471479412685
Pair: COO-JCI, Correlation: 0.9034927411353812
Pair: COO-JPM, Correlation: 0.9254879786385612
Pair: COO-KDP, Correlation: 0.9547720285294594
Pair: COO-KEYS, Correlation: 0.9136009392916294
Pair: COO-KMB, Correlation: 0.9368654363627771
Pair: COO-LHX, Correlation: 0.9597853883235518
Pair: COO-LH, Correlation: 0.9500529416736039
Pair: COO-LDOS, Correlation: 0.9149094344988352
Pair: COO-LYV, Correlation: 0.9500728370329372
Pair: COO-LMT, Correlation: 0.9381540340850393
Pair: COO-LOW, Correlation: 0.9260864334115442
Pair: COO-MAR, Correlation: 0.9017060409941732
Pair: COO-MMC, Correlation: 0.9092390478486437
Pair: COO-MAS, Correlation: 0.9476010629713937
Pair: COO-MA, Correlation: 0.9536290701949443
Pair: COO-MKC, Correlation: 0.9543813573522515
Pair: COO-MCD, Correlation: 0.9409908115712212
Pair: COO-MDT, Correlation: 0.9397850425723677
Pair: COO-MTD, Correlation: 0.9459297109080324
Pair: COO-MCHP, Correlation: 0.9347201512289072
Pair: COO-MU, Correlation: 0.9029576529485315
Pair: COO-MAA, Correlation: 0.9342207468458935
Pair: COO-MDLZ, Correlation: 0.9470294919522341
Pair: COO-MNST, Correlation: 0.9429775012476855
Pair: COO-MCO, Correlation: 0.9492164073060584
Pair: COO-MSCI, Correlation: 0.9142016039698173
Pair: COO-NDAQ, Correlation: 0.9347766925203934
Pair: COO-NFLX, Correlation: 0.9181357409281086
Pair: COO-NEE, Correlation: 0.9521116661721416
Pair: COO-NKE, Correlation: 0.9362926834810726
Pair: COO-NI, Correlation: 0.9299255714242705
Pair: COO-NDSN, Correlation: 0.9508327473701196
Pair: COO-NSC, Correlation: 0.9651496778357277
Pair: COO-NTRS, Correlation: 0.9174219622665211
Pair: COO-NOC, Correlation: 0.924404198872668
Pair: COO-NVR, Correlation: 0.9035452183200916
Pair: COO-NXPI, Correlation: 0.9170091057289599
Pair: COO-PKG, Correlation: 0.9240492438623837
Pair: COO-PAYX, Correlation: 0.9333241736079965
Pair: COO-PEP, Correlation: 0.9388870148760393
Pair: COO-PNW, Correlation: 0.9166315510614186
Pair: COO-PNC, Correlation: 0.9408105531306307
Pair: COO-POOL, Correlation: 0.932783194845415
Pair: COO-PPG, Correlation: 0.9385546615797387
Pair: COO-PG, Correlation: 0.9357696631473758
Pair: COO-PLD, Correlation: 0.9423024289310187
Pair: COO-PEG, Correlation: 0.9432574945211245
Pair: COO-PTC, Correlation: 0.9155041908880259
Pair: COO-PSA, Correlation: 0.9135767947856073
Pair: COO-DGX, Correlation: 0.9467186857584363
Pair: COO-O, Correlation: 0.94374426756913
Pair: COO-RF, Correlation: 0.9121991328469147
Pair: COO-RMD, Correlation: 0.9376096578703792
Pair: COO-RVTY, Correlation: 0.9386591241268704
Pair: COO-ROK, Correlation: 0.9522689093238096
Pair: COO-ROL, Correlation: 0.9396261168636735
Pair: COO-ROP, Correlation: 0.9674797024634711
Pair: COO-ROST, Correlation: 0.9551316180891946
Pair: COO-SPGI, Correlation: 0.9555316519061549
Pair: COO-CRM, Correlation: 0.9535311367985445
Pair: COO-SBAC, Correlation: 0.9344132135279882
Pair: COO-SRE, Correlation: 0.9391940393012246
Pair: COO-NOW, Correlation: 0.9097108678331159
Pair: COO-SHW, Correlation: 0.9529498214265661
Pair: COO-SWKS, Correlation: 0.9024353913564845
Pair: COO-SO, Correlation: 0.9047647246470396
Pair: COO-SBUX, Correlation: 0.9646384988335167
Pair: COO-STE, Correlation: 0.9577553732908751
Pair: COO-SYK, Correlation: 0.950895988194771
Pair: COO-SYY, Correlation: 0.9531939382261347
Pair: COO-TMUS, Correlation: 0.9157333327174454
Pair: COO-TROW, Correlation: 0.9201365588183794
Pair: COO-TTWO, Correlation: 0.9482128567238054
Pair: COO-TEL, Correlation: 0.9571858746554806
Pair: COO-TDY, Correlation: 0.9624416850595373
Pair: COO-TER, Correlation: 0.9119729810198435
Pair: COO-TXN, Correlation: 0.957406908558693
Pair: COO-TMO, Correlation: 0.9376520577382075
Pair: COO-TJX, Correlation: 0.9057466637854216
Pair: COO-TRV, Correlation: 0.9112444931576628
Pair: COO-TYL, Correlation: 0.9567670608878992
Pair: COO-UDR, Correlation: 0.9494539037525715
Pair: COO-ULTA, Correlation: 0.9032788181607525
Pair: COO-UNP, Correlation: 0.9667641969379371
Pair: COO-UPS, Correlation: 0.9076347859868162
Pair: COO-UNH, Correlation: 0.9147773604544569
Pair: COO-VRSN, Correlation: 0.9595506876044626
Pair: COO-VRSK, Correlation: 0.9399667544965626
Pair: COO-V, Correlation: 0.9655940117348746
Pair: COO-VMC, Correlation: 0.9122434371492084
Pair: COO-WM, Correlation: 0.9194691312050621
Pair: COO-WAT, Correlation: 0.9517419270643799
Pair: COO-WEC, Correlation: 0.9627500391137698
Pair: COO-WST, Correlation: 0.9113966891846664
Pair: COO-WTW, Correlation: 0.9561497332389587
Pair: COO-WDAY, Correlation: 0.9500775718809887
Pair: COO-XEL, Correlation: 0.9595584339608806
Pair: COO-XYL, Correlation: 0.9480018441215519
Pair: COO-YUM, Correlation: 0.9614713047109665
Pair: COO-ZBRA, Correlation: 0.9068677447728374
Pair: COO-ZTS, Correlation: 0.9605829411286291
Pair: CPRT-CSGP, Correlation: 0.9216746004741398
Pair: CPRT-COST, Correlation: 0.9738749139393821
Pair: CPRT-CSX, Correlation: 0.9375952331790891
Pair: CPRT-CMI, Correlation: 0.9534242270699094
Pair: CPRT-DHR, Correlation: 0.9477694115571479
Pair: CPRT-DRI, Correlation: 0.9479212673665491
Pair: CPRT-DECK, Correlation: 0.9366181047161214
Pair: CPRT-DE, Correlation: 0.9475123828819931
Pair: CPRT-DXCM, Correlation: 0.9092201422542919
Pair: CPRT-DFS, Correlation: 0.9077965269673052
Pair: CPRT-DPZ, Correlation: 0.9156803260543355
Pair: CPRT-DOV, Correlation: 0.9680112625783841
Pair: CPRT-DHI, Correlation: 0.9738079516879828
Pair: CPRT-DUK, Correlation: 0.9084896819571916
Pair: CPRT-ETN, Correlation: 0.9528649651176078
Pair: CPRT-ELV, Correlation: 0.9434708347865144
Pair: CPRT-EMR, Correlation: 0.9569039052940735
Pair: CPRT-ETR, Correlation: 0.9322457492804554
Pair: CPRT-EFX, Correlation: 0.9251076254785651
Pair: CPRT-EQIX, Correlation: 0.9395892592432284
Pair: CPRT-ERIE, Correlation: 0.9417842646284387
Pair: CPRT-EG, Correlation: 0.9206302950318156
Pair: CPRT-EXPD, Correlation: 0.9645879165106933
Pair: CPRT-FDS, Correlation: 0.9560618437631746
Pair: CPRT-FICO, Correlation: 0.916735779477771
Pair: CPRT-FAST, Correlation: 0.9827635044968451
Pair: CPRT-FI, Correlation: 0.9362487311825977
Pair: CPRT-FTNT, Correlation: 0.9518261799210513
Pair: CPRT-GRMN, Correlation: 0.9535526337703263
Pair: CPRT-IT, Correlation: 0.9622066956853867
Pair: CPRT-GS, Correlation: 0.9301858375746431
Pair: CPRT-HIG, Correlation: 0.9213890000051075
Pair: CPRT-HCA, Correlation: 0.9667936799585231
Pair: CPRT-HSY, Correlation: 0.9042605623790155
Pair: CPRT-HLT, Correlation: 0.9684066847204413
Pair: CPRT-HOLX, Correlation: 0.9209726055951113
Pair: CPRT-HD, Correlation: 0.9562896550355924
Pair: CPRT-HON, Correlation: 0.910621056136648
Pair: CPRT-HUBB, Correlation: 0.9490855220808717
Pair: CPRT-IEX, Correlation: 0.9251472322151225
Pair: CPRT-IDXX, Correlation: 0.9291850533407912
Pair: CPRT-ITW, Correlation: 0.9568842569368317
Pair: CPRT-IR, Correlation: 0.9537563323900148
Pair: CPRT-ICE, Correlation: 0.9536828161616603
Pair: CPRT-INTU, Correlation: 0.981273541917719
Pair: CPRT-ISRG, Correlation: 0.9739934884559425
Pair: CPRT-IQV, Correlation: 0.9209084316172848
Pair: CPRT-JBHT, Correlation: 0.9212137662529656
Pair: CPRT-JBL, Correlation: 0.9443225210763291
Pair: CPRT-J, Correlation: 0.9619127283589594
Pair: CPRT-JCI, Correlation: 0.9035270827651117
Pair: CPRT-JPM, Correlation: 0.9600723189997982
Pair: CPRT-KDP, Correlation: 0.9054657986680463
Pair: CPRT-KKR, Correlation: 0.9364239069887431
Pair: CPRT-KLAC, Correlation: 0.9659553639051122
Pair: CPRT-LH, Correlation: 0.9204703867545205
Pair: CPRT-LRCX, Correlation: 0.9782450711752266
Pair: CPRT-LDOS, Correlation: 0.9427496016617639
Pair: CPRT-LEN, Correlation: 0.9545563102380469
Pair: CPRT-LII, Correlation: 0.9453958078049209
Pair: CPRT-LLY, Correlation: 0.9120645500099533
Pair: CPRT-LIN, Correlation: 0.9896816054499888
Pair: CPRT-LYV, Correlation: 0.9222396941841116
Pair: CPRT-LMT, Correlation: 0.9109317684647842
Pair: CPRT-LOW, Correlation: 0.9659575915102925
Pair: CPRT-LULU, Correlation: 0.9251962289715605
Pair: CPRT-MAR, Correlation: 0.9388783541936344
Pair: CPRT-MMC, Correlation: 0.9787344546203249
Pair: CPRT-MLM, Correlation: 0.9692388231851334
Pair: CPRT-MAS, Correlation: 0.9400270837855939
Pair: CPRT-MA, Correlation: 0.970436546174296
Pair: CPRT-MCD, Correlation: 0.9581136096425825
Pair: CPRT-MRK, Correlation: 0.9486533038541574
Pair: CPRT-META, Correlation: 0.9063299677244506
Pair: CPRT-MET, Correlation: 0.9102428921928809
Pair: CPRT-MTD, Correlation: 0.9250501638384844
Pair: CPRT-MCHP, Correlation: 0.9611057465311355
Pair: CPRT-MU, Correlation: 0.9292865706230018
Pair: CPRT-MSFT, Correlation: 0.9923676805147417
Pair: CPRT-MOH, Correlation: 0.9562714089619708
Pair: CPRT-MDLZ, Correlation: 0.933550313965163
Pair: CPRT-MPWR, Correlation: 0.9699320592124375
Pair: CPRT-MNST, Correlation: 0.921406669900813
Pair: CPRT-MCO, Correlation: 0.970940580557019
Pair: CPRT-MS, Correlation: 0.9452200423954092
Pair: CPRT-MSI, Correlation: 0.978956796739886
Pair: CPRT-MSCI, Correlation: 0.960016697219909
Pair: CPRT-NDAQ, Correlation: 0.9489363065922224
Pair: CPRT-NTAP, Correlation: 0.9087188100198456
Pair: CPRT-NEE, Correlation: 0.9040039670029376
Pair: CPRT-NDSN, Correlation: 0.954700447731283
Pair: CPRT-NSC, Correlation: 0.9156053002807446
Pair: CPRT-NOC, Correlation: 0.9023993040901841
Pair: CPRT-NUE, Correlation: 0.9129784240156575
Pair: CPRT-NVR, Correlation: 0.9765975967643747
Pair: CPRT-NXPI, Correlation: 0.9408561371862274
Pair: CPRT-ORLY, Correlation: 0.9706644100023486
Pair: CPRT-ODFL, Correlation: 0.9802181873930542
Pair: CPRT-ON, Correlation: 0.9243952357416195
Pair: CPRT-ORCL, Correlation: 0.9568368010427609
Pair: CPRT-OTIS, Correlation: 0.9169633731197716
Pair: CPRT-PCAR, Correlation: 0.9587494277254636
Pair: CPRT-PKG, Correlation: 0.9370679625578827
Pair: CPRT-PANW, Correlation: 0.9465608268384227
Pair: CPRT-PH, Correlation: 0.9639998257073399
Pair: CPRT-PAYX, Correlation: 0.954977217031182
Pair: CPRT-PEP, Correlation: 0.9381437727208858
Pair: CPRT-POOL, Correlation: 0.919138624801563
Pair: CPRT-PG, Correlation: 0.9655794467420741
Pair: CPRT-PGR, Correlation: 0.9660399242982577
Pair: CPRT-PLD, Correlation: 0.9327275992586841
Pair: CPRT-PEG, Correlation: 0.9340458232423222
Pair: CPRT-PTC, Correlation: 0.966395792559487
Pair: CPRT-PHM, Correlation: 0.9430707132806854
Pair: CPRT-PWR, Correlation: 0.9252029556399922
Pair: CPRT-QCOM, Correlation: 0.9337938128425869
Pair: CPRT-DGX, Correlation: 0.9242506389007586
Pair: CPRT-RJF, Correlation: 0.9460728682502889
Pair: CPRT-RSG, Correlation: 0.9810534502284458
Pair: CPRT-RMD, Correlation: 0.90577850275947
Pair: CPRT-ROK, Correlation: 0.9343762382039934
Pair: CPRT-ROL, Correlation: 0.9599262946168059
Pair: CPRT-ROP, Correlation: 0.958978551769528
Pair: CPRT-ROST, Correlation: 0.916150778966797
Pair: CPRT-SPGI, Correlation: 0.9636602514433913
Pair: CPRT-CRM, Correlation: 0.9376530831171462
Pair: CPRT-STX, Correlation: 0.9119505813778079
Pair: CPRT-NOW, Correlation: 0.97509666804134
Pair: CPRT-SHW, Correlation: 0.9622985096346455
Pair: CPRT-SNA, Correlation: 0.9172838830045468
Pair: CPRT-SO, Correlation: 0.9532522902713625
Pair: CPRT-STLD, Correlation: 0.9289678947331438
Pair: CPRT-STE, Correlation: 0.9515599372076193
Pair: CPRT-SYK, Correlation: 0.9714705711822281
Pair: CPRT-SNPS, Correlation: 0.9842381899859312
Pair: CPRT-TMUS, Correlation: 0.9624910812476432
Pair: CPRT-TEL, Correlation: 0.9365763923561221
Pair: CPRT-TDY, Correlation: 0.9329646583485477
Pair: CPRT-TER, Correlation: 0.9315605874530936
Pair: CPRT-TXN, Correlation: 0.9513724017250801
Pair: CPRT-TPL, Correlation: 0.9072099857433691
Pair: CPRT-TMO, Correlation: 0.946698278446389
Pair: CPRT-TJX, Correlation: 0.9658282734577281
Pair: CPRT-TSCO, Correlation: 0.9638305404759607
Pair: CPRT-TT, Correlation: 0.9648252899326697
Pair: CPRT-TDG, Correlation: 0.9749561612344868
Pair: CPRT-TRV, Correlation: 0.9238582240063801
Pair: CPRT-TYL, Correlation: 0.9338474250788927
Pair: CPRT-UNP, Correlation: 0.9403135023136754
Pair: CPRT-URI, Correlation: 0.9471600664390523
Pair: CPRT-UNH, Correlation: 0.9535389189060592
Pair: CPRT-VRSK, Correlation: 0.9751729027353043
Pair: CPRT-VRTX, Correlation: 0.9449071978277774
Pair: CPRT-V, Correlation: 0.9590685657209588
Pair: CPRT-VMC, Correlation: 0.9496141912652583
Pair: CPRT-WRB, Correlation: 0.9598221885300569
Pair: CPRT-GWW, Correlation: 0.9489660763541529
Pair: CPRT-WMT, Correlation: 0.9685789553632423
Pair: CPRT-WM, Correlation: 0.9766745046699298
Pair: CPRT-WAT, Correlation: 0.9047397214317517
Pair: CPRT-WST, Correlation: 0.936377647757049
Pair: CPRT-WTW, Correlation: 0.9547855611574971
Pair: CPRT-XYL, Correlation: 0.9476336115979592
Pair: CPRT-YUM, Correlation: 0.9472010137906746
Pair: CPRT-ZTS, Correlation: 0.9270516502333187
Pair: GLW-CSX, Correlation: 0.9467801660436339
Pair: GLW-CMI, Correlation: 0.9237171451583625
Pair: GLW-DHR, Correlation: 0.9180733339680799
Pair: GLW-DRI, Correlation: 0.9274473997139495
Pair: GLW-DLR, Correlation: 0.9223994210816273
Pair: GLW-DFS, Correlation: 0.918936571270799
Pair: GLW-DPZ, Correlation: 0.9246802625520293
Pair: GLW-DOV, Correlation: 0.9293228960699838
Pair: GLW-DTE, Correlation: 0.9390391682493073
Pair: GLW-DUK, Correlation: 0.9271785330934282
Pair: GLW-EBAY, Correlation: 0.9153176860996001
Pair: GLW-ECL, Correlation: 0.9083758244170314
Pair: GLW-EA, Correlation: 0.9161169332767567
Pair: GLW-ELV, Correlation: 0.9078390082027945
Pair: GLW-EMR, Correlation: 0.9177425314237788
Pair: GLW-ETR, Correlation: 0.9203027790690679
Pair: GLW-EFX, Correlation: 0.9173948935560224
Pair: GLW-EQIX, Correlation: 0.9165184213102919
Pair: GLW-EXPD, Correlation: 0.9210949587797936
Pair: GLW-EXR, Correlation: 0.9092336965083366
Pair: GLW-FDX, Correlation: 0.9091361571048622
Pair: GLW-FITB, Correlation: 0.9352102178840408
Pair: GLW-FI, Correlation: 0.9245209026790842
Pair: GLW-GRMN, Correlation: 0.915329693720356
Pair: GLW-GEN, Correlation: 0.9087204154729677
Pair: GLW-GS, Correlation: 0.9050940381486495
Pair: GLW-HOLX, Correlation: 0.9220971761012954
Pair: GLW-HD, Correlation: 0.9360706276367357
Pair: GLW-HON, Correlation: 0.9525164451887398
Pair: GLW-HPQ, Correlation: 0.9203429384189206
Pair: GLW-HBAN, Correlation: 0.9292502313273342
Pair: GLW-IEX, Correlation: 0.9380503952589132
Pair: GLW-IDXX, Correlation: 0.9087712564631375
Pair: GLW-ITW, Correlation: 0.9366181331966418
Pair: GLW-ICE, Correlation: 0.944408308528648
Pair: GLW-ISRG, Correlation: 0.9166600094006959
Pair: GLW-IQV, Correlation: 0.9056490027014044
Pair: GLW-JBHT, Correlation: 0.900222290360424
Pair: GLW-JKHY, Correlation: 0.9110038401273824
Pair: GLW-JNJ, Correlation: 0.9283535983189828
Pair: GLW-JPM, Correlation: 0.9362119760802392
Pair: GLW-KDP, Correlation: 0.9257554342148122
Pair: GLW-LHX, Correlation: 0.9346865751207453
Pair: GLW-LH, Correlation: 0.9358899088279758
Pair: GLW-LDOS, Correlation: 0.9212970441810622
Pair: GLW-LII, Correlation: 0.9058758946600325
Pair: GLW-LYV, Correlation: 0.9386143640062116
Pair: GLW-LMT, Correlation: 0.9173548810474221
Pair: GLW-LOW, Correlation: 0.9187486494854176
Pair: GLW-MAR, Correlation: 0.9072790457363127
Pair: GLW-MAS, Correlation: 0.9363791805459051
Pair: GLW-MA, Correlation: 0.9231373810131261
Pair: GLW-MCD, Correlation: 0.9126220118011955
Pair: GLW-MTD, Correlation: 0.931716894508714
Pair: GLW-MCHP, Correlation: 0.9221237936668153
Pair: GLW-MU, Correlation: 0.9136109715552276
Pair: GLW-MAA, Correlation: 0.9040435026427697
Pair: GLW-MNST, Correlation: 0.901184259880129
Pair: GLW-MCO, Correlation: 0.9254901471533533
Pair: GLW-MS, Correlation: 0.9232786007761387
Pair: GLW-NDAQ, Correlation: 0.9302566558054011
Pair: GLW-NFLX, Correlation: 0.9029897594916093
Pair: GLW-NEE, Correlation: 0.9228270335981646
Pair: GLW-NI, Correlation: 0.9004871961832961
Pair: GLW-NDSN, Correlation: 0.924045084333024
Pair: GLW-NSC, Correlation: 0.9462945125706641
Pair: GLW-NTRS, Correlation: 0.9123704573901319
Pair: GLW-NOC, Correlation: 0.9047505607840441
Pair: GLW-NVR, Correlation: 0.9083769490436869
Pair: GLW-NXPI, Correlation: 0.9139983297860778
Pair: GLW-PKG, Correlation: 0.9353522589751105
Pair: GLW-PAYX, Correlation: 0.9227822475045809
Pair: GLW-PEP, Correlation: 0.9021182401092417
Pair: GLW-PNC, Correlation: 0.9527777565435034
Pair: GLW-PG, Correlation: 0.9023560201890038
Pair: GLW-PLD, Correlation: 0.9046526410236814
Pair: GLW-PRU, Correlation: 0.9033759365344581
Pair: GLW-PEG, Correlation: 0.9450854324899894
Pair: GLW-PTC, Correlation: 0.9282289663770406
Pair: GLW-DGX, Correlation: 0.939414341717805
Pair: GLW-RJF, Correlation: 0.9036372940234189
Pair: GLW-RF, Correlation: 0.9466214133577128
Pair: GLW-RMD, Correlation: 0.9092543338337827
Pair: GLW-RVTY, Correlation: 0.9074657738185998
Pair: GLW-ROK, Correlation: 0.923372126085689
Pair: GLW-ROL, Correlation: 0.9350370870159584
Pair: GLW-ROP, Correlation: 0.9287449197022398
Pair: GLW-ROST, Correlation: 0.9150803509062274
Pair: GLW-SPGI, Correlation: 0.9295023955167631
Pair: GLW-CRM, Correlation: 0.9147475594580674
Pair: GLW-SHW, Correlation: 0.931982308573636
Pair: GLW-STE, Correlation: 0.9219414451260978
Pair: GLW-SYK, Correlation: 0.9353474300539062
Pair: GLW-SYY, Correlation: 0.9326620257554772
Pair: GLW-TMUS, Correlation: 0.9301751228495277
Pair: GLW-TTWO, Correlation: 0.9217729523109934
Pair: GLW-TEL, Correlation: 0.9484961118810231
Pair: GLW-TDY, Correlation: 0.9174590561523666
Pair: GLW-TER, Correlation: 0.9044771058841111
Pair: GLW-TXN, Correlation: 0.9545269011864526
Pair: GLW-TMO, Correlation: 0.9132923572247448
Pair: GLW-TRV, Correlation: 0.9101617364014287
Pair: GLW-TYL, Correlation: 0.9283834993135374
Pair: GLW-UDR, Correlation: 0.9016478629674208
Pair: GLW-UNP, Correlation: 0.9341154885590528
Pair: GLW-UNH, Correlation: 0.9116505781259626
Pair: GLW-VRSK, Correlation: 0.902223398023029
Pair: GLW-V, Correlation: 0.9286699566481236
Pair: GLW-VMC, Correlation: 0.9083199890635583
Pair: GLW-WM, Correlation: 0.9148469777662845
Pair: GLW-WAT, Correlation: 0.9401343468250007
Pair: GLW-WEC, Correlation: 0.9062105047693705
Pair: GLW-WTW, Correlation: 0.9332738646733808
Pair: GLW-XEL, Correlation: 0.9088995566464378
Pair: GLW-XYL, Correlation: 0.9412698262897656
Pair: GLW-YUM, Correlation: 0.9221127047276639
Pair: CPAY-DTE, Correlation: 0.90244150776651
Pair: CPAY-ECL, Correlation: 0.9577509255437213
Pair: CPAY-ESS, Correlation: 0.908768816277307
Pair: CPAY-EVRG, Correlation: 0.9018593260216228
Pair: CPAY-FI, Correlation: 0.9287040245490069
Pair: CPAY-HON, Correlation: 0.909036530249404
Pair: CPAY-JKHY, Correlation: 0.9004373981075837
Pair: CPAY-KMB, Correlation: 0.9193088719524751
Pair: CPAY-LHX, Correlation: 0.9039113107039107
Pair: CPAY-MDT, Correlation: 0.9222294429513826
Pair: CPAY-NI, Correlation: 0.9098634757100628
Pair: CPAY-PNW, Correlation: 0.9206225806011552
Pair: CPAY-ROST, Correlation: 0.9307463385983566
Pair: CPAY-SRE, Correlation: 0.9008244598055848
Pair: CPAY-V, Correlation: 0.9092388612589706
Pair: CPAY-WEC, Correlation: 0.9002402808493238
Pair: CTVA-DE, Correlation: 0.9295413377412399
Pair: CTVA-DVN, Correlation: 0.9025554753948933
Pair: CTVA-ELV, Correlation: 0.9171254441852803
Pair: CTVA-GPC, Correlation: 0.9173272949919532
Pair: CTVA-PEP, Correlation: 0.9049134989517182
Pair: CTVA-PFG, Correlation: 0.901099320741645
Pair: CTVA-UNH, Correlation: 0.9134185150574528
Pair: CTVA-VICI, Correlation: 0.9146552812249966
Pair: CSGP-CCI, Correlation: 0.9073572045180092
Pair: CSGP-CSX, Correlation: 0.9578150804304253
Pair: CSGP-CMI, Correlation: 0.914806136809532
Pair: CSGP-DHR, Correlation: 0.9553566388777509
Pair: CSGP-DRI, Correlation: 0.9234755261502299
Pair: CSGP-DE, Correlation: 0.9035570632203946
Pair: CSGP-DXCM, Correlation: 0.9413425032898458
Pair: CSGP-DLR, Correlation: 0.9216109520261885
Pair: CSGP-DPZ, Correlation: 0.9603987740202832
Pair: CSGP-DOV, Correlation: 0.9362618258931461
Pair: CSGP-DTE, Correlation: 0.9234209923434993
Pair: CSGP-DUK, Correlation: 0.9148405972195721
Pair: CSGP-EBAY, Correlation: 0.9167893705298914
Pair: CSGP-ECL, Correlation: 0.9348749237312579
Pair: CSGP-EW, Correlation: 0.93977305374503
Pair: CSGP-ELV, Correlation: 0.918419578336168
Pair: CSGP-ETR, Correlation: 0.9286155996440059
Pair: CSGP-EFX, Correlation: 0.9149217572246742
Pair: CSGP-EQIX, Correlation: 0.9665857692419135
Pair: CSGP-ES, Correlation: 0.9165041653815232
Pair: CSGP-EXPD, Correlation: 0.9415344335923358
Pair: CSGP-EXR, Correlation: 0.903321161669758
Pair: CSGP-FDS, Correlation: 0.9474898508654681
Pair: CSGP-FAST, Correlation: 0.9128702368727346
Pair: CSGP-FI, Correlation: 0.9330451087216327
Pair: CSGP-GRMN, Correlation: 0.9182485029551577
Pair: CSGP-HOLX, Correlation: 0.9474140178435245
Pair: CSGP-HD, Correlation: 0.9554240737128451
Pair: CSGP-HON, Correlation: 0.9613878791250666
Pair: CSGP-HUM, Correlation: 0.931848713990338
Pair: CSGP-IEX, Correlation: 0.9721580916731977
Pair: CSGP-IDXX, Correlation: 0.9605475345523395
Pair: CSGP-ITW, Correlation: 0.9547764766811785
Pair: CSGP-PODD, Correlation: 0.9462612659947719
Pair: CSGP-ICE, Correlation: 0.9483867803472777
Pair: CSGP-INTU, Correlation: 0.9297058300827393
Pair: CSGP-ISRG, Correlation: 0.9148471666053507
Pair: CSGP-IQV, Correlation: 0.9371359778410169
Pair: CSGP-JBHT, Correlation: 0.9220221378844067
Pair: CSGP-JKHY, Correlation: 0.941764183047648
Pair: CSGP-J, Correlation: 0.9241734497675578
Pair: CSGP-JNJ, Correlation: 0.9338703823110597
Pair: CSGP-JPM, Correlation: 0.9041248187556877
Pair: CSGP-KDP, Correlation: 0.9553372225455765
Pair: CSGP-KEYS, Correlation: 0.9247317843727583
Pair: CSGP-LHX, Correlation: 0.9436500660929157
Pair: CSGP-LH, Correlation: 0.9333805641724003
Pair: CSGP-LDOS, Correlation: 0.9228933257524817
Pair: CSGP-LYV, Correlation: 0.9218150259900519
Pair: CSGP-LMT, Correlation: 0.9159008393899805
Pair: CSGP-LOW, Correlation: 0.9333966663569085
Pair: CSGP-LULU, Correlation: 0.9540826431931481
Pair: CSGP-MMC, Correlation: 0.9119693673047854
Pair: CSGP-MAS, Correlation: 0.9324287530115497
Pair: CSGP-MA, Correlation: 0.9688910397243006
Pair: CSGP-MKC, Correlation: 0.9445969819240062
Pair: CSGP-MCD, Correlation: 0.9464317299109165
Pair: CSGP-MTD, Correlation: 0.9463714928723779
Pair: CSGP-MCHP, Correlation: 0.9452850654638834
Pair: CSGP-MSFT, Correlation: 0.9144817955656104
Pair: CSGP-MAA, Correlation: 0.9040188302816718
Pair: CSGP-MOH, Correlation: 0.9227031254730851
Pair: CSGP-MDLZ, Correlation: 0.9344352878955079
Pair: CSGP-MNST, Correlation: 0.9402015758235851
Pair: CSGP-MCO, Correlation: 0.9525406525558078
Pair: CSGP-MSCI, Correlation: 0.9487768468542045
Pair: CSGP-NDAQ, Correlation: 0.9400430181429179
Pair: CSGP-NFLX, Correlation: 0.9211575868242786
Pair: CSGP-NEE, Correlation: 0.9625850161634905
Pair: CSGP-NKE, Correlation: 0.933206445201094
Pair: CSGP-NDSN, Correlation: 0.9591459429569203
Pair: CSGP-NSC, Correlation: 0.963002300654374
Pair: CSGP-NOC, Correlation: 0.9077217866472411
Pair: CSGP-NVR, Correlation: 0.9001289282816904
Pair: CSGP-ODFL, Correlation: 0.9023651442376692
Pair: CSGP-PAYX, Correlation: 0.9259501113641281
Pair: CSGP-PEP, Correlation: 0.9363533933609073
Pair: CSGP-POOL, Correlation: 0.9496823281691654
Pair: CSGP-PG, Correlation: 0.9450290388359672
Pair: CSGP-PLD, Correlation: 0.9420578612364666
Pair: CSGP-PEG, Correlation: 0.9100196615112114
Pair: CSGP-PTC, Correlation: 0.9219667119871223
Pair: CSGP-DGX, Correlation: 0.9348820522702879
Pair: CSGP-RMD, Correlation: 0.9521896890781133
Pair: CSGP-RVTY, Correlation: 0.9210432498875348
Pair: CSGP-ROK, Correlation: 0.9521631525969192
Pair: CSGP-ROL, Correlation: 0.954231477763487
Pair: CSGP-ROP, Correlation: 0.9669490481602158
Pair: CSGP-ROST, Correlation: 0.9361302516589125
Pair: CSGP-SPGI, Correlation: 0.9646787435316981
Pair: CSGP-CRM, Correlation: 0.9599119250810433
Pair: CSGP-SBAC, Correlation: 0.9305515166747461
Pair: CSGP-SRE, Correlation: 0.9017425997021126
Pair: CSGP-NOW, Correlation: 0.9191976448879983
Pair: CSGP-SHW, Correlation: 0.9502414085992431
Pair: CSGP-SBUX, Correlation: 0.9543609663869218
Pair: CSGP-STE, Correlation: 0.963287708811868
Pair: CSGP-SYK, Correlation: 0.9403285115844842
Pair: CSGP-SYY, Correlation: 0.9247202773535359
Pair: CSGP-TMUS, Correlation: 0.9303028082240387
Pair: CSGP-TROW, Correlation: 0.915038598955543
Pair: CSGP-TTWO, Correlation: 0.9468728834326628
Pair: CSGP-TEL, Correlation: 0.934764240571986
Pair: CSGP-TDY, Correlation: 0.9734906266043148
Pair: CSGP-TER, Correlation: 0.9374158601169175
Pair: CSGP-TXN, Correlation: 0.9608461639531676
Pair: CSGP-TMO, Correlation: 0.9566246264567445
Pair: CSGP-TJX, Correlation: 0.9012557355637504
Pair: CSGP-TYL, Correlation: 0.9518744879285566
Pair: CSGP-UNP, Correlation: 0.9568470130025332
Pair: CSGP-UPS, Correlation: 0.9075965490848144
Pair: CSGP-UNH, Correlation: 0.9221238218680518
Pair: CSGP-VRSN, Correlation: 0.9581230859819064
Pair: CSGP-VRSK, Correlation: 0.954603605912095
Pair: CSGP-V, Correlation: 0.9707281719451684
Pair: CSGP-WMT, Correlation: 0.9089283172230999
Pair: CSGP-WM, Correlation: 0.9238804845936471
Pair: CSGP-WAT, Correlation: 0.9254314170627489
Pair: CSGP-WEC, Correlation: 0.9510033179375672
Pair: CSGP-WST, Correlation: 0.9360528978799288
Pair: CSGP-WTW, Correlation: 0.9536936086850265
Pair: CSGP-WDAY, Correlation: 0.9382190977164544
Pair: CSGP-XEL, Correlation: 0.950380899571952
Pair: CSGP-XYL, Correlation: 0.9389600192973168
Pair: CSGP-YUM, Correlation: 0.9475549010987774
Pair: CSGP-ZBRA, Correlation: 0.9039682067174607
Pair: CSGP-ZTS, Correlation: 0.9587912286697501
Pair: COST-CSX, Correlation: 0.9068317954117068
Pair: COST-CMI, Correlation: 0.9463684206482663
Pair: COST-DHR, Correlation: 0.9266341184088104
Pair: COST-DRI, Correlation: 0.9184043041066686
Pair: COST-DECK, Correlation: 0.9516172188699019
Pair: COST-DE, Correlation: 0.9278514662472709
Pair: COST-DELL, Correlation: 0.9260160658604818
Pair: COST-DFS, Correlation: 0.9180603464857781
Pair: COST-DOV, Correlation: 0.9547464426119291
Pair: COST-DHI, Correlation: 0.9755575757335726
Pair: COST-DUK, Correlation: 0.9180632741185979
Pair: COST-ETN, Correlation: 0.9726584982694227
Pair: COST-ELV, Correlation: 0.9397708997004389
Pair: COST-EMR, Correlation: 0.9486094495991714
Pair: COST-ETR, Correlation: 0.9313170538395826
Pair: COST-EFX, Correlation: 0.9212239320748759
Pair: COST-EQIX, Correlation: 0.9092194969491267
Pair: COST-ERIE, Correlation: 0.9559466570460454
Pair: COST-EG, Correlation: 0.9152317059820283
Pair: COST-EXPD, Correlation: 0.9305907649504587
Pair: COST-EXR, Correlation: 0.905282025926525
Pair: COST-FDS, Correlation: 0.9416121456610023
Pair: COST-FICO, Correlation: 0.9462907958914439
Pair: COST-FAST, Correlation: 0.9750362630005112
Pair: COST-FI, Correlation: 0.9226500118980676
Pair: COST-FTNT, Correlation: 0.9493998763447792
Pair: COST-GRMN, Correlation: 0.9390530974828322
Pair: COST-IT, Correlation: 0.9778509223386233
Pair: COST-GD, Correlation: 0.9008223896209594
Pair: COST-GS, Correlation: 0.9499608309390002
Pair: COST-HIG, Correlation: 0.9519420744530542
Pair: COST-HCA, Correlation: 0.9738387901029456
Pair: COST-HLT, Correlation: 0.9799593879748647
Pair: COST-HD, Correlation: 0.942280080138047
Pair: COST-HUBB, Correlation: 0.9655775413086168
Pair: COST-ITW, Correlation: 0.9295052991634617
Pair: COST-IR, Correlation: 0.9608738500297874
Pair: COST-ICE, Correlation: 0.9444799510849847
Pair: COST-INTU, Correlation: 0.9647485810268295
Pair: COST-ISRG, Correlation: 0.9621521549296129
Pair: COST-IRM, Correlation: 0.9532463340994429
Pair: COST-JBHT, Correlation: 0.9010823319315561
Pair: COST-JBL, Correlation: 0.9372715348183451
Pair: COST-J, Correlation: 0.9453979492605612
Pair: COST-JCI, Correlation: 0.9070806512028521
Pair: COST-JPM, Correlation: 0.9531685519338238
Pair: COST-KKR, Correlation: 0.9703931300953352
Pair: COST-KLAC, Correlation: 0.9814570339823592
Pair: COST-LRCX, Correlation: 0.9651756387734161
Pair: COST-LDOS, Correlation: 0.9431452626907021
Pair: COST-LEN, Correlation: 0.963425161316069
Pair: COST-LII, Correlation: 0.946475062697048
Pair: COST-LLY, Correlation: 0.9495535157839755
Pair: COST-LIN, Correlation: 0.9822948753601304
Pair: COST-LYV, Correlation: 0.9100226667122582
Pair: COST-LMT, Correlation: 0.9091705974559622
Pair: COST-L, Correlation: 0.9114211109084839
Pair: COST-LOW, Correlation: 0.9584344486186472
Pair: COST-MPC, Correlation: 0.9055321839016581
Pair: COST-MAR, Correlation: 0.939704063637901
Pair: COST-MMC, Correlation: 0.9778488386200398
Pair: COST-MLM, Correlation: 0.9684334300883978
Pair: COST-MAS, Correlation: 0.9304011549643585
Pair: COST-MA, Correlation: 0.9436123592776907
Pair: COST-MCD, Correlation: 0.934459689563204
Pair: COST-MCK, Correlation: 0.9142945157612142
Pair: COST-MRK, Correlation: 0.9428464549688803
Pair: COST-MET, Correlation: 0.934749781789816
Pair: COST-MTD, Correlation: 0.9003633168373308
Pair: COST-MCHP, Correlation: 0.9257263091587491
Pair: COST-MU, Correlation: 0.9173753369423467
Pair: COST-MSFT, Correlation: 0.9810050615964754
Pair: COST-MOH, Correlation: 0.9446928459757189
Pair: COST-MDLZ, Correlation: 0.9181932527096756
Pair: COST-MPWR, Correlation: 0.9833564368271299
Pair: COST-MCO, Correlation: 0.9566962445647457
Pair: COST-MS, Correlation: 0.9449976021779766
Pair: COST-MSI, Correlation: 0.989398665233372
Pair: COST-MSCI, Correlation: 0.9281153322783501
Pair: COST-NDAQ, Correlation: 0.9441516548956268
Pair: COST-NTAP, Correlation: 0.9190765996732223
Pair: COST-NDSN, Correlation: 0.9290513269709504
Pair: COST-NRG, Correlation: 0.9018188497778516
Pair: COST-NUE, Correlation: 0.9204951631206014
Pair: COST-NVR, Correlation: 0.9714604093196444
Pair: COST-NXPI, Correlation: 0.9349789944624762
Pair: COST-ORLY, Correlation: 0.9766597027735333
Pair: COST-ODFL, Correlation: 0.9630033995441498
Pair: COST-ON, Correlation: 0.9110317106659953
Pair: COST-OKE, Correlation: 0.9055046492568667
Pair: COST-ORCL, Correlation: 0.9706297171466242
Pair: COST-PCAR, Correlation: 0.9599840333389458
Pair: COST-PKG, Correlation: 0.9468797485663575
Pair: COST-PANW, Correlation: 0.9765588658924944
Pair: COST-PH, Correlation: 0.9754156787629191
Pair: COST-PAYX, Correlation: 0.9533457503932549
Pair: COST-PNR, Correlation: 0.9022760457383676
Pair: COST-PEP, Correlation: 0.9250663365811255
Pair: COST-PG, Correlation: 0.9560704550511201
Pair: COST-PGR, Correlation: 0.9862080870166661
Pair: COST-PLD, Correlation: 0.9120976206637644
Pair: COST-PEG, Correlation: 0.9421119061984394
Pair: COST-PTC, Correlation: 0.9439241786195405
Pair: COST-PSA, Correlation: 0.9111433894158478
Pair: COST-PHM, Correlation: 0.9564428569403925
Pair: COST-PWR, Correlation: 0.954679019112557
Pair: COST-QCOM, Correlation: 0.9383426476418667
Pair: COST-DGX, Correlation: 0.908642037426298
Pair: COST-RJF, Correlation: 0.9573399356881268
Pair: COST-RSG, Correlation: 0.9886736771251601
Pair: COST-ROL, Correlation: 0.9411926746999534
Pair: COST-ROP, Correlation: 0.9320325893173591
Pair: COST-SPGI, Correlation: 0.9423547701204875
Pair: COST-STX, Correlation: 0.9243154266700591
Pair: COST-NOW, Correlation: 0.957807480210837
Pair: COST-SHW, Correlation: 0.9502586339525232
Pair: COST-SNA, Correlation: 0.9216759710947543
Pair: COST-SO, Correlation: 0.9663114872097165
Pair: COST-STLD, Correlation: 0.9418886459520798
Pair: COST-STE, Correlation: 0.9275090707884592
Pair: COST-SYK, Correlation: 0.9518672956735356
Pair: COST-SNPS, Correlation: 0.9770999258343431
Pair: COST-TMUS, Correlation: 0.9611558530592597
Pair: COST-TEL, Correlation: 0.9191743392081556
Pair: COST-TER, Correlation: 0.900926858555466
Pair: COST-TXN, Correlation: 0.92977059952005
Pair: COST-TPL, Correlation: 0.9327623444648218
Pair: COST-TMO, Correlation: 0.9277548268608734
Pair: COST-TJX, Correlation: 0.9674646326575838
Pair: COST-TSCO, Correlation: 0.977814358118758
Pair: COST-TT, Correlation: 0.981957957572454
Pair: COST-TDG, Correlation: 0.9807495181794895
Pair: COST-TRV, Correlation: 0.9429303800788204
Pair: COST-TYL, Correlation: 0.9191850306331707
Pair: COST-UNP, Correlation: 0.9234690781834307
Pair: COST-URI, Correlation: 0.9689505897200457
Pair: COST-UNH, Correlation: 0.9508279282031046
Pair: COST-VLO, Correlation: 0.9012282892092651
Pair: COST-VLTO, Correlation: 0.9449277018876386
Pair: COST-VRSK, Correlation: 0.957758385365541
Pair: COST-VRTX, Correlation: 0.9559975367619393
Pair: COST-V, Correlation: 0.9302042736007454
Pair: COST-VMC, Correlation: 0.9450975980930162
Pair: COST-WRB, Correlation: 0.975237534351036
Pair: COST-GWW, Correlation: 0.9680400746643756
Pair: COST-WMT, Correlation: 0.9737905021098472
Pair: COST-WM, Correlation: 0.9745157104812673
Pair: COST-WELL, Correlation: 0.9219521410613909
Pair: COST-WTW, Correlation: 0.9409195278572385
Pair: COST-XYL, Correlation: 0.9122284003096589
Pair: COST-YUM, Correlation: 0.9201979058599691
Pair: CCI-DG, Correlation: 0.9490998606251738
Pair: CCI-DPZ, Correlation: 0.917568693417546
Pair: CCI-DTE, Correlation: 0.9134677937592705
Pair: CCI-EBAY, Correlation: 0.9148495009639671
Pair: CCI-EW, Correlation: 0.956704259067855
Pair: CCI-EPAM, Correlation: 0.9200280609502867
Pair: CCI-EQIX, Correlation: 0.9014091776593384
Pair: CCI-EL, Correlation: 0.9507959893700363
Pair: CCI-EVRG, Correlation: 0.9194376762283386
Pair: CCI-ES, Correlation: 0.9748913991833932
Pair: CCI-EXR, Correlation: 0.9019302735970678
Pair: CCI-FMC, Correlation: 0.9056063253520832
Pair: CCI-GPN, Correlation: 0.9063564189701403
Pair: CCI-HON, Correlation: 0.9116539903892612
Pair: CCI-HRL, Correlation: 0.9251260794692647
Pair: CCI-HUM, Correlation: 0.9048201693832416
Pair: CCI-IEX, Correlation: 0.907408380996976
Pair: CCI-PODD, Correlation: 0.9135994646907906
Pair: CCI-JKHY, Correlation: 0.931679498003232
Pair: CCI-JNJ, Correlation: 0.9184726285380421
Pair: CCI-KDP, Correlation: 0.9243791649796941
Pair: CCI-LHX, Correlation: 0.9223109230481243
Pair: CCI-MKTX, Correlation: 0.9237070058477592
Pair: CCI-MKC, Correlation: 0.9543122448187741
Pair: CCI-MDT, Correlation: 0.9322475144391497
Pair: CCI-MTD, Correlation: 0.9022233120698528
Pair: CCI-MAA, Correlation: 0.9254226069420337
Pair: CCI-NEE, Correlation: 0.9373781932834909
Pair: CCI-NKE, Correlation: 0.9536131625483063
Pair: CCI-NSC, Correlation: 0.9246949122970309
Pair: CCI-PAYC, Correlation: 0.9277700422951587
Pair: CCI-PFE, Correlation: 0.916101090257423
Pair: CCI-POOL, Correlation: 0.9164122632856058
Pair: CCI-PLD, Correlation: 0.9065212785098884
Pair: CCI-O, Correlation: 0.9152359946678132
Pair: CCI-RMD, Correlation: 0.9293361654849996
Pair: CCI-RVTY, Correlation: 0.9584163214961425
Pair: CCI-SBAC, Correlation: 0.9884429393585095
Pair: CCI-SWKS, Correlation: 0.9000789986122577
Pair: CCI-SBUX, Correlation: 0.912584217048049
Pair: CCI-TROW, Correlation: 0.9343081580268705
Pair: CCI-TTWO, Correlation: 0.906458838111382
Pair: CCI-TGT, Correlation: 0.9020135903187505
Pair: CCI-TDY, Correlation: 0.9203060580447219
Pair: CCI-TFX, Correlation: 0.9239007160713606
Pair: CCI-UDR, Correlation: 0.9243322693936911
Pair: CCI-VRSN, Correlation: 0.9371646678159216
Pair: CCI-WAT, Correlation: 0.9023914645149935
Pair: CCI-WEC, Correlation: 0.9427562911196162
Pair: CCI-XEL, Correlation: 0.9509909461486534
Pair: CCI-ZBRA, Correlation: 0.923660838738978
Pair: CSX-CMI, Correlation: 0.9361334537776044
Pair: CSX-DHR, Correlation: 0.9697217749344209
Pair: CSX-DRI, Correlation: 0.9698855314438593
Pair: CSX-DE, Correlation: 0.9403974718193563
Pair: CSX-DXCM, Correlation: 0.9138882096641174
Pair: CSX-DLR, Correlation: 0.9375752753942576
Pair: CSX-DFS, Correlation: 0.9231174000762374
Pair: CSX-DPZ, Correlation: 0.9671784780919643
Pair: CSX-DOV, Correlation: 0.9669227986700384
Pair: CSX-DTE, Correlation: 0.9627053311542195
Pair: CSX-DUK, Correlation: 0.9539712032071844
Pair: CSX-EBAY, Correlation: 0.9146740766998543
Pair: CSX-ECL, Correlation: 0.9238358478135833
Pair: CSX-EW, Correlation: 0.9444241254201161
Pair: CSX-EA, Correlation: 0.9108570542227512
Pair: CSX-ELV, Correlation: 0.9682973754953662
Pair: CSX-EMR, Correlation: 0.945508445941645
Pair: CSX-ETR, Correlation: 0.9547775100290331
Pair: CSX-EFX, Correlation: 0.939511528211329
Pair: CSX-EQIX, Correlation: 0.9613281155868298
Pair: CSX-EG, Correlation: 0.9142699076520785
Pair: CSX-EVRG, Correlation: 0.9162961515325639
Pair: CSX-ES, Correlation: 0.9005818983615197
Pair: CSX-EXC, Correlation: 0.9273047028346083
Pair: CSX-EXPD, Correlation: 0.9701032044176922
Pair: CSX-EXR, Correlation: 0.9475759836624199
Pair: CSX-FDS, Correlation: 0.9685567002242054
Pair: CSX-FAST, Correlation: 0.9370522363515449
Pair: CSX-FITB, Correlation: 0.9277087178484329
Pair: CSX-FI, Correlation: 0.9433432704720593
Pair: CSX-FTNT, Correlation: 0.910866762645915
Pair: CSX-GRMN, Correlation: 0.9305333426239825
Pair: CSX-IT, Correlation: 0.9001562470824264
Pair: CSX-GEN, Correlation: 0.9204695827167687
Pair: CSX-GD, Correlation: 0.9005781744161677
Pair: CSX-GPC, Correlation: 0.9010762079692931
Pair: CSX-GL, Correlation: 0.927069823069391
Pair: CSX-HCA, Correlation: 0.92676317201748
Pair: CSX-HSY, Correlation: 0.9209384531813019
Pair: CSX-HLT, Correlation: 0.9064708643033343
Pair: CSX-HOLX, Correlation: 0.9551425000304422
Pair: CSX-HD, Correlation: 0.9771480854106867
Pair: CSX-HON, Correlation: 0.9765484952560045
Pair: CSX-HPQ, Correlation: 0.9207418216603016
Pair: CSX-HUM, Correlation: 0.9322147979460342
Pair: CSX-HBAN, Correlation: 0.9050526574269075
Pair: CSX-IEX, Correlation: 0.9834761939861035
Pair: CSX-IDXX, Correlation: 0.9614413375672969
Pair: CSX-ITW, Correlation: 0.9743796577833291
Pair: CSX-PODD, Correlation: 0.9203147936936211
Pair: CSX-ICE, Correlation: 0.9722613502038234
Pair: CSX-IPG, Correlation: 0.9178100398141479
Pair: CSX-INTU, Correlation: 0.9577835607517672
Pair: CSX-ISRG, Correlation: 0.9461808140571601
Pair: CSX-INVH, Correlation: 0.9205509143826537
Pair: CSX-IQV, Correlation: 0.9718915891094031
Pair: CSX-JBHT, Correlation: 0.9599138810088879
Pair: CSX-JKHY, Correlation: 0.9546821098715111
Pair: CSX-J, Correlation: 0.9513618158995595
Pair: CSX-JNJ, Correlation: 0.9579681624189165
Pair: CSX-JCI, Correlation: 0.9055576803997232
Pair: CSX-JPM, Correlation: 0.9488759297234686
Pair: CSX-KDP, Correlation: 0.9734311819064696
Pair: CSX-KEYS, Correlation: 0.9436723487147014
Pair: CSX-LHX, Correlation: 0.9711749936954606
Pair: CSX-LH, Correlation: 0.9678051623500726
Pair: CSX-LRCX, Correlation: 0.9007453889011217
Pair: CSX-LDOS, Correlation: 0.9409873946450711
Pair: CSX-LII, Correlation: 0.9058698437686368
Pair: CSX-LIN, Correlation: 0.9278353936559633
Pair: CSX-LYV, Correlation: 0.973628752839333
Pair: CSX-LMT, Correlation: 0.9429969445799554
Pair: CSX-LOW, Correlation: 0.9615770036604155
Pair: CSX-LULU, Correlation: 0.928461294232893
Pair: CSX-MAR, Correlation: 0.9345542767288115
Pair: CSX-MMC, Correlation: 0.9506428324247291
Pair: CSX-MLM, Correlation: 0.9239216757686883
Pair: CSX-MAS, Correlation: 0.9493935836662608
Pair: CSX-MA, Correlation: 0.9764356028687441
Pair: CSX-MKC, Correlation: 0.9338025102736067
Pair: CSX-MCD, Correlation: 0.9736910988722133
Pair: CSX-MRK, Correlation: 0.917982961623988
Pair: CSX-MET, Correlation: 0.9059181865002595
Pair: CSX-MTD, Correlation: 0.9691993620299428
Pair: CSX-MCHP, Correlation: 0.9712139969028367
Pair: CSX-MU, Correlation: 0.9305141929977879
Pair: CSX-MSFT, Correlation: 0.9402337049443749
Pair: CSX-MAA, Correlation: 0.9430823455043689
Pair: CSX-MOH, Correlation: 0.9517772273554226
Pair: CSX-MDLZ, Correlation: 0.9461484775333758
Pair: CSX-MNST, Correlation: 0.9457862732239066
Pair: CSX-MCO, Correlation: 0.9654494621612206
Pair: CSX-MS, Correlation: 0.9372365003956341
Pair: CSX-MSI, Correlation: 0.9143243462542141
Pair: CSX-MSCI, Correlation: 0.955813049233421
Pair: CSX-NDAQ, Correlation: 0.964772551789874
Pair: CSX-NFLX, Correlation: 0.9143306607061832
Pair: CSX-NEE, Correlation: 0.9627819183817256
Pair: CSX-NKE, Correlation: 0.9138982491929324
Pair: CSX-NI, Correlation: 0.9019794147451786
Pair: CSX-NDSN, Correlation: 0.9798260973809043
Pair: CSX-NSC, Correlation: 0.9894436780979486
Pair: CSX-NOC, Correlation: 0.9454345392829899
Pair: CSX-NVR, Correlation: 0.9336430820739355
Pair: CSX-NXPI, Correlation: 0.9281687199455323
Pair: CSX-ORLY, Correlation: 0.9095925789632165
Pair: CSX-ODFL, Correlation: 0.9319697454284905
Pair: CSX-PKG, Correlation: 0.9402348744852632
Pair: CSX-PAYX, Correlation: 0.9704893055868494
Pair: CSX-PEP, Correlation: 0.9599589970773783
Pair: CSX-PNC, Correlation: 0.9462474438137499
Pair: CSX-POOL, Correlation: 0.9582551495957068
Pair: CSX-PG, Correlation: 0.9584034985183236
Pair: CSX-PLD, Correlation: 0.971647723968748
Pair: CSX-PEG, Correlation: 0.9563590083468151
Pair: CSX-PTC, Correlation: 0.9609803905850501
Pair: CSX-PSA, Correlation: 0.9177292003149727
Pair: CSX-DGX, Correlation: 0.9675704571937176
Pair: CSX-RJF, Correlation: 0.9388719092245842
Pair: CSX-RTX, Correlation: 0.9015625239324109
Pair: CSX-O, Correlation: 0.9094334797705979
Pair: CSX-RF, Correlation: 0.9483615966566665
Pair: CSX-RSG, Correlation: 0.9391985133309603
Pair: CSX-RMD, Correlation: 0.9532520728740598
Pair: CSX-RVTY, Correlation: 0.9365927566401463
Pair: CSX-ROK, Correlation: 0.96962244201376
Pair: CSX-ROL, Correlation: 0.9713925170860913
Pair: CSX-ROP, Correlation: 0.9814399186681176
Pair: CSX-ROST, Correlation: 0.9460515055977992
Pair: CSX-SPGI, Correlation: 0.9751218599412989
Pair: CSX-CRM, Correlation: 0.9553834954593673
Pair: CSX-SBAC, Correlation: 0.9124753223569879
Pair: CSX-STX, Correlation: 0.912611115123773
Pair: CSX-SRE, Correlation: 0.9311473324984232
Pair: CSX-NOW, Correlation: 0.9303380806560446
Pair: CSX-SHW, Correlation: 0.9682449105595603
Pair: CSX-SNA, Correlation: 0.9038944220542313
Pair: CSX-SO, Correlation: 0.9314384886392527
Pair: CSX-SBUX, Correlation: 0.934659004748731
Pair: CSX-STE, Correlation: 0.9808303551980451
Pair: CSX-SYK, Correlation: 0.9694119587043237
Pair: CSX-SYY, Correlation: 0.9645558989180592
Pair: CSX-TMUS, Correlation: 0.9508158939790398
Pair: CSX-TTWO, Correlation: 0.94338939517947
Pair: CSX-TEL, Correlation: 0.9714978146014176
Pair: CSX-TDY, Correlation: 0.9804038772406354
Pair: CSX-TER, Correlation: 0.9433744104755432
Pair: CSX-TXN, Correlation: 0.9820676572268899
Pair: CSX-TMO, Correlation: 0.9705826585025757
Pair: CSX-TJX, Correlation: 0.9271961762250812
Pair: CSX-TSCO, Correlation: 0.9089898405212157
Pair: CSX-TRV, Correlation: 0.9267417845262678
Pair: CSX-TYL, Correlation: 0.9526607051207968
Pair: CSX-UDR, Correlation: 0.9163739285926082
Pair: CSX-ULTA, Correlation: 0.9147063429836997
Pair: CSX-UNP, Correlation: 0.9873338435868825
Pair: CSX-UPS, Correlation: 0.9252370056773838
Pair: CSX-UNH, Correlation: 0.966435664088616
Pair: CSX-VRSN, Correlation: 0.9456673054304577
Pair: CSX-VRSK, Correlation: 0.9609898490841164
Pair: CSX-VRTX, Correlation: 0.9002601534995683
Pair: CSX-V, Correlation: 0.9774309026912786
Pair: CSX-VMC, Correlation: 0.9293302776913726
Pair: CSX-WRB, Correlation: 0.9369242799315122
Pair: CSX-WMT, Correlation: 0.9260084857540639
Pair: CSX-WM, Correlation: 0.9634381899994218
Pair: CSX-WAT, Correlation: 0.9654249984515691
Pair: CSX-WEC, Correlation: 0.9495035740675479
Pair: CSX-WST, Correlation: 0.9405568911957924
Pair: CSX-WTW, Correlation: 0.9699653140462601
Pair: CSX-WDAY, Correlation: 0.937974976171595
Pair: CSX-XEL, Correlation: 0.9511998120446846
Pair: CSX-XYL, Correlation: 0.9635204737296607
Pair: CSX-YUM, Correlation: 0.9776924273106951
Pair: CSX-ZBRA, Correlation: 0.9036845848834691
Pair: CSX-ZTS, Correlation: 0.9664821746851275
Pair: CMI-DHR, Correlation: 0.9388906382101262
Pair: CMI-DRI, Correlation: 0.9336985536392622
Pair: CMI-DE, Correlation: 0.9414459031256975
Pair: CMI-DFS, Correlation: 0.9458669057507411
Pair: CMI-DPZ, Correlation: 0.9118229306975348
Pair: CMI-DOV, Correlation: 0.9704574027852915
Pair: CMI-DHI, Correlation: 0.9516129021502374
Pair: CMI-DTE, Correlation: 0.9100353463812045
Pair: CMI-DUK, Correlation: 0.9359805154156191
Pair: CMI-ETN, Correlation: 0.9306324085317691
Pair: CMI-ELV, Correlation: 0.9304654803197324
Pair: CMI-EMR, Correlation: 0.9695236570780709
Pair: CMI-ETR, Correlation: 0.9306036985672705
Pair: CMI-EFX, Correlation: 0.9305613963127605
Pair: CMI-EQIX, Correlation: 0.9335403174469659
Pair: CMI-ERIE, Correlation: 0.9342418034901996
Pair: CMI-EG, Correlation: 0.9208570927814755
Pair: CMI-EXPD, Correlation: 0.9424664533468468
Pair: CMI-EXR, Correlation: 0.9014282072450492
Pair: CMI-FDS, Correlation: 0.9353317903998176
Pair: CMI-FAST, Correlation: 0.96330415316649
Pair: CMI-FITB, Correlation: 0.9139423205204922
Pair: CMI-FI, Correlation: 0.9405419826803595
Pair: CMI-FTNT, Correlation: 0.916296205609318
Pair: CMI-GRMN, Correlation: 0.9544251056207733
Pair: CMI-IT, Correlation: 0.9373449450078919
Pair: CMI-GEV, Correlation: 0.9087282757874874
Pair: CMI-GEN, Correlation: 0.9224294328132068
Pair: CMI-GD, Correlation: 0.9025888664490085
Pair: CMI-GPC, Correlation: 0.9024419280108289
Pair: CMI-GS, Correlation: 0.9500982870582206
Pair: CMI-HIG, Correlation: 0.9336305909871754
Pair: CMI-HCA, Correlation: 0.9516560915372604
Pair: CMI-HSY, Correlation: 0.9010701237146982
Pair: CMI-HLT, Correlation: 0.9517913782420666
Pair: CMI-HOLX, Correlation: 0.9334932547645051
Pair: CMI-HD, Correlation: 0.9553459181290618
Pair: CMI-HON, Correlation: 0.9367118896585719
Pair: CMI-HUBB, Correlation: 0.9336398455596576
Pair: CMI-IEX, Correlation: 0.9372289810291529
Pair: CMI-IDXX, Correlation: 0.9127778136965984
Pair: CMI-ITW, Correlation: 0.9643383750231519
Pair: CMI-IR, Correlation: 0.9329974063702527
Pair: CMI-ICE, Correlation: 0.955822532431647
Pair: CMI-INTU, Correlation: 0.946076533776103
Pair: CMI-ISRG, Correlation: 0.9524992893663833
Pair: CMI-JBHT, Correlation: 0.9307578813277984
Pair: CMI-J, Correlation: 0.9514645045123642
Pair: CMI-JNJ, Correlation: 0.9061303026699287
Pair: CMI-JCI, Correlation: 0.9439606898200396
Pair: CMI-JPM, Correlation: 0.9622687105108388
Pair: CMI-KDP, Correlation: 0.9046177833398087
Pair: CMI-KKR, Correlation: 0.9325274830561915
Pair: CMI-KLAC, Correlation: 0.928169137642827
Pair: CMI-LHX, Correlation: 0.9028211214790883
Pair: CMI-LH, Correlation: 0.9278809959181243
Pair: CMI-LRCX, Correlation: 0.9376813855741268
Pair: CMI-LDOS, Correlation: 0.9425714612175216
Pair: CMI-LEN, Correlation: 0.9475862807850166
Pair: CMI-LII, Correlation: 0.9405020351139539
Pair: CMI-LIN, Correlation: 0.960848925947813
Pair: CMI-LYV, Correlation: 0.9196578816566764
Pair: CMI-LMT, Correlation: 0.9253351599752326
Pair: CMI-LOW, Correlation: 0.9606259737979378
Pair: CMI-MAR, Correlation: 0.9356211507449259
Pair: CMI-MMC, Correlation: 0.9598323563008686
Pair: CMI-MLM, Correlation: 0.9525551306387801
Pair: CMI-MAS, Correlation: 0.9531524463356105
Pair: CMI-MA, Correlation: 0.9566270971490198
Pair: CMI-MCD, Correlation: 0.9433334916001196
Pair: CMI-MRK, Correlation: 0.9264707217702902
Pair: CMI-MET, Correlation: 0.9448500918949448
Pair: CMI-MTD, Correlation: 0.9350001290736576
Pair: CMI-MCHP, Correlation: 0.9524100522846816
Pair: CMI-MU, Correlation: 0.9376935588585148
Pair: CMI-MSFT, Correlation: 0.9496082441111576
Pair: CMI-MOH, Correlation: 0.9266386608106133
Pair: CMI-MDLZ, Correlation: 0.9317740849865678
Pair: CMI-MPWR, Correlation: 0.940279412673419
Pair: CMI-MNST, Correlation: 0.9258983602756159
Pair: CMI-MCO, Correlation: 0.9614456596068801
Pair: CMI-MS, Correlation: 0.9559112373400445
Pair: CMI-MSI, Correlation: 0.9534067167608374
Pair: CMI-MSCI, Correlation: 0.932830982543899
Pair: CMI-NDAQ, Correlation: 0.952340304044224
Pair: CMI-NEE, Correlation: 0.918479960763005
Pair: CMI-NDSN, Correlation: 0.957925241493493
Pair: CMI-NSC, Correlation: 0.9322884126850565
Pair: CMI-NOC, Correlation: 0.9093122667969227
Pair: CMI-NVR, Correlation: 0.9633633229263364
Pair: CMI-NXPI, Correlation: 0.9505504650175154
Pair: CMI-ORLY, Correlation: 0.9410707138243587
Pair: CMI-ODFL, Correlation: 0.9457551413446116
Pair: CMI-ORCL, Correlation: 0.9407831488963119
Pair: CMI-PCAR, Correlation: 0.9420781699724693
Pair: CMI-PKG, Correlation: 0.9644753119558421
Pair: CMI-PANW, Correlation: 0.9040833447970966
Pair: CMI-PH, Correlation: 0.9572946008358784
Pair: CMI-PAYX, Correlation: 0.9466544458456888
Pair: CMI-PNR, Correlation: 0.9312609126844508
Pair: CMI-PEP, Correlation: 0.9330992059983725
Pair: CMI-PM, Correlation: 0.9038861591665778
Pair: CMI-PNC, Correlation: 0.9048963613689378
Pair: CMI-POOL, Correlation: 0.9059648323493824
Pair: CMI-PFG, Correlation: 0.9224949508370252
Pair: CMI-PG, Correlation: 0.9558849168731556
Pair: CMI-PGR, Correlation: 0.944950424480511
Pair: CMI-PLD, Correlation: 0.916832973304432
Pair: CMI-PEG, Correlation: 0.9429345430794367
Pair: CMI-PTC, Correlation: 0.9605294192925171
Pair: CMI-PHM, Correlation: 0.9170247827824874
Pair: CMI-QCOM, Correlation: 0.9311762745659413
Pair: CMI-DGX, Correlation: 0.9352029508287291
Pair: CMI-RJF, Correlation: 0.9548147632076079
Pair: CMI-RTX, Correlation: 0.9125150447235744
Pair: CMI-RF, Correlation: 0.9233909860233143
Pair: CMI-RSG, Correlation: 0.9544695212521478
Pair: CMI-RMD, Correlation: 0.9089119848191228
Pair: CMI-ROK, Correlation: 0.9415829665911691
Pair: CMI-ROL, Correlation: 0.9582647548488041
Pair: CMI-ROP, Correlation: 0.9475940679825675
Pair: CMI-ROST, Correlation: 0.917333979347941
Pair: CMI-SPGI, Correlation: 0.9522007450569054
Pair: CMI-CRM, Correlation: 0.9238392948353177
Pair: CMI-STX, Correlation: 0.9248653898654047
Pair: CMI-SRE, Correlation: 0.9135217458307578
Pair: CMI-NOW, Correlation: 0.9518618383377109
Pair: CMI-SHW, Correlation: 0.9619522871649062
Pair: CMI-SNA, Correlation: 0.9357298742858907
Pair: CMI-SO, Correlation: 0.948498814117533
Pair: CMI-STLD, Correlation: 0.9029751566129819
Pair: CMI-STE, Correlation: 0.9316200979910717
Pair: CMI-SYK, Correlation: 0.9598071435254523
Pair: CMI-SNPS, Correlation: 0.9332190580136271
Pair: CMI-TMUS, Correlation: 0.9736107853204963
Pair: CMI-TEL, Correlation: 0.9556034588406505
Pair: CMI-TDY, Correlation: 0.9250925370532742
Pair: CMI-TER, Correlation: 0.926471621210638
Pair: CMI-TXN, Correlation: 0.9583446714413525
Pair: CMI-TPL, Correlation: 0.922632793932224
Pair: CMI-TMO, Correlation: 0.9397232523650835
Pair: CMI-TJX, Correlation: 0.9567084211571013
Pair: CMI-TSCO, Correlation: 0.9500786948287763
Pair: CMI-TT, Correlation: 0.9545458820262076
Pair: CMI-TDG, Correlation: 0.9457342426978551
Pair: CMI-TRV, Correlation: 0.9455066712032156
Pair: CMI-TYL, Correlation: 0.9378636694955774
Pair: CMI-UNP, Correlation: 0.9468312303251409
Pair: CMI-URI, Correlation: 0.9425866000183575
Pair: CMI-UNH, Correlation: 0.9428662017036118
Pair: CMI-VRSK, Correlation: 0.9501284079443775
Pair: CMI-VRTX, Correlation: 0.9257864114589709
Pair: CMI-V, Correlation: 0.9482087478613875
Pair: CMI-VMC, Correlation: 0.9440179198281299
Pair: CMI-WRB, Correlation: 0.949520408109326
Pair: CMI-GWW, Correlation: 0.9198099195940916
Pair: CMI-WMT, Correlation: 0.9686736903208358
Pair: CMI-WM, Correlation: 0.9571178570550228
Pair: CMI-WAT, Correlation: 0.9240468539223863
Pair: CMI-WST, Correlation: 0.9034744259768033
Pair: CMI-WTW, Correlation: 0.9660333335157223
Pair: CMI-XYL, Correlation: 0.9476185712405438
Pair: CMI-YUM, Correlation: 0.9424621155976137
Pair: DHR-DRI, Correlation: 0.9412513432408783
Pair: DHR-DE, Correlation: 0.9620567149694349
Pair: DHR-DXCM, Correlation: 0.9505646261986767
Pair: DHR-DLR, Correlation: 0.9235843799590923
Pair: DHR-DFS, Correlation: 0.9146339004650882
Pair: DHR-DPZ, Correlation: 0.963059843091738
Pair: DHR-DOV, Correlation: 0.9749261119892829
Pair: DHR-DHI, Correlation: 0.9034532907480336
Pair: DHR-DTE, Correlation: 0.9386159981573925
Pair: DHR-DUK, Correlation: 0.9459269585877385
Pair: DHR-EBAY, Correlation: 0.9288663564283286
Pair: DHR-EW, Correlation: 0.9489415637812634
Pair: DHR-ELV, Correlation: 0.9620125825407344
Pair: DHR-EMR, Correlation: 0.9410215030013539
Pair: DHR-ETR, Correlation: 0.948038975783967
Pair: DHR-EFX, Correlation: 0.9566181784110811
Pair: DHR-EQIX, Correlation: 0.964728918863442
Pair: DHR-EXC, Correlation: 0.9199411887030229
Pair: DHR-EXPD, Correlation: 0.9771707660807128
Pair: DHR-EXR, Correlation: 0.9634703980632368
Pair: DHR-FDS, Correlation: 0.9766414115827412
Pair: DHR-FAST, Correlation: 0.9552526894225198
Pair: DHR-FITB, Correlation: 0.9145932818415661
Pair: DHR-FI, Correlation: 0.9159199790739958
Pair: DHR-FTNT, Correlation: 0.9460163879755519
Pair: DHR-GRMN, Correlation: 0.9459055506268197
Pair: DHR-IT, Correlation: 0.9089980522289882
Pair: DHR-GEN, Correlation: 0.9488068828851836
Pair: DHR-GPC, Correlation: 0.9013111797443842
Pair: DHR-GS, Correlation: 0.9108198953552041
Pair: DHR-HCA, Correlation: 0.9336279795858358
Pair: DHR-HSY, Correlation: 0.93430804810263
Pair: DHR-HOLX, Correlation: 0.9645920271870383
Pair: DHR-HD, Correlation: 0.9781919437825157
Pair: DHR-HON, Correlation: 0.9536623165672186
Pair: DHR-HPQ, Correlation: 0.9153054851885402
Pair: DHR-HUM, Correlation: 0.9169545934388644
Pair: DHR-IEX, Correlation: 0.9662150863126835
Pair: DHR-IDXX, Correlation: 0.9761975670866646
Pair: DHR-ITW, Correlation: 0.9655463683976595
Pair: DHR-PODD, Correlation: 0.9467100466305611
Pair: DHR-ICE, Correlation: 0.9641591982502589
Pair: DHR-IPG, Correlation: 0.9173969530040345
Pair: DHR-INTU, Correlation: 0.9735466587143002
Pair: DHR-ISRG, Correlation: 0.9472272553713723
Pair: DHR-INVH, Correlation: 0.9514923202305826
Pair: DHR-IQV, Correlation: 0.982958929434355
Pair: DHR-JBHT, Correlation: 0.9548271003287896
Pair: DHR-JKHY, Correlation: 0.9275362711108218
Pair: DHR-J, Correlation: 0.9703172070959711
Pair: DHR-JNJ, Correlation: 0.9383925470410405
Pair: DHR-JCI, Correlation: 0.9285327220440285
Pair: DHR-JPM, Correlation: 0.9300378463686289
Pair: DHR-KDP, Correlation: 0.9659397141745959
Pair: DHR-KEYS, Correlation: 0.9696737854734236
Pair: DHR-LHX, Correlation: 0.9496449922120279
Pair: DHR-LH, Correlation: 0.9728716962101293
Pair: DHR-LRCX, Correlation: 0.9289477893149934
Pair: DHR-LDOS, Correlation: 0.9349952957320986
Pair: DHR-LIN, Correlation: 0.9427946179842608
Pair: DHR-LYV, Correlation: 0.9545044900026898
Pair: DHR-LMT, Correlation: 0.9189790999895159
Pair: DHR-LOW, Correlation: 0.9778579165543215
Pair: DHR-LULU, Correlation: 0.9495810611973117
Pair: DHR-MMC, Correlation: 0.9578097433826764
Pair: DHR-MLM, Correlation: 0.926150922846511
Pair: DHR-MAS, Correlation: 0.9453766588315823
Pair: DHR-MA, Correlation: 0.9657215248628667
Pair: DHR-MKC, Correlation: 0.9148384873668837
Pair: DHR-MCD, Correlation: 0.9634397334925863
Pair: DHR-MRK, Correlation: 0.9051709214757947
Pair: DHR-MET, Correlation: 0.9082586142070507
Pair: DHR-MTD, Correlation: 0.9865447151544989
Pair: DHR-MCHP, Correlation: 0.9681746225961277
Pair: DHR-MU, Correlation: 0.910020038018303
Pair: DHR-MSFT, Correlation: 0.9602204709027709
Pair: DHR-MAA, Correlation: 0.9621719962056682
Pair: DHR-MOH, Correlation: 0.9682982362327714
Pair: DHR-MDLZ, Correlation: 0.9403877790624645
Pair: DHR-MPWR, Correlation: 0.9290344559119483
Pair: DHR-MNST, Correlation: 0.9358403310849237
Pair: DHR-MCO, Correlation: 0.9733698220976079
Pair: DHR-MS, Correlation: 0.9554933708657084
Pair: DHR-MSI, Correlation: 0.924034571993357
Pair: DHR-MSCI, Correlation: 0.9879243222669042
Pair: DHR-NDAQ, Correlation: 0.9856499894776081
Pair: DHR-NEE, Correlation: 0.977295176237306
Pair: DHR-NKE, Correlation: 0.9157509305846903
Pair: DHR-NDSN, Correlation: 0.9811385219216807
Pair: DHR-NSC, Correlation: 0.9729106648221478
Pair: DHR-NOC, Correlation: 0.9254547784785704
Pair: DHR-NVR, Correlation: 0.9299522767568704
Pair: DHR-NXPI, Correlation: 0.9363490473170054
Pair: DHR-ORLY, Correlation: 0.9197803993083807
Pair: DHR-ODFL, Correlation: 0.9533421139766882
Pair: DHR-PKG, Correlation: 0.920233901222253
Pair: DHR-PAYX, Correlation: 0.9740667601313712
Pair: DHR-PEP, Correlation: 0.9597882638797771
Pair: DHR-PNC, Correlation: 0.9245035760985526
Pair: DHR-POOL, Correlation: 0.9842767022966157
Pair: DHR-PG, Correlation: 0.9726093890452893
Pair: DHR-PLD, Correlation: 0.9843770145711443
Pair: DHR-PEG, Correlation: 0.9378775283442089
Pair: DHR-PTC, Correlation: 0.9379418653308985
Pair: DHR-PSA, Correlation: 0.9304581575171238
Pair: DHR-QCOM, Correlation: 0.9394755366841764
Pair: DHR-DGX, Correlation: 0.9682691380059966
Pair: DHR-RJF, Correlation: 0.9372873614585713
Pair: DHR-RF, Correlation: 0.9244243743539532
Pair: DHR-RSG, Correlation: 0.9445101910205553
Pair: DHR-RMD, Correlation: 0.9800564564475208
Pair: DHR-RVTY, Correlation: 0.947726694367999
Pair: DHR-ROK, Correlation: 0.96518231127055
Pair: DHR-ROL, Correlation: 0.9608167069578303
Pair: DHR-ROP, Correlation: 0.9654166745084609
Pair: DHR-ROST, Correlation: 0.907035382023588
Pair: DHR-SPGI, Correlation: 0.98384204434737
Pair: DHR-CRM, Correlation: 0.94225676551239
Pair: DHR-SBAC, Correlation: 0.916942295749606
Pair: DHR-STX, Correlation: 0.9158743979711632
Pair: DHR-SRE, Correlation: 0.9067955123555864
Pair: DHR-NOW, Correlation: 0.9506151871025622
Pair: DHR-SHW, Correlation: 0.9743811326714058
Pair: DHR-SO, Correlation: 0.945616860399404
Pair: DHR-SBUX, Correlation: 0.9293851413366281
Pair: DHR-STE, Correlation: 0.9831372950868765
Pair: DHR-SYK, Correlation: 0.9520118440688353
Pair: DHR-SNPS, Correlation: 0.9221026520282564
Pair: DHR-SYY, Correlation: 0.9274454443910257
Pair: DHR-TMUS, Correlation: 0.9612620597290462
Pair: DHR-TROW, Correlation: 0.9057272921678237
Pair: DHR-TTWO, Correlation: 0.9064091250379998
Pair: DHR-TGT, Correlation: 0.9396008028973364
Pair: DHR-TEL, Correlation: 0.9632954786624195
Pair: DHR-TDY, Correlation: 0.9742963424800869
Pair: DHR-TER, Correlation: 0.971328890778866
Pair: DHR-TSLA, Correlation: 0.9200718384466734
Pair: DHR-TXN, Correlation: 0.9846918623371019
Pair: DHR-TMO, Correlation: 0.9938148085964158
Pair: DHR-TJX, Correlation: 0.9175643830170059
Pair: DHR-TSCO, Correlation: 0.9412224170389395
Pair: DHR-TRV, Correlation: 0.9051042322544354
Pair: DHR-TRMB, Correlation: 0.9106759514621957
Pair: DHR-TYL, Correlation: 0.9628968920745633
Pair: DHR-UNP, Correlation: 0.9700806323096743
Pair: DHR-UPS, Correlation: 0.9462008325323044
Pair: DHR-UNH, Correlation: 0.9705175256701154
Pair: DHR-VRSN, Correlation: 0.9115767753596169
Pair: DHR-VRSK, Correlation: 0.961618357022148
Pair: DHR-V, Correlation: 0.9611016243633761
Pair: DHR-VMC, Correlation: 0.9223703470291865
Pair: DHR-WRB, Correlation: 0.9373954096837617
Pair: DHR-WMT, Correlation: 0.9317227793659342
Pair: DHR-WM, Correlation: 0.9640939462946372
Pair: DHR-WAT, Correlation: 0.9678742819241866
Pair: DHR-WEC, Correlation: 0.9378145004948242
Pair: DHR-WST, Correlation: 0.9744992937896307
Pair: DHR-WTW, Correlation: 0.9607327806130714
Pair: DHR-WDAY, Correlation: 0.9085286466808778
Pair: DHR-XEL, Correlation: 0.9378984531933303
Pair: DHR-XYL, Correlation: 0.9576380123704765
Pair: DHR-YUM, Correlation: 0.9590983721261243
Pair: DHR-ZBRA, Correlation: 0.9253546028585118
Pair: DHR-ZTS, Correlation: 0.9810756239301311
Pair: DRI-DE, Correlation: 0.942363862714603
Pair: DRI-DLR, Correlation: 0.9018305745535238
Pair: DRI-DFS, Correlation: 0.9387591957480856
Pair: DRI-DPZ, Correlation: 0.9257786751462924
Pair: DRI-DOV, Correlation: 0.9537769054109747
Pair: DRI-DHI, Correlation: 0.9190138697496727
Pair: DRI-DTE, Correlation: 0.9476303303495529
Pair: DRI-DUK, Correlation: 0.9427620425213896
Pair: DRI-ELV, Correlation: 0.9640832540339813
Pair: DRI-EMR, Correlation: 0.9441173130983178
Pair: DRI-ETR, Correlation: 0.9410983621127689
Pair: DRI-EFX, Correlation: 0.9361112055275046
Pair: DRI-EQIX, Correlation: 0.9409879673798283
Pair: DRI-EG, Correlation: 0.9517311612477787
Pair: DRI-EXC, Correlation: 0.9272684674725086
Pair: DRI-EXPD, Correlation: 0.9633598693627669
Pair: DRI-EXR, Correlation: 0.9337837685664069
Pair: DRI-FDS, Correlation: 0.9565486869262575
Pair: DRI-FAST, Correlation: 0.9306331311076546
Pair: DRI-FITB, Correlation: 0.9158824641902298
Pair: DRI-FI, Correlation: 0.9467153739938273
Pair: DRI-FTNT, Correlation: 0.9177314682189065
Pair: DRI-GRMN, Correlation: 0.9134514865080593
Pair: DRI-IT, Correlation: 0.9385124652456739
Pair: DRI-GD, Correlation: 0.9272937482216358
Pair: DRI-GPC, Correlation: 0.9272996912271207
Pair: DRI-GL, Correlation: 0.9317520623134936
Pair: DRI-GS, Correlation: 0.9155635436814052
Pair: DRI-HIG, Correlation: 0.9293253093015919
Pair: DRI-HCA, Correlation: 0.9537599586612836
Pair: DRI-HSY, Correlation: 0.9232945699372732
Pair: DRI-HLT, Correlation: 0.9303247158565136
Pair: DRI-HOLX, Correlation: 0.9474404856519557
Pair: DRI-HD, Correlation: 0.9649735965376834
Pair: DRI-HON, Correlation: 0.9631305470149507
Pair: DRI-HPQ, Correlation: 0.9082447829147179
Pair: DRI-HUM, Correlation: 0.9019657752499028
Pair: DRI-HBAN, Correlation: 0.9045086071807857
Pair: DRI-IEX, Correlation: 0.9657464707891651
Pair: DRI-IDXX, Correlation: 0.9339023458884391
Pair: DRI-ITW, Correlation: 0.9700458999429936
Pair: DRI-ICE, Correlation: 0.9579074688776603
Pair: DRI-IPG, Correlation: 0.9409473873332648
Pair: DRI-INTU, Correlation: 0.9518450694689413
Pair: DRI-ISRG, Correlation: 0.9457891558439216
Pair: DRI-IQV, Correlation: 0.9404999044308594
Pair: DRI-JBHT, Correlation: 0.948795543229208
Pair: DRI-JKHY, Correlation: 0.9157432826179439
Pair: DRI-J, Correlation: 0.9337721412967429
Pair: DRI-JNJ, Correlation: 0.9349493144184633
Pair: DRI-JCI, Correlation: 0.9153358350610773
Pair: DRI-JPM, Correlation: 0.9616643561722863
Pair: DRI-KDP, Correlation: 0.9493074755400834
Pair: DRI-LHX, Correlation: 0.9410637987162567
Pair: DRI-LH, Correlation: 0.9521459835015211
Pair: DRI-LRCX, Correlation: 0.9048016024392826
Pair: DRI-LDOS, Correlation: 0.9242539858606491
Pair: DRI-LEN, Correlation: 0.9028187505541023
Pair: DRI-LII, Correlation: 0.9265752143580045
Pair: DRI-LIN, Correlation: 0.9403149947020987
Pair: DRI-LYV, Correlation: 0.9565465852657994
Pair: DRI-LMT, Correlation: 0.9459473344240861
Pair: DRI-LOW, Correlation: 0.9584255069317524
Pair: DRI-MAR, Correlation: 0.961632068046812
Pair: DRI-MMC, Correlation: 0.9629256763266476
Pair: DRI-MLM, Correlation: 0.9506330103692633
Pair: DRI-MAS, Correlation: 0.9420744439438669
Pair: DRI-MA, Correlation: 0.9634507092432892
Pair: DRI-MCD, Correlation: 0.9793042206912188
Pair: DRI-MRK, Correlation: 0.9396157002048346
Pair: DRI-MET, Correlation: 0.9235924655470508
Pair: DRI-MTD, Correlation: 0.9474556558219623
Pair: DRI-MGM, Correlation: 0.9151596437613302
Pair: DRI-MCHP, Correlation: 0.9677458105519765
Pair: DRI-MU, Correlation: 0.904909654512348
Pair: DRI-MSFT, Correlation: 0.9388237054555479
Pair: DRI-MAA, Correlation: 0.9177834009552294
Pair: DRI-MOH, Correlation: 0.9420982331627962
Pair: DRI-MDLZ, Correlation: 0.955009420920573
Pair: DRI-MPWR, Correlation: 0.9066559842821399
Pair: DRI-MNST, Correlation: 0.9549119344443262
Pair: DRI-MCO, Correlation: 0.9495066004962923
Pair: DRI-MS, Correlation: 0.9410517022379358
Pair: DRI-MSI, Correlation: 0.9399448426555733
Pair: DRI-MSCI, Correlation: 0.9379355830161005
Pair: DRI-NDAQ, Correlation: 0.9535342626318893
Pair: DRI-NEE, Correlation: 0.9242403954644867
Pair: DRI-NI, Correlation: 0.9084760989223821
Pair: DRI-NDSN, Correlation: 0.9607239565488755
Pair: DRI-NSC, Correlation: 0.9485162900588787
Pair: DRI-NOC, Correlation: 0.9504501537039319
Pair: DRI-NVR, Correlation: 0.9524584290847846
Pair: DRI-NXPI, Correlation: 0.9359709523545082
Pair: DRI-ORLY, Correlation: 0.9444465059230533
Pair: DRI-ODFL, Correlation: 0.9386657514675385
Pair: DRI-ON, Correlation: 0.9065047995827061
Pair: DRI-OKE, Correlation: 0.9045375391968384
Pair: DRI-ORCL, Correlation: 0.904455677649752
Pair: DRI-OTIS, Correlation: 0.9079263857819934
Pair: DRI-PKG, Correlation: 0.9436164231222592
Pair: DRI-PH, Correlation: 0.9106872554267817
Pair: DRI-PAYX, Correlation: 0.9706287682611154
Pair: DRI-PEP, Correlation: 0.9612514443992041
Pair: DRI-PNC, Correlation: 0.9260594739598152
Pair: DRI-POOL, Correlation: 0.9178560018294344
Pair: DRI-PFG, Correlation: 0.9286644139397073
Pair: DRI-PG, Correlation: 0.944700296965036
Pair: DRI-PGR, Correlation: 0.9132914237255843
Pair: DRI-PLD, Correlation: 0.940691397940424
Pair: DRI-PRU, Correlation: 0.9005412922839792
Pair: DRI-PEG, Correlation: 0.9571921710361013
Pair: DRI-PTC, Correlation: 0.9685109607802229
Pair: DRI-PSA, Correlation: 0.9272563113647986
Pair: DRI-DGX, Correlation: 0.9562478344147284
Pair: DRI-RJF, Correlation: 0.9557803579415446
Pair: DRI-RTX, Correlation: 0.9206128149320735
Pair: DRI-O, Correlation: 0.9011801071617912
Pair: DRI-RF, Correlation: 0.9459435705095849
Pair: DRI-RSG, Correlation: 0.9546288812027048
Pair: DRI-RMD, Correlation: 0.9118121793017482
Pair: DRI-ROK, Correlation: 0.9535379411299083
Pair: DRI-ROL, Correlation: 0.9618771224798294
Pair: DRI-ROP, Correlation: 0.9668479375542669
Pair: DRI-ROST, Correlation: 0.9534853408874695
Pair: DRI-SPGI, Correlation: 0.9513710729791174
Pair: DRI-CRM, Correlation: 0.9284007512584276
Pair: DRI-SRE, Correlation: 0.9285362816816688
Pair: DRI-NOW, Correlation: 0.9117144189103066
Pair: DRI-SHW, Correlation: 0.952777732288366
Pair: DRI-SNA, Correlation: 0.9449213905952598
Pair: DRI-SO, Correlation: 0.9394321875037099
Pair: DRI-SBUX, Correlation: 0.9323328299269005
Pair: DRI-STE, Correlation: 0.9554650034066127
Pair: DRI-SYK, Correlation: 0.9780216482650816
Pair: DRI-SNPS, Correlation: 0.916969341225671
Pair: DRI-SYY, Correlation: 0.9563495099519498
Pair: DRI-TMUS, Correlation: 0.9471604947945018
Pair: DRI-TEL, Correlation: 0.9636557410118283
Pair: DRI-TDY, Correlation: 0.948563554180226
Pair: DRI-TER, Correlation: 0.9051555621281163
Pair: DRI-TXN, Correlation: 0.9659377712905656
Pair: DRI-TXT, Correlation: 0.9214467239066648
Pair: DRI-TMO, Correlation: 0.9436104543814342
Pair: DRI-TJX, Correlation: 0.9539329066737802
Pair: DRI-TSCO, Correlation: 0.9235455711507273
Pair: DRI-TT, Correlation: 0.9017488580102541
Pair: DRI-TDG, Correlation: 0.9241665269253724
Pair: DRI-TRV, Correlation: 0.954537490127297
Pair: DRI-TYL, Correlation: 0.925791633477405
Pair: DRI-ULTA, Correlation: 0.9452942935685748
Pair: DRI-UNP, Correlation: 0.9574287610424572
Pair: DRI-UNH, Correlation: 0.9621438099326105
Pair: DRI-VLO, Correlation: 0.9112595085230806
Pair: DRI-VRSN, Correlation: 0.9081996882827877
Pair: DRI-VRSK, Correlation: 0.9521234063404639
Pair: DRI-VRTX, Correlation: 0.9067482058202386
Pair: DRI-V, Correlation: 0.9665812141095528
Pair: DRI-VMC, Correlation: 0.9579721561064285
Pair: DRI-WRB, Correlation: 0.9509269686002707
Pair: DRI-WMT, Correlation: 0.9230529079026752
Pair: DRI-WM, Correlation: 0.9693824395756742
Pair: DRI-WAT, Correlation: 0.9521404917122607
Pair: DRI-WEC, Correlation: 0.9166265551833934
Pair: DRI-WELL, Correlation: 0.9011365199684859
Pair: DRI-WST, Correlation: 0.9133354287355321
Pair: DRI-WTW, Correlation: 0.9603751600570288
Pair: DRI-XEL, Correlation: 0.913621285794686
Pair: DRI-XYL, Correlation: 0.9605155067066894
Pair: DRI-YUM, Correlation: 0.9821560252343328
Pair: DRI-ZTS, Correlation: 0.919690897381642
Pair: DVA-LEN, Correlation: 0.9021450327136527
Pair: DVA-NXPI, Correlation: 0.9014898860661112
Pair: DVA-PNR, Correlation: 0.9328247355701604
Pair: DVA-STX, Correlation: 0.9171698501706126
Pair: DVA-VLTO, Correlation: 0.9426355041224711
Pair: DECK-DELL, Correlation: 0.9584849826681838
Pair: DECK-DHI, Correlation: 0.958635961946264
Pair: DECK-ETN, Correlation: 0.9835348272575669
Pair: DECK-ERIE, Correlation: 0.9342172260618353
Pair: DECK-FICO, Correlation: 0.9689162021473231
Pair: DECK-FAST, Correlation: 0.9214510318259366
Pair: DECK-IT, Correlation: 0.9414240276231967
Pair: DECK-GS, Correlation: 0.9062582352314926
Pair: DECK-HCA, Correlation: 0.921700073317338
Pair: DECK-HLT, Correlation: 0.9500209155674366
Pair: DECK-HWM, Correlation: 0.9255273416263777
Pair: DECK-HUBB, Correlation: 0.9657203997217102
Pair: DECK-IR, Correlation: 0.9777888670292902
Pair: DECK-ISRG, Correlation: 0.9109775219461655
Pair: DECK-IRM, Correlation: 0.9478098296928235
Pair: DECK-JBL, Correlation: 0.9527514959420635
Pair: DECK-KKR, Correlation: 0.9661768773624086
Pair: DECK-KLAC, Correlation: 0.9758072142518475
Pair: DECK-LRCX, Correlation: 0.9484910411924806
Pair: DECK-LEN, Correlation: 0.9489207961786502
Pair: DECK-LII, Correlation: 0.9088610946582629
Pair: DECK-LLY, Correlation: 0.9761869372344428
Pair: DECK-LIN, Correlation: 0.9438048603095024
Pair: DECK-MPC, Correlation: 0.9109529819401428
Pair: DECK-MMC, Correlation: 0.9025594300029773
Pair: DECK-MLM, Correlation: 0.920286980679221
Pair: DECK-MCK, Correlation: 0.9103826671476422
Pair: DECK-MSFT, Correlation: 0.9306773836010724
Pair: DECK-MPWR, Correlation: 0.9517776540678023
Pair: DECK-MSI, Correlation: 0.9485320477161657
Pair: DECK-NTAP, Correlation: 0.9031125398790424
Pair: DECK-NRG, Correlation: 0.916885491764328
Pair: DECK-NVDA, Correlation: 0.948974053729742
Pair: DECK-NVR, Correlation: 0.9229402697846532
Pair: DECK-ORLY, Correlation: 0.9249490162965451
Pair: DECK-ODFL, Correlation: 0.9089754480179447
Pair: DECK-ORCL, Correlation: 0.9584471325631093
Pair: DECK-PCAR, Correlation: 0.9596339411423431
Pair: DECK-PANW, Correlation: 0.9627488080088903
Pair: DECK-PH, Correlation: 0.9701223576291631
Pair: DECK-PGR, Correlation: 0.9571492529966057
Pair: DECK-PHM, Correlation: 0.9693909961903745
Pair: DECK-PWR, Correlation: 0.9722420584247466
Pair: DECK-RSG, Correlation: 0.9281924218442087
Pair: DECK-NOW, Correlation: 0.9148364303152968
Pair: DECK-STLD, Correlation: 0.9260081572782182
Pair: DECK-SNPS, Correlation: 0.9537043726815819
Pair: DECK-TJX, Correlation: 0.9114950002181487
Pair: DECK-TSCO, Correlation: 0.9226007885835723
Pair: DECK-TT, Correlation: 0.9739013323687618
Pair: DECK-TDG, Correlation: 0.9606796859628142
Pair: DECK-URI, Correlation: 0.9722854318996054
Pair: DECK-GWW, Correlation: 0.9694516133728884
Pair: DECK-WMT, Correlation: 0.916265923418999
Pair: DE-DXCM, Correlation: 0.9204301987019514
Pair: DE-DFS, Correlation: 0.9120570231796273
Pair: DE-DOV, Correlation: 0.9571179222156463
Pair: DE-DHI, Correlation: 0.9164815396016396
Pair: DE-DUK, Correlation: 0.9091344874842354
Pair: DE-ELV, Correlation: 0.9599677420563901
Pair: DE-EMR, Correlation: 0.9526122558279264
Pair: DE-ETR, Correlation: 0.910416352269783
Pair: DE-EFX, Correlation: 0.9110813762206746
Pair: DE-EQIX, Correlation: 0.9101378014409454
Pair: DE-EXC, Correlation: 0.9350600898963137
Pair: DE-EXPD, Correlation: 0.9670368335693302
Pair: DE-EXR, Correlation: 0.9300118930121576
Pair: DE-FDS, Correlation: 0.9560479445743975
Pair: DE-FAST, Correlation: 0.9547740119485839
Pair: DE-FTNT, Correlation: 0.9666616476035671
Pair: DE-GRMN, Correlation: 0.906479646286934
Pair: DE-IT, Correlation: 0.9353231923729386
Pair: DE-GPC, Correlation: 0.9276473605216342
Pair: DE-GS, Correlation: 0.9232665640191096
Pair: DE-HCA, Correlation: 0.9466330325370919
Pair: DE-HSY, Correlation: 0.944203099923778
Pair: DE-HLT, Correlation: 0.9165124091858109
Pair: DE-HOLX, Correlation: 0.9372964490532332
Pair: DE-HD, Correlation: 0.9443703534860171
Pair: DE-HON, Correlation: 0.9161255733351574
Pair: DE-HPQ, Correlation: 0.9285688006112701
Pair: DE-IEX, Correlation: 0.933338751024377
Pair: DE-IDXX, Correlation: 0.9391583115255113
Pair: DE-ITW, Correlation: 0.9462067682685298
Pair: DE-PODD, Correlation: 0.9137624835632141
Pair: DE-ICE, Correlation: 0.920794524808696
Pair: DE-IPG, Correlation: 0.9270776552396386
Pair: DE-INTU, Correlation: 0.9524703531792956
Pair: DE-ISRG, Correlation: 0.9235570998052414
Pair: DE-IQV, Correlation: 0.9431238044420067
Pair: DE-JBHT, Correlation: 0.9529625398598697
Pair: DE-J, Correlation: 0.9652809756568427
Pair: DE-JCI, Correlation: 0.9283837100809484
Pair: DE-JPM, Correlation: 0.9140947743708661
Pair: DE-KDP, Correlation: 0.9230826527063661
Pair: DE-KEYS, Correlation: 0.9448308473466793
Pair: DE-KLAC, Correlation: 0.9131563363084203
Pair: DE-LH, Correlation: 0.9456012667342962
Pair: DE-LRCX, Correlation: 0.9386582904124935
Pair: DE-LIN, Correlation: 0.9602974515173468
Pair: DE-LYV, Correlation: 0.9257666181386478
Pair: DE-LOW, Correlation: 0.9691803084132936
Pair: DE-LULU, Correlation: 0.9235051473508079
Pair: DE-MMC, Correlation: 0.9577632689030655
Pair: DE-MLM, Correlation: 0.929214212834932
Pair: DE-MA, Correlation: 0.9365729848801381
Pair: DE-MCD, Correlation: 0.9523939210785592
Pair: DE-MRK, Correlation: 0.9079816652322427
Pair: DE-MET, Correlation: 0.9376400404851978
Pair: DE-MTD, Correlation: 0.9596688892537636
Pair: DE-MCHP, Correlation: 0.9613468395261892
Pair: DE-MSFT, Correlation: 0.9540458055953048
Pair: DE-MAA, Correlation: 0.919518709546588
Pair: DE-MOH, Correlation: 0.9727171013549
Pair: DE-MDLZ, Correlation: 0.9207434511542627
Pair: DE-MPWR, Correlation: 0.9314563939376448
Pair: DE-MNST, Correlation: 0.9192211461176591
Pair: DE-MCO, Correlation: 0.9362895567039277
Pair: DE-MS, Correlation: 0.9673258870969026
Pair: DE-MSI, Correlation: 0.9332378988760244
Pair: DE-MSCI, Correlation: 0.9674894781193986
Pair: DE-NDAQ, Correlation: 0.9581127193664526
Pair: DE-NEE, Correlation: 0.9262890731342255
Pair: DE-NDSN, Correlation: 0.9538561883929264
Pair: DE-NSC, Correlation: 0.9335579862578263
Pair: DE-NOC, Correlation: 0.9043112341701925
Pair: DE-NUE, Correlation: 0.9335519951954727
Pair: DE-NVR, Correlation: 0.9217310520817773
Pair: DE-NXPI, Correlation: 0.9221226717850782
Pair: DE-ORLY, Correlation: 0.9401549455371803
Pair: DE-ODFL, Correlation: 0.9728519831037994
Pair: DE-ON, Correlation: 0.9536318999115315
Pair: DE-ORCL, Correlation: 0.9029838654723912
Pair: DE-PKG, Correlation: 0.9082986339000267
Pair: DE-PH, Correlation: 0.9079844692455652
Pair: DE-PAYX, Correlation: 0.9620964831961656
Pair: DE-PEP, Correlation: 0.944870234810812
Pair: DE-POOL, Correlation: 0.9428084358988332
Pair: DE-PFG, Correlation: 0.9070233693167458
Pair: DE-PG, Correlation: 0.9495022693891588
Pair: DE-PGR, Correlation: 0.9107926814082716
Pair: DE-PLD, Correlation: 0.9540861741125294
Pair: DE-PEG, Correlation: 0.9063438362307523
Pair: DE-PTC, Correlation: 0.9376954706065432
Pair: DE-PSA, Correlation: 0.9128670751315314
Pair: DE-QCOM, Correlation: 0.9227014350259022
Pair: DE-DGX, Correlation: 0.9351896608518677
Pair: DE-RJF, Correlation: 0.9612011553949874
Pair: DE-RF, Correlation: 0.9221852942499842
Pair: DE-RSG, Correlation: 0.9428378078479455
Pair: DE-RMD, Correlation: 0.9293870973064224
Pair: DE-ROK, Correlation: 0.9459916869113398
Pair: DE-ROL, Correlation: 0.9343685404658338
Pair: DE-ROP, Correlation: 0.927011333277892
Pair: DE-SPGI, Correlation: 0.9407289290806955
Pair: DE-NOW, Correlation: 0.9192842104551777
Pair: DE-SHW, Correlation: 0.9366738963620735
Pair: DE-SNA, Correlation: 0.9058836342873139
Pair: DE-SO, Correlation: 0.9344834072820166
Pair: DE-STLD, Correlation: 0.9213072892520813
Pair: DE-STE, Correlation: 0.9481778499173695
Pair: DE-SYK, Correlation: 0.931652405391269
Pair: DE-SNPS, Correlation: 0.9443171596091914
Pair: DE-TMUS, Correlation: 0.9464389106670674
Pair: DE-TEL, Correlation: 0.9413409423549818
Pair: DE-TDY, Correlation: 0.9385162994852716
Pair: DE-TER, Correlation: 0.9395952334265155
Pair: DE-TSLA, Correlation: 0.9261608427989269
Pair: DE-TXN, Correlation: 0.9560821610074
Pair: DE-TPL, Correlation: 0.9217845685679431
Pair: DE-TMO, Correlation: 0.9645417636118606
Pair: DE-TJX, Correlation: 0.9132188263372398
Pair: DE-TSCO, Correlation: 0.9578552541272651
Pair: DE-TT, Correlation: 0.9048429341694034
Pair: DE-TRV, Correlation: 0.904880313132055
Pair: DE-TYL, Correlation: 0.9038538574678724
Pair: DE-UNP, Correlation: 0.9378259505586736
Pair: DE-UPS, Correlation: 0.9317268828653535
Pair: DE-UNH, Correlation: 0.9679886109304076
Pair: DE-VRSK, Correlation: 0.9292300149144954
Pair: DE-VICI, Correlation: 0.9484455827629574
Pair: DE-V, Correlation: 0.9236575016574968
Pair: DE-VMC, Correlation: 0.9111423485466019
Pair: DE-WRB, Correlation: 0.9433737708860073
Pair: DE-WMT, Correlation: 0.9194126163142151
Pair: DE-WM, Correlation: 0.9503117483406412
Pair: DE-WAT, Correlation: 0.932862643968193
Pair: DE-WST, Correlation: 0.9489901485307727
Pair: DE-WTW, Correlation: 0.9332962597740075
Pair: DE-XYL, Correlation: 0.9232543697127225
Pair: DE-YUM, Correlation: 0.9395108804085572
Pair: DE-ZTS, Correlation: 0.9262443538138974
Pair: DELL-DHI, Correlation: 0.9140908343758151
Pair: DELL-ETN, Correlation: 0.9673220704406306
Pair: DELL-FICO, Correlation: 0.9279728912657954
Pair: DELL-HIG, Correlation: 0.9196702552783836
Pair: DELL-HLT, Correlation: 0.9269354043830149
Pair: DELL-HWM, Correlation: 0.9225426498308584
Pair: DELL-HUBB, Correlation: 0.9268508766485253
Pair: DELL-IR, Correlation: 0.942890783069604
Pair: DELL-IRM, Correlation: 0.9238443008062377
Pair: DELL-JPM, Correlation: 0.9243974474734766
Pair: DELL-KKR, Correlation: 0.9479202174657666
Pair: DELL-KLAC, Correlation: 0.9412790069091409
Pair: DELL-LRCX, Correlation: 0.9001695659595025
Pair: DELL-LEN, Correlation: 0.9262399156276964
Pair: DELL-LII, Correlation: 0.9443662091210127
Pair: DELL-LLY, Correlation: 0.944314184333647
Pair: DELL-MAR, Correlation: 0.9024256499173523
Pair: DELL-MLM, Correlation: 0.9238800961975466
Pair: DELL-META, Correlation: 0.9005536100128413
Pair: DELL-MPWR, Correlation: 0.9030558201667569
Pair: DELL-MSI, Correlation: 0.9066310996912781
Pair: DELL-NTAP, Correlation: 0.9085236658774949
Pair: DELL-NRG, Correlation: 0.9333341937695239
Pair: DELL-NVDA, Correlation: 0.961765151047506
Pair: DELL-NVR, Correlation: 0.9162523674954455
Pair: DELL-ORCL, Correlation: 0.9185114398832801
Pair: DELL-PCAR, Correlation: 0.928624052508054
Pair: DELL-PKG, Correlation: 0.9188059679847811
Pair: DELL-PANW, Correlation: 0.9175383251988392
Pair: DELL-PH, Correlation: 0.94837700305495
Pair: DELL-PGR, Correlation: 0.9290659220500218
Pair: DELL-PHM, Correlation: 0.947056023511518
Pair: DELL-PWR, Correlation: 0.9222502608003994
Pair: DELL-RSG, Correlation: 0.9098654784555779
Pair: DELL-TJX, Correlation: 0.9068960775015406
Pair: DELL-TT, Correlation: 0.9542709372978706
Pair: DELL-TDG, Correlation: 0.9456562253178177
Pair: DELL-URI, Correlation: 0.9443523602753343
Pair: DELL-VMC, Correlation: 0.9157359425581612
Pair: DELL-GWW, Correlation: 0.9189129220548298
Pair: DAL-LUV, Correlation: 0.9039041721045674
Pair: DAL-UAL, Correlation: 0.9114625900313024
Pair: DXCM-DPZ, Correlation: 0.9240884701811889
Pair: DXCM-DOV, Correlation: 0.9191584814234383
Pair: DXCM-EW, Correlation: 0.9248385283957149
Pair: DXCM-ELV, Correlation: 0.9056020231865274
Pair: DXCM-EFX, Correlation: 0.9041583268752025
Pair: DXCM-EQIX, Correlation: 0.9251116046496539
Pair: DXCM-EXPD, Correlation: 0.9347376394306871
Pair: DXCM-FDS, Correlation: 0.9408772458571448
Pair: DXCM-FAST, Correlation: 0.911515502013156
Pair: DXCM-FTNT, Correlation: 0.9115637775678801
Pair: DXCM-HSY, Correlation: 0.9034576914061816
Pair: DXCM-HOLX, Correlation: 0.9277882542834592
Pair: DXCM-HD, Correlation: 0.9256554754227042
Pair: DXCM-HUM, Correlation: 0.901435780211135
Pair: DXCM-IEX, Correlation: 0.9210970836408873
Pair: DXCM-IDXX, Correlation: 0.9562302797694121
Pair: DXCM-ITW, Correlation: 0.9167520569218021
Pair: DXCM-PODD, Correlation: 0.9403383533162274
Pair: DXCM-INTU, Correlation: 0.9284931915365751
Pair: DXCM-IQV, Correlation: 0.9217673174097957
Pair: DXCM-JBHT, Correlation: 0.9138285930956012
Pair: DXCM-J, Correlation: 0.9097677502548235
Pair: DXCM-KDP, Correlation: 0.9124187474471442
Pair: DXCM-KEYS, Correlation: 0.9275390188282518
Pair: DXCM-LH, Correlation: 0.9159222719749902
Pair: DXCM-LOW, Correlation: 0.9316928537576613
Pair: DXCM-LULU, Correlation: 0.9680052425382041
Pair: DXCM-MA, Correlation: 0.9160773246101902
Pair: DXCM-MCD, Correlation: 0.9092536154390455
Pair: DXCM-MTD, Correlation: 0.9405618300693461
Pair: DXCM-MCHP, Correlation: 0.929078506559256
Pair: DXCM-MSFT, Correlation: 0.921226790119624
Pair: DXCM-MAA, Correlation: 0.9051842957897934
Pair: DXCM-MOH, Correlation: 0.9361245534498318
Pair: DXCM-MDLZ, Correlation: 0.9017312578753066
Pair: DXCM-MNST, Correlation: 0.9051518872711763
Pair: DXCM-MCO, Correlation: 0.922552247632352
Pair: DXCM-MSCI, Correlation: 0.959621691215422
Pair: DXCM-NDAQ, Correlation: 0.9284363900801705
Pair: DXCM-NEE, Correlation: 0.9280094270674101
Pair: DXCM-NKE, Correlation: 0.9122209624105677
Pair: DXCM-NDSN, Correlation: 0.9372473666517424
Pair: DXCM-NSC, Correlation: 0.916374739664192
Pair: DXCM-ODFL, Correlation: 0.9217936968116477
Pair: DXCM-PAYX, Correlation: 0.9054331010758837
Pair: DXCM-PEP, Correlation: 0.9163318127410962
Pair: DXCM-POOL, Correlation: 0.9575554436409778
Pair: DXCM-PG, Correlation: 0.9261127284003839
Pair: DXCM-PLD, Correlation: 0.9463085610602645
Pair: DXCM-DGX, Correlation: 0.9072199060182622
Pair: DXCM-RMD, Correlation: 0.942887464590411
Pair: DXCM-RVTY, Correlation: 0.9045533119655973
Pair: DXCM-ROK, Correlation: 0.9391075303353238
Pair: DXCM-ROL, Correlation: 0.905236517633572
Pair: DXCM-ROP, Correlation: 0.9177446672603636
Pair: DXCM-SPGI, Correlation: 0.9367653179607861
Pair: DXCM-CRM, Correlation: 0.9088230701077238
Pair: DXCM-SHW, Correlation: 0.9160164969699442
Pair: DXCM-STE, Correlation: 0.9377885141430222
Pair: DXCM-TGT, Correlation: 0.9297046197838404
Pair: DXCM-TEL, Correlation: 0.9003441964241621
Pair: DXCM-TDY, Correlation: 0.9357321885883289
Pair: DXCM-TER, Correlation: 0.9354246382700482
Pair: DXCM-TXN, Correlation: 0.9234009227764443
Pair: DXCM-TMO, Correlation: 0.9550090003284173
Pair: DXCM-TYL, Correlation: 0.9099403639823415
Pair: DXCM-UNP, Correlation: 0.9147933926142415
Pair: DXCM-UPS, Correlation: 0.9194360331521797
Pair: DXCM-UNH, Correlation: 0.9077112044263392
Pair: DXCM-VRSK, Correlation: 0.9150633937461745
Pair: DXCM-V, Correlation: 0.9129865671355009
Pair: DXCM-WST, Correlation: 0.9664350959073118
Pair: DXCM-WTW, Correlation: 0.9028775201937075
Pair: DXCM-YUM, Correlation: 0.9028163269765984
Pair: DXCM-ZTS, Correlation: 0.9380015982924591
Pair: FANG-EOG, Correlation: 0.9336554018495415
Pair: FANG-GD, Correlation: 0.924723799549802
Pair: FANG-HIG, Correlation: 0.9058983237824194
Pair: FANG-MPC, Correlation: 0.9321202580784502
Pair: FANG-PSX, Correlation: 0.9356056403921943
Pair: FANG-STLD, Correlation: 0.9032061461849309
Pair: FANG-TXT, Correlation: 0.9121979153518478
Pair: FANG-VLO, Correlation: 0.9372424191902242
Pair: DLR-DPZ, Correlation: 0.9681311735738387
Pair: DLR-DOV, Correlation: 0.9156241481106626
Pair: DLR-DTE, Correlation: 0.9372032214484504
Pair: DLR-DUK, Correlation: 0.9344154130936603
Pair: DLR-EBAY, Correlation: 0.934898788015115
Pair: DLR-ECL, Correlation: 0.9497246277574637
Pair: DLR-EW, Correlation: 0.9182398533805793
Pair: DLR-EA, Correlation: 0.9340603216012625
Pair: DLR-ETR, Correlation: 0.9305575847949359
Pair: DLR-EFX, Correlation: 0.9340442005621719
Pair: DLR-EQIX, Correlation: 0.9696482328153534
Pair: DLR-ESS, Correlation: 0.9122002879696219
Pair: DLR-EVRG, Correlation: 0.92426811802723
Pair: DLR-EXPD, Correlation: 0.9096863776875579
Pair: DLR-EXR, Correlation: 0.9034807428058431
Pair: DLR-FDS, Correlation: 0.9120424026896582
Pair: DLR-FI, Correlation: 0.9495156553242166
Pair: DLR-GRMN, Correlation: 0.9237935464570213
Pair: DLR-GEV, Correlation: 0.9409215126929013
Pair: DLR-GEN, Correlation: 0.9269102414244835
Pair: DLR-HOLX, Correlation: 0.913133378525128
Pair: DLR-HD, Correlation: 0.9508133151156258
Pair: DLR-HON, Correlation: 0.9396040756967122
Pair: DLR-IEX, Correlation: 0.9312323903453826
Pair: DLR-IDXX, Correlation: 0.9154326278434722
Pair: DLR-ITW, Correlation: 0.9388886992922443
Pair: DLR-ICE, Correlation: 0.9597990045025239
Pair: DLR-INTU, Correlation: 0.9158697930445024
Pair: DLR-ISRG, Correlation: 0.9279171187689429
Pair: DLR-JKHY, Correlation: 0.9393269051885743
Pair: DLR-JNJ, Correlation: 0.928541883690977
Pair: DLR-JPM, Correlation: 0.9256552730796007
Pair: DLR-KDP, Correlation: 0.9256930129917328
Pair: DLR-KMB, Correlation: 0.9049804095297418
Pair: DLR-LHX, Correlation: 0.9415404393580326
Pair: DLR-LH, Correlation: 0.9281252216876833
Pair: DLR-LDOS, Correlation: 0.9406818305091185
Pair: DLR-LII, Correlation: 0.9195775445726578
Pair: DLR-LYV, Correlation: 0.9218982704692871
Pair: DLR-LMT, Correlation: 0.9205748869779021
Pair: DLR-LOW, Correlation: 0.9101778392278269
Pair: DLR-MAS, Correlation: 0.9597854525676268
Pair: DLR-MA, Correlation: 0.9407581429326961
Pair: DLR-MKC, Correlation: 0.9212502865545824
Pair: DLR-MCD, Correlation: 0.9179768446889736
Pair: DLR-META, Correlation: 0.9020998724214473
Pair: DLR-MTD, Correlation: 0.9097017074590856
Pair: DLR-MCHP, Correlation: 0.9108310043038124
Pair: DLR-MAA, Correlation: 0.9077074309214
Pair: DLR-MDLZ, Correlation: 0.9046813529335027
Pair: DLR-MNST, Correlation: 0.9096524222730478
Pair: DLR-MCO, Correlation: 0.9453918009763206
Pair: DLR-MSCI, Correlation: 0.9002184301374727
Pair: DLR-NDAQ, Correlation: 0.9272235540806664
Pair: DLR-NFLX, Correlation: 0.9413269665157228
Pair: DLR-NEE, Correlation: 0.9246177728480219
Pair: DLR-NI, Correlation: 0.9163214638091998
Pair: DLR-NDSN, Correlation: 0.934391954312958
Pair: DLR-NSC, Correlation: 0.9330234951555036
Pair: DLR-NOC, Correlation: 0.9051978312909328
Pair: DLR-NVR, Correlation: 0.9137484100482544
Pair: DLR-PKG, Correlation: 0.9210837547367791
Pair: DLR-PAYX, Correlation: 0.9143948815305488
Pair: DLR-PEP, Correlation: 0.901765921639627
Pair: DLR-PNC, Correlation: 0.9207528872783168
Pair: DLR-POOL, Correlation: 0.9150350781503576
Pair: DLR-PG, Correlation: 0.9172679944758763
Pair: DLR-PLD, Correlation: 0.91834720688232
Pair: DLR-PEG, Correlation: 0.9391570082064129
Pair: DLR-PTC, Correlation: 0.9062927429485618
Pair: DLR-DGX, Correlation: 0.9396032069177148
Pair: DLR-O, Correlation: 0.908393656087564
Pair: DLR-RMD, Correlation: 0.9082783811619211
Pair: DLR-ROK, Correlation: 0.9151640602782611
Pair: DLR-ROL, Correlation: 0.9367296801615932
Pair: DLR-ROP, Correlation: 0.9535921853073018
Pair: DLR-ROST, Correlation: 0.9398553564942684
Pair: DLR-SPGI, Correlation: 0.9528635685208539
Pair: DLR-CRM, Correlation: 0.9543567465621551
Pair: DLR-NOW, Correlation: 0.9073027067269219
Pair: DLR-SHW, Correlation: 0.9514983161200836
Pair: DLR-SO, Correlation: 0.900045423905539
Pair: DLR-SBUX, Correlation: 0.9055430299980435
Pair: DLR-STE, Correlation: 0.9353526358746802
Pair: DLR-SYK, Correlation: 0.9375975923114721
Pair: DLR-SYY, Correlation: 0.9175060147452763
Pair: DLR-TMUS, Correlation: 0.9217010508440197
Pair: DLR-TTWO, Correlation: 0.9527108407025331
Pair: DLR-TEL, Correlation: 0.923791899469225
Pair: DLR-TDY, Correlation: 0.9279566500347511
Pair: DLR-TER, Correlation: 0.9047263986665708
Pair: DLR-TXN, Correlation: 0.9403848257205364
Pair: DLR-TMO, Correlation: 0.9101718776175167
Pair: DLR-TYL, Correlation: 0.9557980870000888
Pair: DLR-UDR, Correlation: 0.9123279320084888
Pair: DLR-UNP, Correlation: 0.9338253426302794
Pair: DLR-UNH, Correlation: 0.9018224406694612
Pair: DLR-VRSN, Correlation: 0.9213217572207877
Pair: DLR-VRSK, Correlation: 0.9351722546486317
Pair: DLR-V, Correlation: 0.9511546814021676
Pair: DLR-VMC, Correlation: 0.9153338262562459
Pair: DLR-WMT, Correlation: 0.9042682589361357
Pair: DLR-WM, Correlation: 0.9171099295520054
Pair: DLR-WAT, Correlation: 0.9229891365125806
Pair: DLR-WEC, Correlation: 0.9387198316723685
Pair: DLR-WTW, Correlation: 0.939021174102847
Pair: DLR-XEL, Correlation: 0.9358592996121399
Pair: DLR-XYL, Correlation: 0.923306899383015
Pair: DLR-YUM, Correlation: 0.919872084337912
Pair: DLR-ZTS, Correlation: 0.9140609924141233
Pair: DFS-DOV, Correlation: 0.9584597970109717
Pair: DFS-DHI, Correlation: 0.9080597247451295
Pair: DFS-DTE, Correlation: 0.9296632172190685
Pair: DFS-DUK, Correlation: 0.9483164805313844
Pair: DFS-EMN, Correlation: 0.9199731700857383
Pair: DFS-EBAY, Correlation: 0.9017356129466232
Pair: DFS-ELV, Correlation: 0.9221229326234631
Pair: DFS-EMR, Correlation: 0.9601424374102694
Pair: DFS-ETR, Correlation: 0.9137643069748633
Pair: DFS-EFX, Correlation: 0.9474817915604106
Pair: DFS-EQIX, Correlation: 0.9002617320815249
Pair: DFS-EG, Correlation: 0.9198883906808345
Pair: DFS-EXPD, Correlation: 0.9175199317518827
Pair: DFS-EXR, Correlation: 0.9395907321288662
Pair: DFS-FDS, Correlation: 0.9111206920521184
Pair: DFS-FAST, Correlation: 0.9243606721258193
Pair: DFS-FITB, Correlation: 0.9649899679423147
Pair: DFS-FI, Correlation: 0.9138950322807062
Pair: DFS-FTNT, Correlation: 0.9051989266239188
Pair: DFS-GRMN, Correlation: 0.9300288232065247
Pair: DFS-IT, Correlation: 0.9326170104180102
Pair: DFS-GEN, Correlation: 0.9001318038889043
Pair: DFS-GD, Correlation: 0.9253196356208055
Pair: DFS-GPC, Correlation: 0.9163290647426082
Pair: DFS-GS, Correlation: 0.9528300866011431
Pair: DFS-HIG, Correlation: 0.9480596572815564
Pair: DFS-HCA, Correlation: 0.9524521732767756
Pair: DFS-HLT, Correlation: 0.9405976009076078
Pair: DFS-HOLX, Correlation: 0.9129548980932196
Pair: DFS-HD, Correlation: 0.942841098677984
Pair: DFS-HON, Correlation: 0.9396254056034329
Pair: DFS-HBAN, Correlation: 0.9304962059078237
Pair: DFS-IEX, Correlation: 0.9218728048123271
Pair: DFS-ITW, Correlation: 0.9367033642259414
Pair: DFS-ICE, Correlation: 0.9412598637777935
Pair: DFS-IPG, Correlation: 0.9465769260234836
Pair: DFS-INTU, Correlation: 0.9273221280675827
Pair: DFS-ISRG, Correlation: 0.9246766558033803
Pair: DFS-JBHT, Correlation: 0.9358291794937024
Pair: DFS-J, Correlation: 0.9264016927598232
Pair: DFS-JNJ, Correlation: 0.9108163980973956
Pair: DFS-JCI, Correlation: 0.9710342520669499
Pair: DFS-JPM, Correlation: 0.9553886530759772
Pair: DFS-KKR, Correlation: 0.9082901832305985
Pair: DFS-LHX, Correlation: 0.9078565368404713
Pair: DFS-LH, Correlation: 0.9390617814448318
Pair: DFS-LEN, Correlation: 0.9182166654381978
Pair: DFS-LII, Correlation: 0.9111214648083692
Pair: DFS-LIN, Correlation: 0.9176906240379856
Pair: DFS-LYV, Correlation: 0.9418427034084278
Pair: DFS-LMT, Correlation: 0.9095948044291099
Pair: DFS-L, Correlation: 0.9094293183728838
Pair: DFS-LOW, Correlation: 0.9441744173342763
Pair: DFS-LYB, Correlation: 0.9029306876813092
Pair: DFS-MAR, Correlation: 0.9394030767716715
Pair: DFS-MMC, Correlation: 0.9388258398074993
Pair: DFS-MLM, Correlation: 0.9427851812698186
Pair: DFS-MAS, Correlation: 0.9322352817033959
Pair: DFS-MA, Correlation: 0.9200653884629538
Pair: DFS-MCD, Correlation: 0.9191701475296602
Pair: DFS-MET, Correlation: 0.9549148599944469
Pair: DFS-MTD, Correlation: 0.9230342078136576
Pair: DFS-MGM, Correlation: 0.9224105026694449
Pair: DFS-MCHP, Correlation: 0.9257520167110683
Pair: DFS-MU, Correlation: 0.9200903225690996
Pair: DFS-MSFT, Correlation: 0.9099123459524309
Pair: DFS-MAA, Correlation: 0.9120715502223519
Pair: DFS-MDLZ, Correlation: 0.926117472820821
Pair: DFS-MPWR, Correlation: 0.9027702600164648
Pair: DFS-MNST, Correlation: 0.909991274720072
Pair: DFS-MCO, Correlation: 0.937878312993967
Pair: DFS-MS, Correlation: 0.9536442545033188
Pair: DFS-MSI, Correlation: 0.9258793771314883
Pair: DFS-NDAQ, Correlation: 0.9424410792740299
Pair: DFS-NDSN, Correlation: 0.931325073243789
Pair: DFS-NSC, Correlation: 0.9234391775423106
Pair: DFS-NOC, Correlation: 0.9080687433533597
Pair: DFS-NVR, Correlation: 0.9292053230138502
Pair: DFS-NXPI, Correlation: 0.9486647133868629
Pair: DFS-ORLY, Correlation: 0.9165513466737399
Pair: DFS-ODFL, Correlation: 0.9057911273169968
Pair: DFS-OMC, Correlation: 0.9116328887178259
Pair: DFS-OKE, Correlation: 0.9297407989427177
Pair: DFS-ORCL, Correlation: 0.9109076796040608
Pair: DFS-PKG, Correlation: 0.956600192368959
Pair: DFS-PH, Correlation: 0.9150007662201655
Pair: DFS-PAYX, Correlation: 0.9509160852180722
Pair: DFS-PNR, Correlation: 0.9367158903917021
Pair: DFS-PEP, Correlation: 0.9222854159652579
Pair: DFS-PM, Correlation: 0.9253775081267862
Pair: DFS-PNC, Correlation: 0.9491295631374866
Pair: DFS-PFG, Correlation: 0.9434263883578574
Pair: DFS-PG, Correlation: 0.9234356856219292
Pair: DFS-PLD, Correlation: 0.9104997383227991
Pair: DFS-PRU, Correlation: 0.9476394036589337
Pair: DFS-PEG, Correlation: 0.9447252664070348
Pair: DFS-PTC, Correlation: 0.9346462018846058
Pair: DFS-PSA, Correlation: 0.9460259221580094
Pair: DFS-QCOM, Correlation: 0.9006268386841573
Pair: DFS-DGX, Correlation: 0.9253361652366824
Pair: DFS-RJF, Correlation: 0.9594647504115531
Pair: DFS-RTX, Correlation: 0.9536405957630026
Pair: DFS-RF, Correlation: 0.9560645966711309
Pair: DFS-RSG, Correlation: 0.9289832497811817
Pair: DFS-ROK, Correlation: 0.9220972246429124
Pair: DFS-ROL, Correlation: 0.9152557667400785
Pair: DFS-ROP, Correlation: 0.9261146340900184
Pair: DFS-ROST, Correlation: 0.9112096259766215
Pair: DFS-SPGI, Correlation: 0.925122139519164
Pair: DFS-STX, Correlation: 0.9501022325191494
Pair: DFS-SRE, Correlation: 0.9261011228306516
Pair: DFS-NOW, Correlation: 0.9073827880881927
Pair: DFS-SHW, Correlation: 0.946133469597226
Pair: DFS-SNA, Correlation: 0.9514492303608546
Pair: DFS-SO, Correlation: 0.9316201391555601
Pair: DFS-STE, Correlation: 0.9168706542193459
Pair: DFS-SYK, Correlation: 0.9408673283638986
Pair: DFS-SYF, Correlation: 0.915414652680708
Pair: DFS-SYY, Correlation: 0.9127995421847195
Pair: DFS-TMUS, Correlation: 0.9278268512210054
Pair: DFS-TEL, Correlation: 0.9647781010246423
Pair: DFS-TDY, Correlation: 0.9054854399464143
Pair: DFS-TXN, Correlation: 0.9405114395988453
Pair: DFS-TPL, Correlation: 0.9008249039387598
Pair: DFS-TXT, Correlation: 0.9384991298871829
Pair: DFS-TMO, Correlation: 0.9164791536416086
Pair: DFS-TJX, Correlation: 0.9383776981237684
Pair: DFS-TSCO, Correlation: 0.9280049762184011
Pair: DFS-TT, Correlation: 0.9133230110363733
Pair: DFS-TDG, Correlation: 0.907704788696159
Pair: DFS-TRV, Correlation: 0.9614306840907911
Pair: DFS-TYL, Correlation: 0.9240584440638964
Pair: DFS-UNP, Correlation: 0.9389989330265684
Pair: DFS-URI, Correlation: 0.9094229221194814
Pair: DFS-UNH, Correlation: 0.9251150818070888
Pair: DFS-VRSK, Correlation: 0.9178242231414184
Pair: DFS-V, Correlation: 0.9224628068139757
Pair: DFS-VMC, Correlation: 0.9430837586168173
Pair: DFS-WRB, Correlation: 0.9300890316255951
Pair: DFS-WMT, Correlation: 0.9204274857063214
Pair: DFS-WM, Correlation: 0.939878619105418
Pair: DFS-WAT, Correlation: 0.9426669731872029
Pair: DFS-WELL, Correlation: 0.93717763561462
Pair: DFS-WY, Correlation: 0.9035010396119518
Pair: DFS-WTW, Correlation: 0.9366362224360841
Pair: DFS-XYL, Correlation: 0.933582401814272
Pair: DFS-YUM, Correlation: 0.9412411328570863
Pair: DG-EW, Correlation: 0.9365194431759778
Pair: DG-EL, Correlation: 0.9518944762813375
Pair: DG-ES, Correlation: 0.9418356238617613
Pair: DG-FMC, Correlation: 0.9323326286036094
Pair: DG-HUM, Correlation: 0.9263109289532668
Pair: DG-PODD, Correlation: 0.9374423966436252
Pair: DG-KDP, Correlation: 0.911198658619442
Pair: DG-MKC, Correlation: 0.9236307454017041
Pair: DG-NEE, Correlation: 0.9267816564874357
Pair: DG-NKE, Correlation: 0.9356374935837715
Pair: DG-PAYC, Correlation: 0.9212045337387306
Pair: DG-PFE, Correlation: 0.9098927088508906
Pair: DG-RMD, Correlation: 0.9191714224233091
Pair: DG-RVTY, Correlation: 0.936014522050707
Pair: DG-SBAC, Correlation: 0.9556969070438353
Pair: DG-TDY, Correlation: 0.9017810718250061
Pair: DG-UPS, Correlation: 0.9120157779279497
Pair: DG-VRSN, Correlation: 0.9043310636642522
Pair: DG-WEC, Correlation: 0.9107029717597297
Pair: DG-XEL, Correlation: 0.922644505537343
Pair: DLTR-GPC, Correlation: 0.9011103469970791
Pair: DLTR-HUM, Correlation: 0.9036079443538081
Pair: DLTR-JNJ, Correlation: 0.9049185516924241
Pair: DLTR-PFE, Correlation: 0.912389446454974
Pair: DLTR-SJM, Correlation: 0.9126206199595784
Pair: DLTR-ULTA, Correlation: 0.9141716863566477
Pair: D-ES, Correlation: 0.9093904679913418
Pair: D-FIS, Correlation: 0.9053084245878548
Pair: D-HRL, Correlation: 0.926263908578374
Pair: D-IFF, Correlation: 0.9243480476447787
Pair: D-MDT, Correlation: 0.9117435429205927
Pair: D-TSN, Correlation: 0.9246523488135566
Pair: D-VLTO, Correlation: 0.9305766182897718
Pair: D-VZ, Correlation: 0.9293177988058977
Pair: DPZ-DOV, Correlation: 0.9494657553029189
Pair: DPZ-DTE, Correlation: 0.9450550551015373
Pair: DPZ-DUK, Correlation: 0.9410987900108739
Pair: DPZ-EBAY, Correlation: 0.9479591895682709
Pair: DPZ-ECL, Correlation: 0.9496427914556531
Pair: DPZ-EW, Correlation: 0.9533043726126346
Pair: DPZ-EA, Correlation: 0.9314778751209751
Pair: DPZ-ELV, Correlation: 0.9309850635463053
Pair: DPZ-EMR, Correlation: 0.9128562776638989
Pair: DPZ-ETR, Correlation: 0.9320002960010748
Pair: DPZ-EFX, Correlation: 0.9511447575996009
Pair: DPZ-EQIX, Correlation: 0.9730334037552227
Pair: DPZ-EVRG, Correlation: 0.9222281802272968
Pair: DPZ-ES, Correlation: 0.9123188622687648
Pair: DPZ-EXPD, Correlation: 0.9485724386069618
Pair: DPZ-EXR, Correlation: 0.9352483023988353
Pair: DPZ-FDS, Correlation: 0.9479815266313186
Pair: DPZ-FAST, Correlation: 0.9161707673024471
Pair: DPZ-FITB, Correlation: 0.9038913699104411
Pair: DPZ-FI, Correlation: 0.9392693111665023
Pair: DPZ-GRMN, Correlation: 0.9353872533684757
Pair: DPZ-GEN, Correlation: 0.9359050663145956
Pair: DPZ-HOLX, Correlation: 0.9428508467113361
Pair: DPZ-HD, Correlation: 0.9724765914006895
Pair: DPZ-HON, Correlation: 0.9642257601740244
Pair: DPZ-HUM, Correlation: 0.918946302829598
Pair: DPZ-IEX, Correlation: 0.9677799213868055
Pair: DPZ-IDXX, Correlation: 0.9590832354960251
Pair: DPZ-ITW, Correlation: 0.9599671432655711
Pair: DPZ-PODD, Correlation: 0.9038239132274388
Pair: DPZ-ICE, Correlation: 0.9686102173454922
Pair: DPZ-INTU, Correlation: 0.9469880190374657
Pair: DPZ-ISRG, Correlation: 0.9357711374066107
Pair: DPZ-IQV, Correlation: 0.9529702258168229
Pair: DPZ-JBHT, Correlation: 0.9342488450850529
Pair: DPZ-JKHY, Correlation: 0.9581146460122955
Pair: DPZ-J, Correlation: 0.9218738398630415
Pair: DPZ-JNJ, Correlation: 0.9513033737618343
Pair: DPZ-JPM, Correlation: 0.9320067183379394
Pair: DPZ-KDP, Correlation: 0.9593552663187682
Pair: DPZ-KEYS, Correlation: 0.9068864537414408
Pair: DPZ-KMB, Correlation: 0.906762650807454
Pair: DPZ-LHX, Correlation: 0.9576630168338335
Pair: DPZ-LH, Correlation: 0.9577462312414277
Pair: DPZ-LDOS, Correlation: 0.9374536074126448
Pair: DPZ-LII, Correlation: 0.9042004074674687
Pair: DPZ-LYV, Correlation: 0.9412034657076628
Pair: DPZ-LMT, Correlation: 0.9248441829433163
Pair: DPZ-LOW, Correlation: 0.943886287678922
Pair: DPZ-LULU, Correlation: 0.9180021023664781
Pair: DPZ-MMC, Correlation: 0.9249186748921449
Pair: DPZ-MLM, Correlation: 0.9043925850116173
Pair: DPZ-MAS, Correlation: 0.9584717215563623
Pair: DPZ-MA, Correlation: 0.9611701985141319
Pair: DPZ-MKC, Correlation: 0.9377691679738516
Pair: DPZ-MCD, Correlation: 0.9402761079644805
Pair: DPZ-MTD, Correlation: 0.9542078838718948
Pair: DPZ-MCHP, Correlation: 0.9478484216548589
Pair: DPZ-MU, Correlation: 0.922895767108262
Pair: DPZ-MSFT, Correlation: 0.9239548549521194
Pair: DPZ-MAA, Correlation: 0.9333016122577091
Pair: DPZ-MOH, Correlation: 0.918518043403448
Pair: DPZ-MDLZ, Correlation: 0.9317693138637239
Pair: DPZ-MNST, Correlation: 0.9373439674456853
Pair: DPZ-MCO, Correlation: 0.9654696325377699
Pair: DPZ-MS, Correlation: 0.9067421260731269
Pair: DPZ-MSCI, Correlation: 0.9438937951959587
Pair: DPZ-NDAQ, Correlation: 0.9576498391906126
Pair: DPZ-NFLX, Correlation: 0.9434850997919205
Pair: DPZ-NEE, Correlation: 0.9584320461700271
Pair: DPZ-NKE, Correlation: 0.929234163597253
Pair: DPZ-NDSN, Correlation: 0.9669016542133042
Pair: DPZ-NSC, Correlation: 0.9648714771187078
Pair: DPZ-NOC, Correlation: 0.9216862816294733
Pair: DPZ-NVR, Correlation: 0.9137407717799693
Pair: DPZ-NXPI, Correlation: 0.9266439392569884
Pair: DPZ-ODFL, Correlation: 0.9005363445975336
Pair: DPZ-PKG, Correlation: 0.9213411142263261
Pair: DPZ-PAYX, Correlation: 0.941349191312297
Pair: DPZ-PEP, Correlation: 0.9361332085599866
Pair: DPZ-PNC, Correlation: 0.933403842311487
Pair: DPZ-POOL, Correlation: 0.9586695765844211
Pair: DPZ-PG, Correlation: 0.9425320199189341
Pair: DPZ-PLD, Correlation: 0.9508850840300499
Pair: DPZ-PEG, Correlation: 0.9360874869113563
Pair: DPZ-PTC, Correlation: 0.9328665849943077
Pair: DPZ-PSA, Correlation: 0.9024086034283944
Pair: DPZ-DGX, Correlation: 0.9590695540430673
Pair: DPZ-O, Correlation: 0.9065445886149817
Pair: DPZ-RF, Correlation: 0.9066300209671116
Pair: DPZ-RSG, Correlation: 0.9112336306588333
Pair: DPZ-RMD, Correlation: 0.9527279887334608
Pair: DPZ-RVTY, Correlation: 0.9393003068920339
Pair: DPZ-ROK, Correlation: 0.9562064273073385
Pair: DPZ-ROL, Correlation: 0.958558020789375
Pair: DPZ-ROP, Correlation: 0.973028478688178
Pair: DPZ-ROST, Correlation: 0.9427739328678335
Pair: DPZ-SPGI, Correlation: 0.9747608613805466
Pair: DPZ-CRM, Correlation: 0.9687887490300334
Pair: DPZ-SBAC, Correlation: 0.9285857519385466
Pair: DPZ-STX, Correlation: 0.9046150035215776
Pair: DPZ-SRE, Correlation: 0.9062459317456257
Pair: DPZ-NOW, Correlation: 0.9289066885513518
Pair: DPZ-SHW, Correlation: 0.9674136338258622
Pair: DPZ-SO, Correlation: 0.9058157732662492
Pair: DPZ-SBUX, Correlation: 0.9344514541647878
Pair: DPZ-STE, Correlation: 0.9659770598240616
Pair: DPZ-SYK, Correlation: 0.9488076870305985
Pair: DPZ-SYY, Correlation: 0.9359654574859634
Pair: DPZ-TMUS, Correlation: 0.9359358355822979
Pair: DPZ-TROW, Correlation: 0.9252062309010363
Pair: DPZ-TTWO, Correlation: 0.9543107118382592
Pair: DPZ-TEL, Correlation: 0.9565671380294106
Pair: DPZ-TDY, Correlation: 0.9603087961057113
Pair: DPZ-TER, Correlation: 0.9405456374238111
Pair: DPZ-TXN, Correlation: 0.9671092750941757
Pair: DPZ-TMO, Correlation: 0.9570152985071005
Pair: DPZ-TJX, Correlation: 0.9098726739661057
Pair: DPZ-TYL, Correlation: 0.9701164487650683
Pair: DPZ-UDR, Correlation: 0.9151242181735965
Pair: DPZ-UNP, Correlation: 0.9657040578977252
Pair: DPZ-UPS, Correlation: 0.9088551018605576
Pair: DPZ-UNH, Correlation: 0.9340761142284941
Pair: DPZ-VRSN, Correlation: 0.9445013214052753
Pair: DPZ-VRSK, Correlation: 0.952911143405486
Pair: DPZ-V, Correlation: 0.9696781484471017
Pair: DPZ-VMC, Correlation: 0.9193583329167665
Pair: DPZ-WMT, Correlation: 0.9095978377047228
Pair: DPZ-WM, Correlation: 0.938510326697457
Pair: DPZ-WAT, Correlation: 0.9544036270018016
Pair: DPZ-WEC, Correlation: 0.9472144584415848
Pair: DPZ-WST, Correlation: 0.9396407670712925
Pair: DPZ-WTW, Correlation: 0.9519136185715491
Pair: DPZ-WDAY, Correlation: 0.9242551910620894
Pair: DPZ-XEL, Correlation: 0.9449482053141438
Pair: DPZ-XYL, Correlation: 0.9561819160421806
Pair: DPZ-YUM, Correlation: 0.9490778095142811
Pair: DPZ-ZBRA, Correlation: 0.9161444290133077
Pair: DPZ-ZTS, Correlation: 0.9622153969363696
Pair: DOV-DHI, Correlation: 0.9427613428834354
Pair: DOV-DTE, Correlation: 0.9332205867131244
Pair: DOV-DUK, Correlation: 0.9527410691038422
Pair: DOV-ETN, Correlation: 0.9149824919739973
Pair: DOV-EBAY, Correlation: 0.9231331188105796
Pair: DOV-ECL, Correlation: 0.9180298837013442
Pair: DOV-EW, Correlation: 0.9095623156006847
Pair: DOV-ELV, Correlation: 0.9574068586662604
Pair: DOV-EMR, Correlation: 0.9791837849762107
Pair: DOV-ETR, Correlation: 0.9538608586516969
Pair: DOV-EFX, Correlation: 0.9606848214256096
Pair: DOV-EQIX, Correlation: 0.9531065703271167
Pair: DOV-ERIE, Correlation: 0.9051233550813312
Pair: DOV-EG, Correlation: 0.9174673930279342
Pair: DOV-EXC, Correlation: 0.9055797614107446
Pair: DOV-EXPD, Correlation: 0.9734726392208973
Pair: DOV-EXR, Correlation: 0.950815714157382
Pair: DOV-FDS, Correlation: 0.9646917358373098
Pair: DOV-FAST, Correlation: 0.975100941926179
Pair: DOV-FITB, Correlation: 0.9404175017061785
Pair: DOV-FI, Correlation: 0.9415703242600563
Pair: DOV-FTNT, Correlation: 0.9513157012420305
Pair: DOV-GRMN, Correlation: 0.9739335048552252
Pair: DOV-IT, Correlation: 0.9450065544298263
Pair: DOV-GEN, Correlation: 0.9358122213037882
Pair: DOV-GPC, Correlation: 0.9085686569896081
Pair: DOV-GS, Correlation: 0.9493779859223757
Pair: DOV-HIG, Correlation: 0.9291834792279707
Pair: DOV-HCA, Correlation: 0.9684103408107951
Pair: DOV-HSY, Correlation: 0.9244125841753225
Pair: DOV-HLT, Correlation: 0.9575932058581281
Pair: DOV-HOLX, Correlation: 0.9460929046231579
Pair: DOV-HD, Correlation: 0.9797107527770743
Pair: DOV-HON, Correlation: 0.956251114701593
Pair: DOV-HPQ, Correlation: 0.9218092018635757
Pair: DOV-HUBB, Correlation: 0.90794873285824
Pair: DOV-IEX, Correlation: 0.9601817318294886
Pair: DOV-IDXX, Correlation: 0.9572463531179857
Pair: DOV-ITW, Correlation: 0.9721752160506912
Pair: DOV-IR, Correlation: 0.9082598384435725
Pair: DOV-PODD, Correlation: 0.9104452294302157
Pair: DOV-ICE, Correlation: 0.9773930825027566
Pair: DOV-IPG, Correlation: 0.9306181530998914
Pair: DOV-INTU, Correlation: 0.9820394131508347
Pair: DOV-ISRG, Correlation: 0.9714092178083915
Pair: DOV-INVH, Correlation: 0.9287877493887997
Pair: DOV-IQV, Correlation: 0.960062019284835
Pair: DOV-JBHT, Correlation: 0.9539935482229369
Pair: DOV-JKHY, Correlation: 0.9037165298855039
Pair: DOV-J, Correlation: 0.9795177366342993
Pair: DOV-JNJ, Correlation: 0.9257723244271326
Pair: DOV-JCI, Correlation: 0.9592839566897137
Pair: DOV-JPM, Correlation: 0.9704111386146433
Pair: DOV-KDP, Correlation: 0.9439457355610881
Pair: DOV-KEYS, Correlation: 0.9403244985509861
Pair: DOV-KKR, Correlation: 0.9266705208350652
Pair: DOV-KLAC, Correlation: 0.926207609899104
Pair: DOV-LHX, Correlation: 0.9404952140170805
Pair: DOV-LH, Correlation: 0.9631893651655593
Pair: DOV-LRCX, Correlation: 0.9501550916261401
Pair: DOV-LDOS, Correlation: 0.9481499976936719
Pair: DOV-LEN, Correlation: 0.9315869807264432
Pair: DOV-LII, Correlation: 0.9310785532070975
Pair: DOV-LIN, Correlation: 0.9680475987272098
Pair: DOV-LYV, Correlation: 0.9648333428173176
Pair: DOV-LMT, Correlation: 0.9272200614305106
Pair: DOV-LOW, Correlation: 0.9814887338341294
Pair: DOV-LULU, Correlation: 0.9196221984341021
Pair: DOV-MAR, Correlation: 0.9355276197112318
Pair: DOV-MMC, Correlation: 0.9727881735272383
Pair: DOV-MLM, Correlation: 0.9571153299317748
Pair: DOV-MAS, Correlation: 0.9580389904211886
Pair: DOV-MA, Correlation: 0.9741910842403981
Pair: DOV-MCD, Correlation: 0.9616283532965627
Pair: DOV-MRK, Correlation: 0.9282045024909003
Pair: DOV-MET, Correlation: 0.9432653276839112
Pair: DOV-MTD, Correlation: 0.9688189145170004
Pair: DOV-MCHP, Correlation: 0.9698081408354937
Pair: DOV-MU, Correlation: 0.9507119095492926
Pair: DOV-MSFT, Correlation: 0.9724829875453511
Pair: DOV-MAA, Correlation: 0.9400201063696054
Pair: DOV-MOH, Correlation: 0.9541395033745247
Pair: DOV-MDLZ, Correlation: 0.9470803718761813
Pair: DOV-MPWR, Correlation: 0.9486936987259709
Pair: DOV-MNST, Correlation: 0.9289960433252109
Pair: DOV-MCO, Correlation: 0.9859184202954161
Pair: DOV-MS, Correlation: 0.9718675412399451
Pair: DOV-MSI, Correlation: 0.9590472657461098
Pair: DOV-MSCI, Correlation: 0.9719706985430558
Pair: DOV-NDAQ, Correlation: 0.9785854243791151
Pair: DOV-NTAP, Correlation: 0.9067647795593458
Pair: DOV-NFLX, Correlation: 0.9109549475083452
Pair: DOV-NEE, Correlation: 0.95072433531498
Pair: DOV-NDSN, Correlation: 0.9757675677028896
Pair: DOV-NSC, Correlation: 0.9654019984782404
Pair: DOV-NOC, Correlation: 0.9201678401879021
Pair: DOV-NVR, Correlation: 0.9627982852189347
Pair: DOV-NXPI, Correlation: 0.9575779378300047
Pair: DOV-ORLY, Correlation: 0.9436599859068213
Pair: DOV-ODFL, Correlation: 0.9623546629226697
Pair: DOV-ORCL, Correlation: 0.9305924869679424
Pair: DOV-OTIS, Correlation: 0.9371373439131389
Pair: DOV-PCAR, Correlation: 0.913533242722103
Pair: DOV-PKG, Correlation: 0.9533603837472813
Pair: DOV-PANW, Correlation: 0.9002512198958247
Pair: DOV-PH, Correlation: 0.9356777030376541
Pair: DOV-PAYX, Correlation: 0.9748267249548795
Pair: DOV-PNR, Correlation: 0.9233714581473095
Pair: DOV-PEP, Correlation: 0.9541826948136147
Pair: DOV-PNC, Correlation: 0.9359442882249904
Pair: DOV-POOL, Correlation: 0.9581688444643608
Pair: DOV-PFG, Correlation: 0.9119522640770114
Pair: DOV-PG, Correlation: 0.9769366597513944
Pair: DOV-PGR, Correlation: 0.9331219029214189
Pair: DOV-PLD, Correlation: 0.9671701190743404
Pair: DOV-PEG, Correlation: 0.9576845472564527
Pair: DOV-PTC, Correlation: 0.9608892513887716
Pair: DOV-PSA, Correlation: 0.9322368043406583
Pair: DOV-QCOM, Correlation: 0.9532546594249279
Pair: DOV-DGX, Correlation: 0.9546820799951118
Pair: DOV-RJF, Correlation: 0.9602344533423267
Pair: DOV-RTX, Correlation: 0.92018643172241
Pair: DOV-RF, Correlation: 0.9400047293357399
Pair: DOV-RSG, Correlation: 0.9639028566285107
Pair: DOV-RMD, Correlation: 0.9543959778343958
Pair: DOV-RVTY, Correlation: 0.9110875718278096
Pair: DOV-ROK, Correlation: 0.9662156811405883
Pair: DOV-ROL, Correlation: 0.9598275631619824
Pair: DOV-ROP, Correlation: 0.9711544050209316
Pair: DOV-ROST, Correlation: 0.9292251024936039
Pair: DOV-SPGI, Correlation: 0.9818288298752816
Pair: DOV-CRM, Correlation: 0.9504836826535281
Pair: DOV-STX, Correlation: 0.9566826251180094
Pair: DOV-SRE, Correlation: 0.9217622132941422
Pair: DOV-NOW, Correlation: 0.9688291390391846
Pair: DOV-SHW, Correlation: 0.9840369661392145
Pair: DOV-SNA, Correlation: 0.9243386451348944
Pair: DOV-SO, Correlation: 0.9566526162628726
Pair: DOV-SBUX, Correlation: 0.9190672692830819
Pair: DOV-STE, Correlation: 0.9724744464228239
Pair: DOV-SYK, Correlation: 0.9737940684413818
Pair: DOV-SNPS, Correlation: 0.9397961580706663
Pair: DOV-SYY, Correlation: 0.9188069614094606
Pair: DOV-TMUS, Correlation: 0.965710969668141
Pair: DOV-TGT, Correlation: 0.9093957317238963
Pair: DOV-TEL, Correlation: 0.9760733878034584
Pair: DOV-TDY, Correlation: 0.9651067640658846
Pair: DOV-TER, Correlation: 0.9616657755838669
Pair: DOV-TXN, Correlation: 0.9797591191476194
Pair: DOV-TPL, Correlation: 0.908436554113152
Pair: DOV-TMO, Correlation: 0.9744785692196437
Pair: DOV-TJX, Correlation: 0.9555189774132365
Pair: DOV-TSCO, Correlation: 0.9610391874317712
Pair: DOV-TT, Correlation: 0.9436115843889725
Pair: DOV-TDG, Correlation: 0.940851907627524
Pair: DOV-TRV, Correlation: 0.9405698202978016
Pair: DOV-TRMB, Correlation: 0.9003148921633334
Pair: DOV-TYL, Correlation: 0.9642659260236706
Pair: DOV-UNP, Correlation: 0.9743755986998458
Pair: DOV-UPS, Correlation: 0.9169949003245497
Pair: DOV-URI, Correlation: 0.9213134022207669
Pair: DOV-UNH, Correlation: 0.9621523475400123
Pair: DOV-VLTO, Correlation: 0.9203198104810344
Pair: DOV-VRSK, Correlation: 0.9706444140677069
Pair: DOV-VRTX, Correlation: 0.9130620548741802
Pair: DOV-V, Correlation: 0.9676636104692682
Pair: DOV-VMC, Correlation: 0.9470903940154368
Pair: DOV-WRB, Correlation: 0.9532342674678482
Pair: DOV-GWW, Correlation: 0.9021415290345728
Pair: DOV-WMT, Correlation: 0.9637440473284364
Pair: DOV-WM, Correlation: 0.9752065932517855
Pair: DOV-WAT, Correlation: 0.9592780383013866
Pair: DOV-WEC, Correlation: 0.9166447636545804
Pair: DOV-WELL, Correlation: 0.9078112035493751
Pair: DOV-WST, Correlation: 0.9522644100136842
Pair: DOV-WTW, Correlation: 0.9753001914609095
Pair: DOV-WDAY, Correlation: 0.9166971297043753
Pair: DOV-XEL, Correlation: 0.9081114343712268
Pair: DOV-XYL, Correlation: 0.9697580338296766
Pair: DOV-YUM, Correlation: 0.9676152012553563
Pair: DOV-ZBRA, Correlation: 0.90512154221234
Pair: DOV-ZTS, Correlation: 0.9527709297233501
Pair: DOW-LYB, Correlation: 0.9377382358039731
Pair: DHI-ETN, Correlation: 0.9748846221101405
Pair: DHI-ELV, Correlation: 0.9090903804005058
Pair: DHI-EMR, Correlation: 0.9411849936628168
Pair: DHI-EFX, Correlation: 0.9189021055331692
Pair: DHI-EQIX, Correlation: 0.9057729971838767
Pair: DHI-ERIE, Correlation: 0.9576808558896227
Pair: DHI-EG, Correlation: 0.9152590681454819
Pair: DHI-EXPD, Correlation: 0.9278565910497782
Pair: DHI-FDS, Correlation: 0.9146927664169797
Pair: DHI-FICO, Correlation: 0.9557850024550095
Pair: DHI-FAST, Correlation: 0.9656287079064828
Pair: DHI-FI, Correlation: 0.920064869687971
Pair: DHI-FTNT, Correlation: 0.9271313393223166
Pair: DHI-GRMN, Correlation: 0.9365735225798034
Pair: DHI-IT, Correlation: 0.9704409241230935
Pair: DHI-GS, Correlation: 0.9475334067591075
Pair: DHI-HIG, Correlation: 0.9460973767931592
Pair: DHI-HCA, Correlation: 0.9674635064380427
Pair: DHI-HLT, Correlation: 0.9664512962480208
Pair: DHI-HD, Correlation: 0.9325590102266111
Pair: DHI-HWM, Correlation: 0.9005652679703132
Pair: DHI-HUBB, Correlation: 0.9728473395098072
Pair: DHI-ITW, Correlation: 0.9326393355260082
Pair: DHI-IR, Correlation: 0.9756085134296953
Pair: DHI-ICE, Correlation: 0.9347777016348743
Pair: DHI-INTU, Correlation: 0.9528228288375026
Pair: DHI-ISRG, Correlation: 0.962328576127118
Pair: DHI-IRM, Correlation: 0.9489295902612782
Pair: DHI-JBL, Correlation: 0.9497847632165682
Pair: DHI-J, Correlation: 0.9265835177020268
Pair: DHI-JCI, Correlation: 0.9029858800682792
Pair: DHI-JPM, Correlation: 0.9566224067468927
Pair: DHI-KKR, Correlation: 0.9651232062133398
Pair: DHI-KLAC, Correlation: 0.9784801193718538
Pair: DHI-LRCX, Correlation: 0.9668686368957082
Pair: DHI-LDOS, Correlation: 0.9217193894214588
Pair: DHI-LEN, Correlation: 0.9911978923558349
Pair: DHI-LII, Correlation: 0.9591475451268594
Pair: DHI-LLY, Correlation: 0.9475185533220624
Pair: DHI-LIN, Correlation: 0.9788782538592893
Pair: DHI-L, Correlation: 0.9050623835412103
Pair: DHI-LOW, Correlation: 0.9481326879497377
Pair: DHI-MPC, Correlation: 0.90501115887078
Pair: DHI-MAR, Correlation: 0.9359855965988162
Pair: DHI-MMC, Correlation: 0.963494968828372
Pair: DHI-MLM, Correlation: 0.9698927373350018
Pair: DHI-MAS, Correlation: 0.9380904933274036
Pair: DHI-MA, Correlation: 0.9348403389276244
Pair: DHI-MCD, Correlation: 0.9239204086759051
Pair: DHI-MRK, Correlation: 0.9283696102175901
Pair: DHI-META, Correlation: 0.9216922616133995
Pair: DHI-MET, Correlation: 0.9168982863327939
Pair: DHI-MCHP, Correlation: 0.9281156248520148
Pair: DHI-MU, Correlation: 0.9121537162319406
Pair: DHI-MSFT, Correlation: 0.970520995866526
Pair: DHI-MOH, Correlation: 0.918571780034157
Pair: DHI-MDLZ, Correlation: 0.9113652831403768
Pair: DHI-MPWR, Correlation: 0.9769053037347563
Pair: DHI-MCO, Correlation: 0.950460764422027
Pair: DHI-MS, Correlation: 0.9339433383723013
Pair: DHI-MSI, Correlation: 0.9772267708296817
Pair: DHI-MSCI, Correlation: 0.9155669393338972
Pair: DHI-NDAQ, Correlation: 0.9222435868832028
Pair: DHI-NTAP, Correlation: 0.9056254366717573
Pair: DHI-NDSN, Correlation: 0.919052404303205
Pair: DHI-NUE, Correlation: 0.9081967951329071
Pair: DHI-NVR, Correlation: 0.9838806101998315
Pair: DHI-NXPI, Correlation: 0.9390784805154477
Pair: DHI-ORLY, Correlation: 0.9668988941502166
Pair: DHI-ODFL, Correlation: 0.9584559170764511
Pair: DHI-ON, Correlation: 0.9034280438663125
Pair: DHI-ORCL, Correlation: 0.975950313413078
Pair: DHI-PCAR, Correlation: 0.970152878164311
Pair: DHI-PKG, Correlation: 0.9416975198346349
Pair: DHI-PANW, Correlation: 0.9649674364149505
Pair: DHI-PH, Correlation: 0.9864278828003075
Pair: DHI-PAYX, Correlation: 0.925232540345357
Pair: DHI-PNR, Correlation: 0.9289368511993158
Pair: DHI-PEP, Correlation: 0.9039049317940472
Pair: DHI-PG, Correlation: 0.9344118589970364
Pair: DHI-PGR, Correlation: 0.9738542454495872
Pair: DHI-PEG, Correlation: 0.9198588112426463
Pair: DHI-PTC, Correlation: 0.9500263976524117
Pair: DHI-PHM, Correlation: 0.9831653457233344
Pair: DHI-PWR, Correlation: 0.950696604212496
Pair: DHI-QCOM, Correlation: 0.9142598839236722
Pair: DHI-RJF, Correlation: 0.9365747772582803
Pair: DHI-RSG, Correlation: 0.9707268909230875
Pair: DHI-ROL, Correlation: 0.9332440649533624
Pair: DHI-ROP, Correlation: 0.9231916275953302
Pair: DHI-SPGI, Correlation: 0.932041932410537
Pair: DHI-STX, Correlation: 0.9097429072541875
Pair: DHI-NOW, Correlation: 0.9512537822855659
Pair: DHI-SHW, Correlation: 0.9450669932427977
Pair: DHI-SNA, Correlation: 0.9287549755627904
Pair: DHI-SO, Correlation: 0.9413713588452163
Pair: DHI-STLD, Correlation: 0.9366696872686369
Pair: DHI-STE, Correlation: 0.9055979894487282
Pair: DHI-SYK, Correlation: 0.9507886415238684
Pair: DHI-SNPS, Correlation: 0.9701249845461706
Pair: DHI-TMUS, Correlation: 0.9480043265666759
Pair: DHI-TEL, Correlation: 0.9153368509981783
Pair: DHI-TXN, Correlation: 0.9166206081866604
Pair: DHI-TPL, Correlation: 0.9074860527980718
Pair: DHI-TMO, Correlation: 0.903396427243017
Pair: DHI-TJX, Correlation: 0.9664589648121353
Pair: DHI-TSCO, Correlation: 0.9610297494162352
Pair: DHI-TT, Correlation: 0.9839272982201277
Pair: DHI-TDG, Correlation: 0.981739371226514
Pair: DHI-TRV, Correlation: 0.9315131439356612
Pair: DHI-TYL, Correlation: 0.9099633139516667
Pair: DHI-UNP, Correlation: 0.9034722431887355
Pair: DHI-URI, Correlation: 0.9789682186284733
Pair: DHI-UNH, Correlation: 0.9241459086582174
Pair: DHI-VRSK, Correlation: 0.9444302794820003
Pair: DHI-VRTX, Correlation: 0.9432979779573624
Pair: DHI-V, Correlation: 0.9218570618316386
Pair: DHI-VMC, Correlation: 0.9488444064489142
Pair: DHI-WRB, Correlation: 0.9477548587655925
Pair: DHI-GWW, Correlation: 0.9678185599243171
Pair: DHI-WMT, Correlation: 0.9630563511923416
Pair: DHI-WM, Correlation: 0.9528092211690722
Pair: DHI-WELL, Correlation: 0.9066516862901969
Pair: DHI-WTW, Correlation: 0.9328182002579336
Pair: DHI-XYL, Correlation: 0.9152942175766912
Pair: DHI-YUM, Correlation: 0.9098879513901552
Pair: DTE-DUK, Correlation: 0.9870848747157426
Pair: DTE-EBAY, Correlation: 0.910452024455096
Pair: DTE-ECL, Correlation: 0.9330762360615183
Pair: DTE-EIX, Correlation: 0.9052562294894682
Pair: DTE-EW, Correlation: 0.9311409600285385
Pair: DTE-EA, Correlation: 0.9320187093350477
Pair: DTE-ELV, Correlation: 0.9512464075965136
Pair: DTE-EMR, Correlation: 0.9032227644826006
Pair: DTE-ETR, Correlation: 0.9622146422317698
Pair: DTE-EFX, Correlation: 0.9406689573983296
Pair: DTE-EQIX, Correlation: 0.9536353078978641
Pair: DTE-EQR, Correlation: 0.9322494594305617
Pair: DTE-ESS, Correlation: 0.9405598667305538
Pair: DTE-EG, Correlation: 0.9279911767919045
Pair: DTE-EVRG, Correlation: 0.9762571478270363
Pair: DTE-ES, Correlation: 0.9425648327667314
Pair: DTE-EXC, Correlation: 0.9079128489807189
Pair: DTE-EXPD, Correlation: 0.9173336458015242
Pair: DTE-EXR, Correlation: 0.9625632013251588
Pair: DTE-FDS, Correlation: 0.9438821529873586
Pair: DTE-FITB, Correlation: 0.9251329297057912
Pair: DTE-FI, Correlation: 0.9455835117989878
Pair: DTE-GEN, Correlation: 0.9154603613175086
Pair: DTE-GD, Correlation: 0.9302114314614491
Pair: DTE-GPC, Correlation: 0.9163775797765783
Pair: DTE-GL, Correlation: 0.9529076538304062
Pair: DTE-HCA, Correlation: 0.9048416183079113
Pair: DTE-HSIC, Correlation: 0.9135465507420333
Pair: DTE-HSY, Correlation: 0.9288857080326608
Pair: DTE-HOLX, Correlation: 0.9532032865037265
Pair: DTE-HD, Correlation: 0.9604358415989874
Pair: DTE-HON, Correlation: 0.9779341934498247
Pair: DTE-HUM, Correlation: 0.9297103396788501
Pair: DTE-HBAN, Correlation: 0.9316110588457822
Pair: DTE-HII, Correlation: 0.9038926167866623
Pair: DTE-IEX, Correlation: 0.9679650520497433
Pair: DTE-IDXX, Correlation: 0.9070915046797916
Pair: DTE-ITW, Correlation: 0.9576738951484234
Pair: DTE-ICE, Correlation: 0.9573899493968359
Pair: DTE-IPG, Correlation: 0.9242618521305819
Pair: DTE-INTU, Correlation: 0.9067838630524737
Pair: DTE-INVH, Correlation: 0.9124875189153177
Pair: DTE-IQV, Correlation: 0.9517819360518915
Pair: DTE-JBHT, Correlation: 0.9403203139655805
Pair: DTE-JKHY, Correlation: 0.9720400340358417
Pair: DTE-J, Correlation: 0.9056181363135033
Pair: DTE-JNJ, Correlation: 0.9834552947433818
Pair: DTE-JCI, Correlation: 0.905452382834545
Pair: DTE-JPM, Correlation: 0.9230894012234249
Pair: DTE-KDP, Correlation: 0.9729618818626783
Pair: DTE-KEYS, Correlation: 0.9171393613739283
Pair: DTE-KMB, Correlation: 0.9452785825536173
Pair: DTE-LHX, Correlation: 0.9763482969779221
Pair: DTE-LH, Correlation: 0.9449804755171475
Pair: DTE-LDOS, Correlation: 0.9260121890072922
Pair: DTE-LYV, Correlation: 0.9551055241430751
Pair: DTE-LMT, Correlation: 0.9690593976141866
Pair: DTE-LOW, Correlation: 0.9356231623689734
Pair: DTE-MAR, Correlation: 0.9221100744944408
Pair: DTE-MMC, Correlation: 0.9328157593255193
Pair: DTE-MLM, Correlation: 0.9010895090251627
Pair: DTE-MAS, Correlation: 0.9472530383022953
Pair: DTE-MA, Correlation: 0.9485929102295024
Pair: DTE-MKC, Correlation: 0.9503149329247863
Pair: DTE-MCD, Correlation: 0.9593239108624984
Pair: DTE-MDT, Correlation: 0.9063018543839809
Pair: DTE-MRK, Correlation: 0.911723151562184
Pair: DTE-MTD, Correlation: 0.9471526429665786
Pair: DTE-MCHP, Correlation: 0.9327997968695899
Pair: DTE-MAA, Correlation: 0.9505975179618017
Pair: DTE-MOH, Correlation: 0.908794902025434
Pair: DTE-MDLZ, Correlation: 0.960052739013899
Pair: DTE-MNST, Correlation: 0.9495717191363771
Pair: DTE-MCO, Correlation: 0.9383743019363157
Pair: DTE-MS, Correlation: 0.9012631235097199
Pair: DTE-MSCI, Correlation: 0.9031935546690628
Pair: DTE-NDAQ, Correlation: 0.9492061045156217
Pair: DTE-NEE, Correlation: 0.9604770874391789
Pair: DTE-NI, Correlation: 0.970080833034003
Pair: DTE-NDSN, Correlation: 0.9547068864222508
Pair: DTE-NSC, Correlation: 0.9593544918507574
Pair: DTE-NTRS, Correlation: 0.9159385020960109
Pair: DTE-NOC, Correlation: 0.9692887025975783
Pair: DTE-NVR, Correlation: 0.9070182563500292
Pair: DTE-NXPI, Correlation: 0.9167824385378713
Pair: DTE-PKG, Correlation: 0.9403744505165912
Pair: DTE-PAYX, Correlation: 0.9626305607252978
Pair: DTE-PEP, Correlation: 0.9664558745388268
Pair: DTE-PFE, Correlation: 0.9078991603542821
Pair: DTE-PM, Correlation: 0.9012832833046431
Pair: DTE-PNW, Correlation: 0.9370109958585154
Pair: DTE-PNC, Correlation: 0.9488019208599728
Pair: DTE-POOL, Correlation: 0.9166849036917006
Pair: DTE-PPG, Correlation: 0.914772491098188
Pair: DTE-PFG, Correlation: 0.9124697463228317
Pair: DTE-PG, Correlation: 0.9456735388290498
Pair: DTE-PLD, Correlation: 0.9457688223684336
Pair: DTE-PRU, Correlation: 0.9044706469539008
Pair: DTE-PEG, Correlation: 0.9708723469463773
Pair: DTE-PTC, Correlation: 0.9154049454407918
Pair: DTE-PSA, Correlation: 0.9537318181426349
Pair: DTE-DGX, Correlation: 0.9607161479048691
Pair: DTE-RJF, Correlation: 0.9182724219368443
Pair: DTE-RTX, Correlation: 0.930921490313185
Pair: DTE-O, Correlation: 0.9719403787937996
Pair: DTE-RF, Correlation: 0.9402876543818137
Pair: DTE-RSG, Correlation: 0.9157516612742318
Pair: DTE-RMD, Correlation: 0.9313104317706059
Pair: DTE-RVTY, Correlation: 0.9258137380923949
Pair: DTE-ROK, Correlation: 0.9347085638248162
Pair: DTE-ROL, Correlation: 0.9480283713010711
Pair: DTE-ROP, Correlation: 0.9623569807390587
Pair: DTE-ROST, Correlation: 0.9433646620654732
Pair: DTE-SPGI, Correlation: 0.9462938387172312
Pair: DTE-CRM, Correlation: 0.9142315073137448
Pair: DTE-SBAC, Correlation: 0.922564152522095
Pair: DTE-SRE, Correlation: 0.9781943181616732
Pair: DTE-SHW, Correlation: 0.9465826913493199
Pair: DTE-SNA, Correlation: 0.9186094956553754
Pair: DTE-SO, Correlation: 0.9441399028465411
Pair: DTE-SBUX, Correlation: 0.9452459839718097
Pair: DTE-STE, Correlation: 0.9561669848112182
Pair: DTE-SYK, Correlation: 0.9480915463919711
Pair: DTE-SYY, Correlation: 0.9795867467598404
Pair: DTE-TMUS, Correlation: 0.9339482401267842
Pair: DTE-TTWO, Correlation: 0.9142273068080999
Pair: DTE-TEL, Correlation: 0.9558777272315986
Pair: DTE-TDY, Correlation: 0.9524938717156911
Pair: DTE-TXN, Correlation: 0.961215019935171
Pair: DTE-TMO, Correlation: 0.9435793410746106
Pair: DTE-TJX, Correlation: 0.91710596682134
Pair: DTE-TRV, Correlation: 0.9465009886127451
Pair: DTE-TYL, Correlation: 0.9387966834365096
Pair: DTE-UDR, Correlation: 0.9565400439384076
Pair: DTE-ULTA, Correlation: 0.9351534904734056
Pair: DTE-UNP, Correlation: 0.9682745711399796
Pair: DTE-UPS, Correlation: 0.914259830079555
Pair: DTE-UNH, Correlation: 0.9493421296976396
Pair: DTE-VLTO, Correlation: 0.934990936950433
Pair: DTE-VRSN, Correlation: 0.9372413798019567
Pair: DTE-VRSK, Correlation: 0.9372349285514489
Pair: DTE-V, Correlation: 0.9606615318213074
Pair: DTE-VMC, Correlation: 0.9281360157061612
Pair: DTE-WRB, Correlation: 0.9278984988932254
Pair: DTE-WMT, Correlation: 0.9013208323918555
Pair: DTE-WM, Correlation: 0.9459149036834333
Pair: DTE-WAT, Correlation: 0.9597511241863922
Pair: DTE-WEC, Correlation: 0.9791383415105632
Pair: DTE-WELL, Correlation: 0.9015412708136468
Pair: DTE-WTW, Correlation: 0.9548391805601631
Pair: DTE-XEL, Correlation: 0.9752524841541618
Pair: DTE-XYL, Correlation: 0.9368924428448013
Pair: DTE-YUM, Correlation: 0.96838706929516
Pair: DTE-ZTS, Correlation: 0.9352658626547871
Pair: DUK-EBAY, Correlation: 0.912141227980973
Pair: DUK-ECL, Correlation: 0.9304089309768536
Pair: DUK-EIX, Correlation: 0.9140001816928094
Pair: DUK-EW, Correlation: 0.9090964433545052
Pair: DUK-EA, Correlation: 0.9054118463325027
Pair: DUK-ELV, Correlation: 0.955681892921742
Pair: DUK-EMR, Correlation: 0.9256636533947087
Pair: DUK-ETR, Correlation: 0.9692097161613183
Pair: DUK-EFX, Correlation: 0.9559324939881252
Pair: DUK-EQIX, Correlation: 0.9560738954939715
Pair: DUK-EQR, Correlation: 0.9193090271143888
Pair: DUK-ESS, Correlation: 0.9257891177774644
Pair: DUK-EG, Correlation: 0.9372021207826708
Pair: DUK-EVRG, Correlation: 0.953631005278432
Pair: DUK-ES, Correlation: 0.9141629066113212
Pair: DUK-EXC, Correlation: 0.907874040482693
Pair: DUK-EXPD, Correlation: 0.9258396123903957
Pair: DUK-EXR, Correlation: 0.9670670779073384
Pair: DUK-FDS, Correlation: 0.9507125173783615
Pair: DUK-FAST, Correlation: 0.9242715661305134
Pair: DUK-FITB, Correlation: 0.9288052403853693
Pair: DUK-FI, Correlation: 0.9504120579178026
Pair: DUK-GRMN, Correlation: 0.9196206068503244
Pair: DUK-IT, Correlation: 0.907039413594341
Pair: DUK-GEN, Correlation: 0.9320354330437415
Pair: DUK-GD, Correlation: 0.9336745070089949
Pair: DUK-GIS, Correlation: 0.9131210029448404
Pair: DUK-GPC, Correlation: 0.926150704388358
Pair: DUK-GL, Correlation: 0.9286060445997527
Pair: DUK-GS, Correlation: 0.9008901816968591
Pair: DUK-HIG, Correlation: 0.9240093848211646
Pair: DUK-HCA, Correlation: 0.9411242320101308
Pair: DUK-HSY, Correlation: 0.9364909888076417
Pair: DUK-HLT, Correlation: 0.927427162089402
Pair: DUK-HOLX, Correlation: 0.9527372864256461
Pair: DUK-HD, Correlation: 0.968246653117035
Pair: DUK-HON, Correlation: 0.9679782759008487
Pair: DUK-HUM, Correlation: 0.9051537508064663
Pair: DUK-HBAN, Correlation: 0.9126914592658855
Pair: DUK-IEX, Correlation: 0.9563631603800407
Pair: DUK-IDXX, Correlation: 0.9070382508271997
Pair: DUK-ITW, Correlation: 0.961607086392916
Pair: DUK-ICE, Correlation: 0.9662698557381594
Pair: DUK-IPG, Correlation: 0.930951262955466
Pair: DUK-INTU, Correlation: 0.9290007766959171
Pair: DUK-ISRG, Correlation: 0.9223722823215649
Pair: DUK-INVH, Correlation: 0.90116577441217
Pair: DUK-IQV, Correlation: 0.9472100302518002
Pair: DUK-JBHT, Correlation: 0.9441818358459568
Pair: DUK-JKHY, Correlation: 0.9501649735268994
Pair: DUK-J, Correlation: 0.925737295054116
Pair: DUK-JNJ, Correlation: 0.970775429000197
Pair: DUK-JCI, Correlation: 0.9325982092457431
Pair: DUK-JPM, Correlation: 0.9388248176342222
Pair: DUK-KDP, Correlation: 0.9611671107926805
Pair: DUK-KEYS, Correlation: 0.9112463396130165
Pair: DUK-KMB, Correlation: 0.9405055373813306
Pair: DUK-KR, Correlation: 0.9105427074378499
Pair: DUK-LHX, Correlation: 0.9599709393836087
Pair: DUK-LH, Correlation: 0.9462405871132407
Pair: DUK-LDOS, Correlation: 0.9375797652972141
Pair: DUK-LII, Correlation: 0.9106811860512242
Pair: DUK-LIN, Correlation: 0.9142596218134649
Pair: DUK-LYV, Correlation: 0.9502409878730662
Pair: DUK-LMT, Correlation: 0.9664695663072128
Pair: DUK-LOW, Correlation: 0.9531233317112952
Pair: DUK-MAR, Correlation: 0.9306306679851742
Pair: DUK-MMC, Correlation: 0.9553875107822435
Pair: DUK-MLM, Correlation: 0.9243649214692928
Pair: DUK-MAS, Correlation: 0.9545298943954363
Pair: DUK-MA, Correlation: 0.9552531496284337
Pair: DUK-MKC, Correlation: 0.9233426538345363
Pair: DUK-MCD, Correlation: 0.9605123436486547
Pair: DUK-MRK, Correlation: 0.9290078945451741
Pair: DUK-MET, Correlation: 0.9201234739876429
Pair: DUK-MTD, Correlation: 0.9489878393682059
Pair: DUK-MCHP, Correlation: 0.936684293285368
Pair: DUK-MU, Correlation: 0.9006900363185216
Pair: DUK-MSFT, Correlation: 0.9165874035242608
Pair: DUK-MAA, Correlation: 0.9492189675141741
Pair: DUK-MOH, Correlation: 0.9236165609572488
Pair: DUK-MDLZ, Correlation: 0.966785824241125
Pair: DUK-MNST, Correlation: 0.9492961452176639
Pair: DUK-MCO, Correlation: 0.9571927781935131
Pair: DUK-MS, Correlation: 0.9227098337449352
Pair: DUK-MSI, Correlation: 0.9216309009118695
Pair: DUK-MSCI, Correlation: 0.9188944434271492
Pair: DUK-NDAQ, Correlation: 0.9625810770021077
Pair: DUK-NEE, Correlation: 0.9575515120221678
Pair: DUK-NI, Correlation: 0.9579029512535994
Pair: DUK-NDSN, Correlation: 0.9582292942486899
Pair: DUK-NSC, Correlation: 0.951254825040647
Pair: DUK-NOC, Correlation: 0.9609726488116082
Pair: DUK-NVR, Correlation: 0.9308081527814703
Pair: DUK-NXPI, Correlation: 0.9387291568006512
Pair: DUK-ORLY, Correlation: 0.9213575091915829
Pair: DUK-ODFL, Correlation: 0.9045936982479985
Pair: DUK-PKG, Correlation: 0.9578195471852979
Pair: DUK-PAYX, Correlation: 0.9717435961043761
Pair: DUK-PEP, Correlation: 0.969753229348983
Pair: DUK-PM, Correlation: 0.9306588660206431
Pair: DUK-PNW, Correlation: 0.9146891453250826
Pair: DUK-PNC, Correlation: 0.9402567911770495
Pair: DUK-POOL, Correlation: 0.9195180208594183
Pair: DUK-PPG, Correlation: 0.9070170801651417
Pair: DUK-PFG, Correlation: 0.9220013305530238
Pair: DUK-PG, Correlation: 0.9640580913594067
Pair: DUK-PLD, Correlation: 0.9488564889803454
Pair: DUK-PRU, Correlation: 0.9078387997097119
Pair: DUK-PEG, Correlation: 0.9782830720701721
Pair: DUK-PTC, Correlation: 0.9264589762356772
Pair: DUK-PSA, Correlation: 0.9675532126707094
Pair: DUK-DGX, Correlation: 0.9598320609847661
Pair: DUK-RJF, Correlation: 0.938032645418477
Pair: DUK-RTX, Correlation: 0.9427972021474573
Pair: DUK-O, Correlation: 0.951223750751549
Pair: DUK-RF, Correlation: 0.9341885574129184
Pair: DUK-RSG, Correlation: 0.940281766822312
Pair: DUK-RMD, Correlation: 0.9333682046687822
Pair: DUK-RVTY, Correlation: 0.9085506777293733
Pair: DUK-ROK, Correlation: 0.9349148446054266
Pair: DUK-ROL, Correlation: 0.9526462242962139
Pair: DUK-ROP, Correlation: 0.964055916245935
Pair: DUK-ROST, Correlation: 0.9410278489096074
Pair: DUK-SPGI, Correlation: 0.9565464926054315
Pair: DUK-CRM, Correlation: 0.9165857285985409
Pair: DUK-SBAC, Correlation: 0.9030563876035852
Pair: DUK-STX, Correlation: 0.9184754840188076
Pair: DUK-SRE, Correlation: 0.9802545387389164
Pair: DUK-NOW, Correlation: 0.9236700332599409
Pair: DUK-SHW, Correlation: 0.9629632742769594
Pair: DUK-SNA, Correlation: 0.9368647274552075
Pair: DUK-SO, Correlation: 0.9716205392573952
Pair: DUK-SBUX, Correlation: 0.9349351727248659
Pair: DUK-STE, Correlation: 0.9590457720221099
Pair: DUK-SYK, Correlation: 0.9564043092186716
Pair: DUK-SYY, Correlation: 0.9531662171981532
Pair: DUK-TMUS, Correlation: 0.9527010537292437
Pair: DUK-TEL, Correlation: 0.9596226936928255
Pair: DUK-TDY, Correlation: 0.9496321328324328
Pair: DUK-TER, Correlation: 0.903123313078792
Pair: DUK-TXN, Correlation: 0.9638123169110221
Pair: DUK-TMO, Correlation: 0.951480263421134
Pair: DUK-TJX, Correlation: 0.9443643404132799
Pair: DUK-TSCO, Correlation: 0.9213640159206617
Pair: DUK-TDG, Correlation: 0.9009298928866052
Pair: DUK-TRV, Correlation: 0.960867778237811
Pair: DUK-TYL, Correlation: 0.9513270600504398
Pair: DUK-UDR, Correlation: 0.9382777228597066
Pair: DUK-ULTA, Correlation: 0.9221648117710728
Pair: DUK-UNP, Correlation: 0.969934178308586
Pair: DUK-UPS, Correlation: 0.9087885797129298
Pair: DUK-UNH, Correlation: 0.9593787303077845
Pair: DUK-VLTO, Correlation: 0.9294308656183354
Pair: DUK-VRSN, Correlation: 0.9073724590180323
Pair: DUK-VRSK, Correlation: 0.9521607265484324
Pair: DUK-VRTX, Correlation: 0.909325186727222
Pair: DUK-VICI, Correlation: 0.9066380144827572
Pair: DUK-V, Correlation: 0.9620521067068063
Pair: DUK-VMC, Correlation: 0.9396232267622435
Pair: DUK-WRB, Correlation: 0.9494396830750123
Pair: DUK-WMT, Correlation: 0.9353714646562165
Pair: DUK-WM, Correlation: 0.9600388853720353
Pair: DUK-WAT, Correlation: 0.9584389687021058
Pair: DUK-WEC, Correlation: 0.9673330293621233
Pair: DUK-WELL, Correlation: 0.933269952922383
Pair: DUK-WST, Correlation: 0.9000334386929779
Pair: DUK-WTW, Correlation: 0.965328411030767
Pair: DUK-XEL, Correlation: 0.9579734941565423
Pair: DUK-XYL, Correlation: 0.9440652382687008
Pair: DUK-YUM, Correlation: 0.9671037514510172
Pair: DUK-ZTS, Correlation: 0.9352271525524529
Pair: EMN-EBAY, Correlation: 0.9131139868004627
Pair: EMN-FDX, Correlation: 0.9175320783764342
Pair: EMN-FITB, Correlation: 0.9319458388305373
Pair: EMN-HON, Correlation: 0.9020338736418769
Pair: EMN-HBAN, Correlation: 0.9205995424839438
Pair: EMN-IP, Correlation: 0.9297678324328433
Pair: EMN-KEY, Correlation: 0.9073846331077657
Pair: EMN-LYB, Correlation: 0.928387083321994
Pair: EMN-MGM, Correlation: 0.9004708784554035
Pair: EMN-NTRS, Correlation: 0.9082427936136535
Pair: EMN-PNC, Correlation: 0.9262471607684803
Pair: EMN-PPG, Correlation: 0.9265935991830849
Pair: EMN-PRU, Correlation: 0.9014978259078399
Pair: EMN-RF, Correlation: 0.910727289733289
Pair: EMN-STX, Correlation: 0.9066631589338179
Pair: EMN-STT, Correlation: 0.9104372914879906
Pair: EMN-TEL, Correlation: 0.9231590793090058
Pair: EMN-VLTO, Correlation: 0.913127974676483
Pair: EMN-WY, Correlation: 0.9450784785897108
Pair: ETN-EMR, Correlation: 0.9355644103418296
Pair: ETN-ERIE, Correlation: 0.9431943613735398
Pair: ETN-FICO, Correlation: 0.9661348140544505
Pair: ETN-FAST, Correlation: 0.9461528096894
Pair: ETN-FTNT, Correlation: 0.9082903275700116
Pair: ETN-GRMN, Correlation: 0.9090130820658631
Pair: ETN-IT, Correlation: 0.9686421648803858
Pair: ETN-GS, Correlation: 0.9425957801491661
Pair: ETN-HIG, Correlation: 0.9409070542552467
Pair: ETN-HCA, Correlation: 0.9471426745602796
Pair: ETN-HLT, Correlation: 0.9630854594102556
Pair: ETN-HWM, Correlation: 0.9391467504515097
Pair: ETN-HUBB, Correlation: 0.9887168292329582
Pair: ETN-IR, Correlation: 0.9878436738828482
Pair: ETN-INTU, Correlation: 0.9242041674289517
Pair: ETN-ISRG, Correlation: 0.9297164459126835
Pair: ETN-IRM, Correlation: 0.9664602094252978
Pair: ETN-JBL, Correlation: 0.9634760464136046
Pair: ETN-J, Correlation: 0.9031023248973892
Pair: ETN-JPM, Correlation: 0.9316240890128529
Pair: ETN-KKR, Correlation: 0.9785635709693229
Pair: ETN-KLAC, Correlation: 0.9851789187902736
Pair: ETN-LRCX, Correlation: 0.9593531407241309
Pair: ETN-LEN, Correlation: 0.9738557698664315
Pair: ETN-LII, Correlation: 0.9352569287316799
Pair: ETN-LLY, Correlation: 0.9767915600536486
Pair: ETN-LIN, Correlation: 0.9639176725584835
Pair: ETN-L, Correlation: 0.9280126981334119
Pair: ETN-LOW, Correlation: 0.9094615833713304
Pair: ETN-MPC, Correlation: 0.9352061241792486
Pair: ETN-MAR, Correlation: 0.9204414681063767
Pair: ETN-MMC, Correlation: 0.9398602583021557
Pair: ETN-MLM, Correlation: 0.9582709780507899
Pair: ETN-MCK, Correlation: 0.9354469525786108
Pair: ETN-MRK, Correlation: 0.9110145108241678
Pair: ETN-MET, Correlation: 0.914928452870457
Pair: ETN-MSFT, Correlation: 0.949556124788835
Pair: ETN-MPWR, Correlation: 0.9652943815203585
Pair: ETN-MCO, Correlation: 0.9062133053108768
Pair: ETN-MS, Correlation: 0.9147969352786339
Pair: ETN-MSI, Correlation: 0.9676452072069572
Pair: ETN-NTAP, Correlation: 0.9140751129670843
Pair: ETN-NRG, Correlation: 0.9189082060083894
Pair: ETN-NUE, Correlation: 0.9205238294487753
Pair: ETN-NVDA, Correlation: 0.9389303435797053
Pair: ETN-NVR, Correlation: 0.9512294555233961
Pair: ETN-NXPI, Correlation: 0.9099462432267627
Pair: ETN-ORLY, Correlation: 0.9523242355401818
Pair: ETN-ODFL, Correlation: 0.9358729006346294
Pair: ETN-ORCL, Correlation: 0.978972864101967
Pair: ETN-PCAR, Correlation: 0.9795368893035237
Pair: ETN-PKG, Correlation: 0.919575904509323
Pair: ETN-PANW, Correlation: 0.9709313849472069
Pair: ETN-PH, Correlation: 0.9903773936696892
Pair: ETN-PNR, Correlation: 0.9248600321413776
Pair: ETN-PGR, Correlation: 0.9716725766030887
Pair: ETN-PTC, Correlation: 0.9238676320285962
Pair: ETN-PHM, Correlation: 0.9809131939345843
Pair: ETN-PWR, Correlation: 0.980882073529826
Pair: ETN-QCOM, Correlation: 0.9038957746170928
Pair: ETN-RJF, Correlation: 0.9298342459639154
Pair: ETN-RSG, Correlation: 0.9566284140412205
Pair: ETN-NOW, Correlation: 0.9172978962973826
Pair: ETN-SNA, Correlation: 0.9046925531831999
Pair: ETN-SO, Correlation: 0.912448773310626
Pair: ETN-STLD, Correlation: 0.9515821949772557
Pair: ETN-SYK, Correlation: 0.9130834724128901
Pair: ETN-SNPS, Correlation: 0.9666353849786469
Pair: ETN-TMUS, Correlation: 0.91608851558414
Pair: ETN-TPL, Correlation: 0.9091727293570567
Pair: ETN-TJX, Correlation: 0.9431192897862017
Pair: ETN-TSCO, Correlation: 0.9488134732069132
Pair: ETN-TT, Correlation: 0.9872130521465301
Pair: ETN-TDG, Correlation: 0.976298817340979
Pair: ETN-TRV, Correlation: 0.9115044814460471
Pair: ETN-URI, Correlation: 0.9908292496513472
Pair: ETN-VRSK, Correlation: 0.9042174199304153
Pair: ETN-VRTX, Correlation: 0.9232753463551532
Pair: ETN-VMC, Correlation: 0.9229234036753846
Pair: ETN-WRB, Correlation: 0.9326774247597701
Pair: ETN-GWW, Correlation: 0.9830461915798554
Pair: ETN-WMT, Correlation: 0.9414486328555398
Pair: ETN-WM, Correlation: 0.9286547407271148
Pair: EBAY-ECL, Correlation: 0.932249644535157
Pair: EBAY-EW, Correlation: 0.9169649478457477
Pair: EBAY-EA, Correlation: 0.9040219229659388
Pair: EBAY-EFX, Correlation: 0.9448098115902978
Pair: EBAY-EQIX, Correlation: 0.9402536474851775
Pair: EBAY-EXPD, Correlation: 0.9032521101133135
Pair: EBAY-EXR, Correlation: 0.913537642864969
Pair: EBAY-FITB, Correlation: 0.912761686701044
Pair: EBAY-GRMN, Correlation: 0.9230273428505066
Pair: EBAY-GEN, Correlation: 0.9364009516048387
Pair: EBAY-HOLX, Correlation: 0.9211934430199312
Pair: EBAY-HD, Correlation: 0.9380457923333155
Pair: EBAY-HON, Correlation: 0.9380543865958705
Pair: EBAY-IEX, Correlation: 0.9245846944123978
Pair: EBAY-IDXX, Correlation: 0.9393066870684643
Pair: EBAY-ITW, Correlation: 0.9213819906969273
Pair: EBAY-ICE, Correlation: 0.938564438020337
Pair: EBAY-INTU, Correlation: 0.9003400128728589
Pair: EBAY-ISRG, Correlation: 0.9016873633623382
Pair: EBAY-IQV, Correlation: 0.9077367182673148
Pair: EBAY-JBHT, Correlation: 0.9058691427428202
Pair: EBAY-JNJ, Correlation: 0.9143254897105542
Pair: EBAY-JCI, Correlation: 0.9116380951737681
Pair: EBAY-KDP, Correlation: 0.9040958768124979
Pair: EBAY-LHX, Correlation: 0.9083739334427118
Pair: EBAY-LH, Correlation: 0.9449439842028486
Pair: EBAY-LYV, Correlation: 0.9092574327195054
Pair: EBAY-LOW, Correlation: 0.9124065137159484
Pair: EBAY-MAS, Correlation: 0.9364443889467063
Pair: EBAY-MA, Correlation: 0.907212793943537
Pair: EBAY-MKC, Correlation: 0.9024744862697758
Pair: EBAY-MTD, Correlation: 0.9336060011433609
Pair: EBAY-MCHP, Correlation: 0.9056829533763144
Pair: EBAY-MAA, Correlation: 0.9197245706001392
Pair: EBAY-MCO, Correlation: 0.9350498974363963
Pair: EBAY-MSCI, Correlation: 0.9081229547557844
Pair: EBAY-NDAQ, Correlation: 0.9292023016399567
Pair: EBAY-NFLX, Correlation: 0.9181007138361267
Pair: EBAY-NEE, Correlation: 0.9287150282278052
Pair: EBAY-NKE, Correlation: 0.9202767028178941
Pair: EBAY-NDSN, Correlation: 0.9271323514857477
Pair: EBAY-NSC, Correlation: 0.932251188016453
Pair: EBAY-NXPI, Correlation: 0.9044269521617223
Pair: EBAY-PNC, Correlation: 0.9341122363192649
Pair: EBAY-POOL, Correlation: 0.9381130748723181
Pair: EBAY-PPG, Correlation: 0.9041982766931986
Pair: EBAY-PLD, Correlation: 0.9172403246881775
Pair: EBAY-DGX, Correlation: 0.9282330275502477
Pair: EBAY-RMD, Correlation: 0.9335496175596715
Pair: EBAY-RVTY, Correlation: 0.9377647123205325
Pair: EBAY-ROK, Correlation: 0.9313392231596241
Pair: EBAY-ROL, Correlation: 0.9036584620289467
Pair: EBAY-ROP, Correlation: 0.9254489113629374
Pair: EBAY-SPGI, Correlation: 0.9404291000063608
Pair: EBAY-CRM, Correlation: 0.9352107746327635
Pair: EBAY-SBAC, Correlation: 0.9109992538858143
Pair: EBAY-SHW, Correlation: 0.9409903229561433
Pair: EBAY-SWKS, Correlation: 0.9157366019013772
Pair: EBAY-SBUX, Correlation: 0.9237148298904393
Pair: EBAY-STE, Correlation: 0.9184129504956104
Pair: EBAY-SYK, Correlation: 0.9024006178892261
Pair: EBAY-TROW, Correlation: 0.9489038626501203
Pair: EBAY-TTWO, Correlation: 0.9211558530199594
Pair: EBAY-TGT, Correlation: 0.9124195607982013
Pair: EBAY-TEL, Correlation: 0.9405885513723635
Pair: EBAY-TDY, Correlation: 0.9170232827935796
Pair: EBAY-TER, Correlation: 0.9289262129406842
Pair: EBAY-TXN, Correlation: 0.9383562042423391
Pair: EBAY-TMO, Correlation: 0.9186687930218222
Pair: EBAY-TRMB, Correlation: 0.9323379535613672
Pair: EBAY-TYL, Correlation: 0.9573388449249556
Pair: EBAY-UDR, Correlation: 0.90501747999221
Pair: EBAY-UNP, Correlation: 0.9213325015663584
Pair: EBAY-UPS, Correlation: 0.9021147661185144
Pair: EBAY-VLTO, Correlation: 0.9501721413819592
Pair: EBAY-VRSK, Correlation: 0.9031861596526872
Pair: EBAY-V, Correlation: 0.915474317067415
Pair: EBAY-WAT, Correlation: 0.9357738347782811
Pair: EBAY-WEC, Correlation: 0.9031619364108787
Pair: EBAY-WST, Correlation: 0.9109414504572666
Pair: EBAY-WTW, Correlation: 0.9192346485159961
Pair: EBAY-XEL, Correlation: 0.9032728776349186
Pair: EBAY-XYL, Correlation: 0.9177690365037285
Pair: EBAY-YUM, Correlation: 0.9034512706629638
Pair: EBAY-ZBRA, Correlation: 0.9382619854340781
Pair: EBAY-ZTS, Correlation: 0.9116224501055153
Pair: ECL-EA, Correlation: 0.9090454028207233
Pair: ECL-ETR, Correlation: 0.9174222931964494
Pair: ECL-EFX, Correlation: 0.9246691505149488
Pair: ECL-EQIX, Correlation: 0.9445278194024465
Pair: ECL-ESS, Correlation: 0.9280135763211489
Pair: ECL-EVRG, Correlation: 0.9159601650031329
Pair: ECL-ES, Correlation: 0.9014771066754294
Pair: ECL-FI, Correlation: 0.9598202502449177
Pair: ECL-GRMN, Correlation: 0.9246955276281242
Pair: ECL-HOLX, Correlation: 0.9054698062514198
Pair: ECL-HD, Correlation: 0.9367895720551357
Pair: ECL-HON, Correlation: 0.950061632916235
Pair: ECL-IEX, Correlation: 0.9324010622167983
Pair: ECL-ITW, Correlation: 0.9269824877687842
Pair: ECL-ICE, Correlation: 0.9575431610201726
Pair: ECL-ISRG, Correlation: 0.9084089025728543
Pair: ECL-JKHY, Correlation: 0.9271934507207418
Pair: ECL-JNJ, Correlation: 0.9238442413076573
Pair: ECL-JPM, Correlation: 0.9248022645987907
Pair: ECL-KDP, Correlation: 0.9177712412074321
Pair: ECL-KMB, Correlation: 0.9398757065606284
Pair: ECL-LHX, Correlation: 0.9324423801141154
Pair: ECL-LDOS, Correlation: 0.9249743446270322
Pair: ECL-LII, Correlation: 0.9228192573937015
Pair: ECL-LYV, Correlation: 0.9153755776388199
Pair: ECL-LMT, Correlation: 0.9174865478692324
Pair: ECL-MAS, Correlation: 0.9501469869290049
Pair: ECL-MA, Correlation: 0.941322433673264
Pair: ECL-MKC, Correlation: 0.9254134562150667
Pair: ECL-MCD, Correlation: 0.9012452814191176
Pair: ECL-MDT, Correlation: 0.9253156781008078
Pair: ECL-META, Correlation: 0.9173155887785431
Pair: ECL-MU, Correlation: 0.9082720925311162
Pair: ECL-MDLZ, Correlation: 0.9192989118683682
Pair: ECL-MNST, Correlation: 0.9049333431363875
Pair: ECL-MCO, Correlation: 0.9414622810244573
Pair: ECL-NDAQ, Correlation: 0.9029266356558348
Pair: ECL-NFLX, Correlation: 0.9471901867249477
Pair: ECL-NEE, Correlation: 0.9152403306245323
Pair: ECL-NI, Correlation: 0.9130200074669407
Pair: ECL-NDSN, Correlation: 0.9160763530401568
Pair: ECL-NSC, Correlation: 0.9277750516418235
Pair: ECL-NVR, Correlation: 0.9022884628120522
Pair: ECL-PKG, Correlation: 0.9136415506330547
Pair: ECL-PNW, Correlation: 0.9115589599217093
Pair: ECL-PNC, Correlation: 0.9087777895082161
Pair: ECL-PPG, Correlation: 0.9151259975448713
Pair: ECL-PG, Correlation: 0.9130502960560204
Pair: ECL-PEG, Correlation: 0.934040374592528
Pair: ECL-PTC, Correlation: 0.9002406425599594
Pair: ECL-DGX, Correlation: 0.9036495465938077
Pair: ECL-O, Correlation: 0.9127681193957251
Pair: ECL-ROK, Correlation: 0.906365959487116
Pair: ECL-ROL, Correlation: 0.9232044705038412
Pair: ECL-ROP, Correlation: 0.9521900040513057
Pair: ECL-ROST, Correlation: 0.9614911241322793
Pair: ECL-SPGI, Correlation: 0.9382546230532288
Pair: ECL-CRM, Correlation: 0.9570293907570154
Pair: ECL-SRE, Correlation: 0.9150101210701369
Pair: ECL-NOW, Correlation: 0.9149232303896754
Pair: ECL-SHW, Correlation: 0.942722632591642
Pair: ECL-SBUX, Correlation: 0.9330464473651165
Pair: ECL-STE, Correlation: 0.9230998714811445
Pair: ECL-SYK, Correlation: 0.9368656640331594
Pair: ECL-SYY, Correlation: 0.9129059805505986
Pair: ECL-TMUS, Correlation: 0.9012362551941068
Pair: ECL-TTWO, Correlation: 0.9334028414053697
Pair: ECL-TEL, Correlation: 0.9261844493134742
Pair: ECL-TDY, Correlation: 0.9228711924702659
Pair: ECL-TXN, Correlation: 0.9259091619233273
Pair: ECL-TJX, Correlation: 0.9116360241644426
Pair: ECL-TYL, Correlation: 0.9556706308396267
Pair: ECL-UDR, Correlation: 0.9076231184359702
Pair: ECL-UNP, Correlation: 0.9389943528424498
Pair: ECL-VLTO, Correlation: 0.9439215514488427
Pair: ECL-VRSN, Correlation: 0.9302786117447102
Pair: ECL-VRSK, Correlation: 0.9375195848257687
Pair: ECL-V, Correlation: 0.9531401128453346
Pair: ECL-VMC, Correlation: 0.9037939943023096
Pair: ECL-WMT, Correlation: 0.9055984932834823
Pair: ECL-WM, Correlation: 0.9009138634205194
Pair: ECL-WAT, Correlation: 0.9006576571506792
Pair: ECL-WEC, Correlation: 0.9337061669261636
Pair: ECL-WTW, Correlation: 0.941081022204366
Pair: ECL-WDAY, Correlation: 0.9390098915779511
Pair: ECL-XEL, Correlation: 0.9200169145519146
Pair: ECL-XYL, Correlation: 0.9301861366517646
Pair: ECL-YUM, Correlation: 0.9262354626193089
Pair: ECL-ZTS, Correlation: 0.9069389754815219
Pair: EIX-EG, Correlation: 0.928877901983036
Pair: EIX-GD, Correlation: 0.9383139171221186
Pair: EIX-HIG, Correlation: 0.9043728990927005
Pair: EIX-HII, Correlation: 0.9010146118901199
Pair: EIX-K, Correlation: 0.9139160078509877
Pair: EIX-KMB, Correlation: 0.9148776222316856
Pair: EIX-LMT, Correlation: 0.919335713668426
Pair: EIX-NI, Correlation: 0.9546868533502341
Pair: EIX-NOC, Correlation: 0.9026517697374083
Pair: EIX-OMC, Correlation: 0.9409584915135631
Pair: EIX-PKG, Correlation: 0.905607427715211
Pair: EIX-PM, Correlation: 0.9268636862727703
Pair: EIX-PNW, Correlation: 0.9275023369283033
Pair: EIX-PPL, Correlation: 0.9542617842011073
Pair: EIX-PEG, Correlation: 0.9007143288702462
Pair: EIX-RTX, Correlation: 0.9081273195785157
Pair: EIX-REG, Correlation: 0.9222678725961615
Pair: EIX-SRE, Correlation: 0.9291837548833385
Pair: EIX-SNA, Correlation: 0.9137070112587928
Pair: EIX-TRV, Correlation: 0.9266793075595012
Pair: EIX-UHS, Correlation: 0.9138653466299792
Pair: EIX-VLTO, Correlation: 0.9250674766022751
Pair: EIX-VMC, Correlation: 0.9059448991422212
Pair: EIX-WELL, Correlation: 0.9070892993145597
Pair: EW-ELV, Correlation: 0.9037397566658119
Pair: EW-ETR, Correlation: 0.9087873902044505
Pair: EW-EPAM, Correlation: 0.9161348546339044
Pair: EW-EFX, Correlation: 0.9108826802970589
Pair: EW-EQIX, Correlation: 0.935635992484599
Pair: EW-EL, Correlation: 0.9298871553611477
Pair: EW-EVRG, Correlation: 0.9198068750974315
Pair: EW-ES, Correlation: 0.9437583714582322
Pair: EW-EXPD, Correlation: 0.9185306598765002
Pair: EW-EXR, Correlation: 0.9398022659866933
Pair: EW-FDS, Correlation: 0.922803171340455
Pair: EW-HOLX, Correlation: 0.9276423043428573
Pair: EW-HD, Correlation: 0.9311263778211821
Pair: EW-HON, Correlation: 0.9396895987039154
Pair: EW-HUM, Correlation: 0.9233398227468751
Pair: EW-IEX, Correlation: 0.9448771418668676
Pair: EW-IDXX, Correlation: 0.9506504339820526
Pair: EW-ITW, Correlation: 0.9131416466280475
Pair: EW-PODD, Correlation: 0.9342905642281008
Pair: EW-ICE, Correlation: 0.9194299026068731
Pair: EW-INTU, Correlation: 0.9021582103536225
Pair: EW-IQV, Correlation: 0.9455082234676894
Pair: EW-JBHT, Correlation: 0.9070045937095732
Pair: EW-JKHY, Correlation: 0.9386859897756598
Pair: EW-JNJ, Correlation: 0.9282998130172575
Pair: EW-KDP, Correlation: 0.9569332729868073
Pair: EW-KEYS, Correlation: 0.9220245970933582
Pair: EW-LHX, Correlation: 0.9481748862301351
Pair: EW-LH, Correlation: 0.9396883529415623
Pair: EW-LYV, Correlation: 0.9366671698227239
Pair: EW-LOW, Correlation: 0.9060085976691516
Pair: EW-LULU, Correlation: 0.9181485434231325
Pair: EW-MA, Correlation: 0.9176355075199966
Pair: EW-MKC, Correlation: 0.9543590725345933
Pair: EW-MCD, Correlation: 0.9116456412338866
Pair: EW-MDT, Correlation: 0.9070532589104773
Pair: EW-MTD, Correlation: 0.9479740041778243
Pair: EW-MCHP, Correlation: 0.9114244686347994
Pair: EW-MAA, Correlation: 0.9607648630334321
Pair: EW-MCO, Correlation: 0.9137296532787113
Pair: EW-MSCI, Correlation: 0.9256735155913915
Pair: EW-NDAQ, Correlation: 0.9251633242694747
Pair: EW-NEE, Correlation: 0.9584714399603882
Pair: EW-NKE, Correlation: 0.9614579143074042
Pair: EW-NDSN, Correlation: 0.9302936671438379
Pair: EW-NSC, Correlation: 0.9553818493985635
Pair: EW-PAYX, Correlation: 0.9153388800927582
Pair: EW-PAYC, Correlation: 0.9229085697706515
Pair: EW-PEP, Correlation: 0.914170699519429
Pair: EW-PNC, Correlation: 0.9093856533492227
Pair: EW-POOL, Correlation: 0.9610591312037658
Pair: EW-PG, Correlation: 0.9112971620172906
Pair: EW-PLD, Correlation: 0.9569192124322363
Pair: EW-DGX, Correlation: 0.9257315692200175
Pair: EW-O, Correlation: 0.9205232423934077
Pair: EW-RMD, Correlation: 0.9599440404805661
Pair: EW-RVTY, Correlation: 0.9675780617129025
Pair: EW-ROK, Correlation: 0.9260060485331316
Pair: EW-ROP, Correlation: 0.9289140545171747
Pair: EW-SPGI, Correlation: 0.9369483780894102
Pair: EW-CRM, Correlation: 0.9198899322951158
Pair: EW-SBAC, Correlation: 0.9597936588018239
Pair: EW-SHW, Correlation: 0.9200583619195798
Pair: EW-SBUX, Correlation: 0.9313088910848704
Pair: EW-STE, Correlation: 0.9534816031333591
Pair: EW-SYY, Correlation: 0.9350917549089965
Pair: EW-TROW, Correlation: 0.9375008891871954
Pair: EW-TTWO, Correlation: 0.9266796513508179
Pair: EW-TGT, Correlation: 0.9331418868950986
Pair: EW-TEL, Correlation: 0.9185947656603964
Pair: EW-TDY, Correlation: 0.9577188604525
Pair: EW-TER, Correlation: 0.9272552405062239
Pair: EW-TXN, Correlation: 0.9401056540810985
Pair: EW-TMO, Correlation: 0.9452398438403421
Pair: EW-TRMB, Correlation: 0.9020990522022009
Pair: EW-TYL, Correlation: 0.9271935281414329
Pair: EW-UDR, Correlation: 0.9413485725794971
Pair: EW-UNP, Correlation: 0.936655053921337
Pair: EW-UPS, Correlation: 0.9297182836592681
Pair: EW-VRSN, Correlation: 0.9523433339822247
Pair: EW-VRSK, Correlation: 0.9023919931408705
Pair: EW-V, Correlation: 0.9257251935598028
Pair: EW-WAT, Correlation: 0.9410958274215493
Pair: EW-WEC, Correlation: 0.9458837565830757
Pair: EW-WST, Correlation: 0.937009137715582
Pair: EW-WTW, Correlation: 0.9078927342694658
Pair: EW-XEL, Correlation: 0.9508817553508985
Pair: EW-YUM, Correlation: 0.924357118491049
Pair: EW-ZBRA, Correlation: 0.9401715565445633
Pair: EW-ZTS, Correlation: 0.952563769406613
Pair: EA-EFX, Correlation: 0.903594416711031
Pair: EA-EQIX, Correlation: 0.9289524062053951
Pair: EA-EVRG, Correlation: 0.9343096398943137
Pair: EA-FDX, Correlation: 0.9073881741513756
Pair: EA-FI, Correlation: 0.9139035173905634
Pair: EA-GD, Correlation: 0.9051990580253324
Pair: EA-GL, Correlation: 0.9259636936119603
Pair: EA-HOLX, Correlation: 0.9124987773632157
Pair: EA-HD, Correlation: 0.9149461877251254
Pair: EA-HON, Correlation: 0.9390667764614308
Pair: EA-HUM, Correlation: 0.9129157820050745
Pair: EA-HBAN, Correlation: 0.9139340564276106
Pair: EA-HII, Correlation: 0.9157107487391946
Pair: EA-IEX, Correlation: 0.9281956608645114
Pair: EA-ITW, Correlation: 0.9240956732273627
Pair: EA-ICE, Correlation: 0.9150235429631175
Pair: EA-JKHY, Correlation: 0.9456692036542452
Pair: EA-JNJ, Correlation: 0.9466140996220399
Pair: EA-KDP, Correlation: 0.9055672176287322
Pair: EA-KMB, Correlation: 0.9126908097013361
Pair: EA-LHX, Correlation: 0.9240253437228941
Pair: EA-LH, Correlation: 0.9121787888479791
Pair: EA-LMT, Correlation: 0.9302795875321778
Pair: EA-MAS, Correlation: 0.930513727257907
Pair: EA-MKC, Correlation: 0.900233388130597
Pair: EA-MDT, Correlation: 0.9119673271054943
Pair: EA-MNST, Correlation: 0.9294391276605124
Pair: EA-NI, Correlation: 0.9344432108528262
Pair: EA-NDSN, Correlation: 0.9059128177530452
Pair: EA-NTRS, Correlation: 0.9234879498523321
Pair: EA-NOC, Correlation: 0.9282112969033418
Pair: EA-PKG, Correlation: 0.9060409484293319
Pair: EA-PNW, Correlation: 0.9161656032067717
Pair: EA-PNC, Correlation: 0.9158456616840145
Pair: EA-PEG, Correlation: 0.9032956793706077
Pair: EA-DGX, Correlation: 0.9327049643746882
Pair: EA-O, Correlation: 0.900346023350435
Pair: EA-ROK, Correlation: 0.9046981108192033
Pair: EA-ROL, Correlation: 0.9148011624865701
Pair: EA-ROP, Correlation: 0.9189595275938305
Pair: EA-ROST, Correlation: 0.9157471442911178
Pair: EA-SPGI, Correlation: 0.9009002076198853
Pair: EA-SWKS, Correlation: 0.9098965998861894
Pair: EA-SBUX, Correlation: 0.9034009810032722
Pair: EA-SYK, Correlation: 0.9022057069970117
Pair: EA-SYY, Correlation: 0.9262631332653325
Pair: EA-TTWO, Correlation: 0.9421332763716516
Pair: EA-TEL, Correlation: 0.9180595178811664
Pair: EA-TXN, Correlation: 0.9135295547925996
Pair: EA-TYL, Correlation: 0.9147703670700055
Pair: EA-UNP, Correlation: 0.9012162281473773
Pair: EA-VRSN, Correlation: 0.9054353286831083
Pair: EA-V, Correlation: 0.9176665711974132
Pair: EA-WAT, Correlation: 0.9072467263824603
Pair: EA-WEC, Correlation: 0.9185230883483971
Pair: EA-WTW, Correlation: 0.9019023339634654
Pair: EA-XEL, Correlation: 0.9233139337805771
Pair: ELV-EMR, Correlation: 0.9431465494153135
Pair: ELV-ETR, Correlation: 0.9515023409382811
Pair: ELV-EFX, Correlation: 0.9316030279564875
Pair: ELV-EQIX, Correlation: 0.9354760344307251
Pair: ELV-EG, Correlation: 0.9426106498986211
Pair: ELV-EXC, Correlation: 0.9565546428177673
Pair: ELV-EXPD, Correlation: 0.9609539617747299
Pair: ELV-EXR, Correlation: 0.9579592958057802
Pair: ELV-FDS, Correlation: 0.9767750199921996
Pair: ELV-FAST, Correlation: 0.9414055274961979
Pair: ELV-FITB, Correlation: 0.9113057300822762
Pair: ELV-FI, Correlation: 0.9211534417894449
Pair: ELV-FTNT, Correlation: 0.9385893596559598
Pair: ELV-GRMN, Correlation: 0.9014078668066502
Pair: ELV-IT, Correlation: 0.9403262440398754
Pair: ELV-GEN, Correlation: 0.9040115053086897
Pair: ELV-GD, Correlation: 0.9302833410303453
Pair: ELV-GIS, Correlation: 0.9070387742421763
Pair: ELV-GPC, Correlation: 0.9505432130081787
Pair: ELV-GL, Correlation: 0.9099569820082378
Pair: ELV-GS, Correlation: 0.9142758812459838
Pair: ELV-HIG, Correlation: 0.9230673948879823
Pair: ELV-HCA, Correlation: 0.9550798954214516
Pair: ELV-HSY, Correlation: 0.9574441128404105
Pair: ELV-HLT, Correlation: 0.9283533211427624
Pair: ELV-HOLX, Correlation: 0.9522857151653668
Pair: ELV-HD, Correlation: 0.9659545259710857
Pair: ELV-HON, Correlation: 0.9482113929024911
Pair: ELV-HPQ, Correlation: 0.9288715916058351
Pair: ELV-HUM, Correlation: 0.9285906911486346
Pair: ELV-IEX, Correlation: 0.9612819737326505
Pair: ELV-IDXX, Correlation: 0.9224512517989156
Pair: ELV-ITW, Correlation: 0.963975863673378
Pair: ELV-ICE, Correlation: 0.9509943770871727
Pair: ELV-IPG, Correlation: 0.936244480630998
Pair: ELV-INTU, Correlation: 0.9538007047212433
Pair: ELV-ISRG, Correlation: 0.9281882683775191
Pair: ELV-IQV, Correlation: 0.9492101818201317
Pair: ELV-JBHT, Correlation: 0.9589551798303895
Pair: ELV-JKHY, Correlation: 0.93303899091954
Pair: ELV-J, Correlation: 0.944919005388372
Pair: ELV-JNJ, Correlation: 0.9471997364307456
Pair: ELV-JCI, Correlation: 0.909057442018266
Pair: ELV-JPM, Correlation: 0.9365901078746129
Pair: ELV-KDP, Correlation: 0.9651800507700791
Pair: ELV-KEYS, Correlation: 0.9240170592364768
Pair: ELV-KLAC, Correlation: 0.9052939366236307
Pair: ELV-KR, Correlation: 0.9022250032549952
Pair: ELV-LHX, Correlation: 0.9502303908546268
Pair: ELV-LH, Correlation: 0.9477025808117467
Pair: ELV-LRCX, Correlation: 0.9157310133753832
Pair: ELV-LDOS, Correlation: 0.9307370694528435
Pair: ELV-LIN, Correlation: 0.9521267371343762
Pair: ELV-LYV, Correlation: 0.9496357823609007
Pair: ELV-LMT, Correlation: 0.9536097576983233
Pair: ELV-LOW, Correlation: 0.9688691793765567
Pair: ELV-LULU, Correlation: 0.902400315409653
Pair: ELV-MAR, Correlation: 0.942572565178446
Pair: ELV-MMC, Correlation: 0.9762940083324879
Pair: ELV-MLM, Correlation: 0.9392106455541062
Pair: ELV-MAS, Correlation: 0.9313297710162157
Pair: ELV-MA, Correlation: 0.9609386657626865
Pair: ELV-MCD, Correlation: 0.9767987906103991
Pair: ELV-MRK, Correlation: 0.955786004943627
Pair: ELV-MET, Correlation: 0.940649679868149
Pair: ELV-MTD, Correlation: 0.9613028413892869
Pair: ELV-MCHP, Correlation: 0.9645859225490728
Pair: ELV-MU, Correlation: 0.9087402147421355
Pair: ELV-MSFT, Correlation: 0.9518012003734835
Pair: ELV-MAA, Correlation: 0.9340256605867857
Pair: ELV-MOH, Correlation: 0.9779285918491916
Pair: ELV-MDLZ, Correlation: 0.9583643388218723
Pair: ELV-MPWR, Correlation: 0.9239874576638739
Pair: ELV-MNST, Correlation: 0.950587209853549
Pair: ELV-MCO, Correlation: 0.952687461348615
Pair: ELV-MS, Correlation: 0.9480402493805574
Pair: ELV-MSI, Correlation: 0.9401493763088498
Pair: ELV-MSCI, Correlation: 0.9481763126492577
Pair: ELV-NDAQ, Correlation: 0.9673292178792299
Pair: ELV-NEE, Correlation: 0.9459344425538299
Pair: ELV-NDSN, Correlation: 0.9683809745659855
Pair: ELV-NSC, Correlation: 0.9504075751766176
Pair: ELV-NOC, Correlation: 0.9662712003364188
Pair: ELV-NUE, Correlation: 0.9136545649006741
Pair: ELV-NVR, Correlation: 0.9364879672012412
Pair: ELV-NXPI, Correlation: 0.936668694204758
Pair: ELV-ORLY, Correlation: 0.953914590149456
Pair: ELV-ODFL, Correlation: 0.9531399719039465
Pair: ELV-ON, Correlation: 0.9262284442781178
Pair: ELV-PKG, Correlation: 0.9394337920873478
Pair: ELV-PAYX, Correlation: 0.9827279612158994
Pair: ELV-PEP, Correlation: 0.9794738540315198
Pair: ELV-PNC, Correlation: 0.9139733353603696
Pair: ELV-POOL, Correlation: 0.9302907206628621
Pair: ELV-PFG, Correlation: 0.9344719619202626
Pair: ELV-PG, Correlation: 0.9643120216007368
Pair: ELV-PGR, Correlation: 0.9268030324760392
Pair: ELV-PLD, Correlation: 0.9611462327999364
Pair: ELV-PEG, Correlation: 0.9549490714285296
Pair: ELV-PTC, Correlation: 0.9514489632361411
Pair: ELV-PSA, Correlation: 0.9429941911302075
Pair: ELV-DGX, Correlation: 0.959171519940859
Pair: ELV-RJF, Correlation: 0.9637472631503338
Pair: ELV-RTX, Correlation: 0.9198487303095344
Pair: ELV-RF, Correlation: 0.9401302494065147
Pair: ELV-RSG, Correlation: 0.9657273959456344
Pair: ELV-RMD, Correlation: 0.9325727289068835
Pair: ELV-ROK, Correlation: 0.9459396336805078
Pair: ELV-ROL, Correlation: 0.9642987766860859
Pair: ELV-ROP, Correlation: 0.9635950519794902
Pair: ELV-ROST, Correlation: 0.9163024886096998
Pair: ELV-SPGI, Correlation: 0.9564478149472504
Pair: ELV-CRM, Correlation: 0.902398157766475
Pair: ELV-STX, Correlation: 0.9041456099798132
Pair: ELV-SRE, Correlation: 0.9430251304922521
Pair: ELV-NOW, Correlation: 0.9082404124780569
Pair: ELV-SHW, Correlation: 0.9520399601306602
Pair: ELV-SNA, Correlation: 0.9284992364690744
Pair: ELV-SO, Correlation: 0.9570301338818678
Pair: ELV-SBUX, Correlation: 0.9043272028073404
Pair: ELV-STLD, Correlation: 0.913108002354512
Pair: ELV-STE, Correlation: 0.9691343712552122
Pair: ELV-SYK, Correlation: 0.9594589723102452
Pair: ELV-SNPS, Correlation: 0.9323318954670154
Pair: ELV-SYY, Correlation: 0.9433667104024821
Pair: ELV-TMUS, Correlation: 0.9558969002978298
Pair: ELV-TEL, Correlation: 0.9580008855777702
Pair: ELV-TDY, Correlation: 0.9530840708702603
Pair: ELV-TER, Correlation: 0.9176022394314878
Pair: ELV-TXN, Correlation: 0.9680618005015311
Pair: ELV-TPL, Correlation: 0.9076495240015826
Pair: ELV-TXT, Correlation: 0.9066645644642742
Pair: ELV-TMO, Correlation: 0.9709389986414257
Pair: ELV-TJX, Correlation: 0.941904965241247
Pair: ELV-TSCO, Correlation: 0.9503832326343985
Pair: ELV-TDG, Correlation: 0.9152475384371824
Pair: ELV-TRV, Correlation: 0.9480831419091295
Pair: ELV-TYL, Correlation: 0.9234983274682319
Pair: ELV-ULTA, Correlation: 0.9293483164489516
Pair: ELV-UNP, Correlation: 0.9692004414816904
Pair: ELV-UPS, Correlation: 0.9159488180554811
Pair: ELV-UNH, Correlation: 0.9899029172789218
Pair: ELV-VLO, Correlation: 0.9253426527312034
Pair: ELV-VRSK, Correlation: 0.9528576287882018
Pair: ELV-VRTX, Correlation: 0.9327063048537948
Pair: ELV-VICI, Correlation: 0.9265733572956673
Pair: ELV-V, Correlation: 0.9594970039844908
Pair: ELV-VMC, Correlation: 0.9377840543075054
Pair: ELV-WRB, Correlation: 0.9715046118229395
Pair: ELV-WMT, Correlation: 0.9274191155381303
Pair: ELV-WM, Correlation: 0.979231114525609
Pair: ELV-WAT, Correlation: 0.9524230794845725
Pair: ELV-WEC, Correlation: 0.9281093071938048
Pair: ELV-WST, Correlation: 0.9250651567584218
Pair: ELV-WTW, Correlation: 0.9579990713418881
Pair: ELV-XEL, Correlation: 0.9244656236216707
Pair: ELV-XYL, Correlation: 0.9392328498525705
Pair: ELV-YUM, Correlation: 0.9715741518236101
Pair: ELV-ZTS, Correlation: 0.9296372279962649
Pair: EMR-ETR, Correlation: 0.9200074934411125
Pair: EMR-EFX, Correlation: 0.9291450517344576
Pair: EMR-EQIX, Correlation: 0.9120520963926622
Pair: EMR-EG, Correlation: 0.9168083890397121
Pair: EMR-EXPD, Correlation: 0.954858574629383
Pair: EMR-EXR, Correlation: 0.9138224743204088
Pair: EMR-FDS, Correlation: 0.9343135421679706
Pair: EMR-FAST, Correlation: 0.9625241764426
Pair: EMR-FITB, Correlation: 0.938342851128298
Pair: EMR-FI, Correlation: 0.9165041638088717
Pair: EMR-FTNT, Correlation: 0.9344150242480409
Pair: EMR-GRMN, Correlation: 0.9524998986697741
Pair: EMR-IT, Correlation: 0.9535479160138903
Pair: EMR-GEN, Correlation: 0.9091425794740624
Pair: EMR-GD, Correlation: 0.906548312832623
Pair: EMR-GPC, Correlation: 0.9061202251463606
Pair: EMR-GS, Correlation: 0.9620666679342199
Pair: EMR-HIG, Correlation: 0.9389550579174437
Pair: EMR-HCA, Correlation: 0.961356278064649
Pair: EMR-HLT, Correlation: 0.9613698471914642
Pair: EMR-HOLX, Correlation: 0.9120085403407641
Pair: EMR-HD, Correlation: 0.9521281382420752
Pair: EMR-HON, Correlation: 0.9319686829814711
Pair: EMR-HPQ, Correlation: 0.9240208432553648
Pair: EMR-HUBB, Correlation: 0.9286469147623657
Pair: EMR-IEX, Correlation: 0.9347366888645678
Pair: EMR-IDXX, Correlation: 0.9209535843881279
Pair: EMR-ITW, Correlation: 0.9524340759647345
Pair: EMR-IR, Correlation: 0.9355674431482743
Pair: EMR-ICE, Correlation: 0.9495206761432663
Pair: EMR-IPG, Correlation: 0.9183983674425995
Pair: EMR-INTU, Correlation: 0.9617292144214107
Pair: EMR-ISRG, Correlation: 0.9551647802096245
Pair: EMR-IQV, Correlation: 0.9130242377942834
Pair: EMR-JBHT, Correlation: 0.9451579702232354
Pair: EMR-J, Correlation: 0.9682730846968801
Pair: EMR-JCI, Correlation: 0.9469134640936447
Pair: EMR-JPM, Correlation: 0.9672745093517606
Pair: EMR-KDP, Correlation: 0.9031980987560876
Pair: EMR-KKR, Correlation: 0.9339814970622579
Pair: EMR-KLAC, Correlation: 0.9333394932249407
Pair: EMR-LHX, Correlation: 0.9053553008645345
Pair: EMR-LH, Correlation: 0.9428564022805963
Pair: EMR-LRCX, Correlation: 0.9465130631549739
Pair: EMR-LDOS, Correlation: 0.928023066894756
Pair: EMR-LEN, Correlation: 0.9361228577574495
Pair: EMR-LII, Correlation: 0.9274722756799509
Pair: EMR-LIN, Correlation: 0.9630805023137639
Pair: EMR-LYV, Correlation: 0.9412052665109716
Pair: EMR-LMT, Correlation: 0.9041058668258697
Pair: EMR-L, Correlation: 0.9247360329019172
Pair: EMR-LOW, Correlation: 0.9615719237990359
Pair: EMR-MAR, Correlation: 0.9468928833997149
Pair: EMR-MMC, Correlation: 0.9625073894824464
Pair: EMR-MLM, Correlation: 0.9586681373584164
Pair: EMR-MAS, Correlation: 0.935306417541179
Pair: EMR-MA, Correlation: 0.9481319371051228
Pair: EMR-MCD, Correlation: 0.9362365922010585
Pair: EMR-MRK, Correlation: 0.9182866759507143
Pair: EMR-MET, Correlation: 0.9605295105755438
Pair: EMR-MTD, Correlation: 0.9332998906872207
Pair: EMR-MCHP, Correlation: 0.9555286418893871
Pair: EMR-MU, Correlation: 0.9510420529500707
Pair: EMR-MSFT, Correlation: 0.9562091995259688
Pair: EMR-MOH, Correlation: 0.9392290622524836
Pair: EMR-MDLZ, Correlation: 0.916474680559199
Pair: EMR-MPWR, Correlation: 0.9404734417680846
Pair: EMR-MNST, Correlation: 0.9063444848511543
Pair: EMR-MCO, Correlation: 0.9567195658925515
Pair: EMR-MS, Correlation: 0.9703793447886975
Pair: EMR-MSI, Correlation: 0.9520615981036927
Pair: EMR-MSCI, Correlation: 0.9380461097907324
Pair: EMR-NDAQ, Correlation: 0.9522339617516723
Pair: EMR-NTAP, Correlation: 0.9300716703121296
Pair: EMR-NWS, Correlation: 0.9036783679711748
Pair: EMR-NEE, Correlation: 0.9033472546624363
Pair: EMR-NDSN, Correlation: 0.9544146187419218
Pair: EMR-NSC, Correlation: 0.9356682029266933
Pair: EMR-NOC, Correlation: 0.9036642549437209
Pair: EMR-NUE, Correlation: 0.9122971185541756
Pair: EMR-NVR, Correlation: 0.9525011146953767
Pair: EMR-NXPI, Correlation: 0.9484723251827923
Pair: EMR-ORLY, Correlation: 0.9393911160745466
Pair: EMR-ODFL, Correlation: 0.9549084257670726
Pair: EMR-ON, Correlation: 0.9018679508391252
Pair: EMR-OKE, Correlation: 0.9189381928319788
Pair: EMR-ORCL, Correlation: 0.937419566806042
Pair: EMR-OTIS, Correlation: 0.9277343081669328
Pair: EMR-PCAR, Correlation: 0.9317892847894601
Pair: EMR-PKG, Correlation: 0.9588525222923701
Pair: EMR-PANW, Correlation: 0.9125298211434079
Pair: EMR-PH, Correlation: 0.9521141440860929
Pair: EMR-PAYX, Correlation: 0.9583319960805674
Pair: EMR-PNR, Correlation: 0.9362873718770044
Pair: EMR-PEP, Correlation: 0.9259565503013794
Pair: EMR-PNC, Correlation: 0.9204722683906941
Pair: EMR-POOL, Correlation: 0.9156214363212091
Pair: EMR-PFG, Correlation: 0.927371357127936
Pair: EMR-PG, Correlation: 0.9452760979307708
Pair: EMR-PGR, Correlation: 0.9342002211108118
Pair: EMR-PLD, Correlation: 0.9284547102231754
Pair: EMR-PRU, Correlation: 0.9173293419774
Pair: EMR-PEG, Correlation: 0.9367286294353574
Pair: EMR-PTC, Correlation: 0.9689267547626469
Pair: EMR-PSA, Correlation: 0.9055336821827997
Pair: EMR-PHM, Correlation: 0.906571727212362
Pair: EMR-QCOM, Correlation: 0.9339668307827699
Pair: EMR-DGX, Correlation: 0.9293003661960066
Pair: EMR-RJF, Correlation: 0.9711465985977479
Pair: EMR-RTX, Correlation: 0.9238521235611994
Pair: EMR-RF, Correlation: 0.9452077821488011
Pair: EMR-RSG, Correlation: 0.9569733902322002
Pair: EMR-RMD, Correlation: 0.9054867441832666
Pair: EMR-ROK, Correlation: 0.9432896280301407
Pair: EMR-ROL, Correlation: 0.9425609976746571
Pair: EMR-ROP, Correlation: 0.9444747678514321
Pair: EMR-ROST, Correlation: 0.9079444913316107
Pair: EMR-SPGI, Correlation: 0.9475604271322393
Pair: EMR-CRM, Correlation: 0.9168426839438212
Pair: EMR-STX, Correlation: 0.9465998111089201
Pair: EMR-SRE, Correlation: 0.9002434643257045
Pair: EMR-NOW, Correlation: 0.9407483835447741
Pair: EMR-SHW, Correlation: 0.9577933718996534
Pair: EMR-SNA, Correlation: 0.9310360399120156
Pair: EMR-SO, Correlation: 0.9338207791521566
Pair: EMR-STLD, Correlation: 0.9212780968586504
Pair: EMR-STE, Correlation: 0.9377440305185969
Pair: EMR-SYK, Correlation: 0.9567794448007746
Pair: EMR-SNPS, Correlation: 0.9402835194368542
Pair: EMR-TMUS, Correlation: 0.9514342572875691
Pair: EMR-TEL, Correlation: 0.9620387279470144
Pair: EMR-TDY, Correlation: 0.9272093207864739
Pair: EMR-TER, Correlation: 0.9248243373625745
Pair: EMR-TXN, Correlation: 0.9547473200430299
Pair: EMR-TPL, Correlation: 0.9267397547855614
Pair: EMR-TXT, Correlation: 0.9245650339504763
Pair: EMR-TMO, Correlation: 0.9396872193478473
Pair: EMR-TJX, Correlation: 0.9503022228854474
Pair: EMR-TSCO, Correlation: 0.9500163167964056
Pair: EMR-TT, Correlation: 0.9470252235795823
Pair: EMR-TDG, Correlation: 0.9391804765882604
Pair: EMR-TRV, Correlation: 0.942502991422588
Pair: EMR-TYL, Correlation: 0.9262834829584325
Pair: EMR-UNP, Correlation: 0.9510571232072257
Pair: EMR-URI, Correlation: 0.9435455216627946
Pair: EMR-UNH, Correlation: 0.9481499696245884
Pair: EMR-VRSK, Correlation: 0.9431040776621696
Pair: EMR-VRTX, Correlation: 0.9054654865575711
Pair: EMR-V, Correlation: 0.9401781286408438
Pair: EMR-VMC, Correlation: 0.9422998963805489
Pair: EMR-WRB, Correlation: 0.9488545001548704
Pair: EMR-GWW, Correlation: 0.9220611424279533
Pair: EMR-WMT, Correlation: 0.9493001796611513
Pair: EMR-WM, Correlation: 0.9604550504882311
Pair: EMR-WAT, Correlation: 0.9379874122217028
Pair: EMR-WST, Correlation: 0.916870638847467
Pair: EMR-WTW, Correlation: 0.9483102370685522
Pair: EMR-XYL, Correlation: 0.9496516217140457
Pair: EMR-YUM, Correlation: 0.9434467303331427
Pair: ETR-EFX, Correlation: 0.9246024563690698
Pair: ETR-EQIX, Correlation: 0.9539847137228575
Pair: ETR-ERIE, Correlation: 0.9037830582224741
Pair: ETR-EG, Correlation: 0.9143231138665028
Pair: ETR-EVRG, Correlation: 0.9265576276522564
Pair: ETR-EXC, Correlation: 0.9292684808326429
Pair: ETR-EXPD, Correlation: 0.9310277409248569
Pair: ETR-EXR, Correlation: 0.9419659221397509
Pair: ETR-FDS, Correlation: 0.9577937009412014
Pair: ETR-FAST, Correlation: 0.9319665841268049
Pair: ETR-FI, Correlation: 0.9662872309128716
Pair: ETR-FTNT, Correlation: 0.9045177606860508
Pair: ETR-GRMN, Correlation: 0.9318764680428093
Pair: ETR-IT, Correlation: 0.9030563998981256
Pair: ETR-GEV, Correlation: 0.9656912114764247
Pair: ETR-GEN, Correlation: 0.9107546502218351
Pair: ETR-GD, Correlation: 0.9020771197381647
Pair: ETR-GL, Correlation: 0.9006500276758507
Pair: ETR-HIG, Correlation: 0.9132207791357542
Pair: ETR-HCA, Correlation: 0.9266138023849677
Pair: ETR-HSY, Correlation: 0.9226680882134698
Pair: ETR-HLT, Correlation: 0.9180861120258719
Pair: ETR-HOLX, Correlation: 0.937609165776778
Pair: ETR-HD, Correlation: 0.962811810757745
Pair: ETR-HON, Correlation: 0.9492321428436772
Pair: ETR-IEX, Correlation: 0.9509425103737025
Pair: ETR-IDXX, Correlation: 0.9033607488570962
Pair: ETR-ITW, Correlation: 0.9534307056322431
Pair: ETR-PODD, Correlation: 0.9027233216894802
Pair: ETR-ICE, Correlation: 0.9643185162696362
Pair: ETR-INTU, Correlation: 0.9359529074225958
Pair: ETR-ISRG, Correlation: 0.9395357975027017
Pair: ETR-IQV, Correlation: 0.9236881605788821
Pair: ETR-JBHT, Correlation: 0.9125087299952302
Pair: ETR-JKHY, Correlation: 0.9433679274206287
Pair: ETR-J, Correlation: 0.9392500879801398
Pair: ETR-JNJ, Correlation: 0.9368977352212106
Pair: ETR-JPM, Correlation: 0.9427151452741678
Pair: ETR-KDP, Correlation: 0.9636758648687348
Pair: ETR-LHX, Correlation: 0.9704353534732796
Pair: ETR-LH, Correlation: 0.9254929476139371
Pair: ETR-LDOS, Correlation: 0.9688814908871022
Pair: ETR-LII, Correlation: 0.917148363037876
Pair: ETR-LIN, Correlation: 0.9267646276787221
Pair: ETR-LYV, Correlation: 0.953735735953819
Pair: ETR-LMT, Correlation: 0.9653888002150209
Pair: ETR-LOW, Correlation: 0.9476726525765348
Pair: ETR-MAR, Correlation: 0.9277752873320267
Pair: ETR-MMC, Correlation: 0.9543973322099037
Pair: ETR-MLM, Correlation: 0.9189046787745726
Pair: ETR-MAS, Correlation: 0.9431455369795939
Pair: ETR-MA, Correlation: 0.9724229116802899
Pair: ETR-MKC, Correlation: 0.9223814759542833
Pair: ETR-MCD, Correlation: 0.9653699974023812
Pair: ETR-MRK, Correlation: 0.9288140554685492
Pair: ETR-MET, Correlation: 0.905207081166407
Pair: ETR-MTD, Correlation: 0.9372247057893562
Pair: ETR-MCHP, Correlation: 0.9276962368962671
Pair: ETR-MSFT, Correlation: 0.9327997727051165
Pair: ETR-MAA, Correlation: 0.9318411646031869
Pair: ETR-MOH, Correlation: 0.9276518278766883
Pair: ETR-MDLZ, Correlation: 0.9443595445093106
Pair: ETR-MNST, Correlation: 0.9232709420341457
Pair: ETR-MCO, Correlation: 0.9617334999923917
Pair: ETR-MS, Correlation: 0.9208491721881098
Pair: ETR-MSI, Correlation: 0.9414838973890429
Pair: ETR-MSCI, Correlation: 0.9331236506423685
Pair: ETR-NDAQ, Correlation: 0.9611000319662196
Pair: ETR-NEE, Correlation: 0.9601597608003125
Pair: ETR-NI, Correlation: 0.9258291703713207
Pair: ETR-NDSN, Correlation: 0.9516540690880894
Pair: ETR-NSC, Correlation: 0.9510951639007406
Pair: ETR-NOC, Correlation: 0.9549143554195286
Pair: ETR-NVR, Correlation: 0.9414538056406535
Pair: ETR-NXPI, Correlation: 0.9060814891207161
Pair: ETR-ORLY, Correlation: 0.9262166894559579
Pair: ETR-ODFL, Correlation: 0.912826632228645
Pair: ETR-PKG, Correlation: 0.9388516111025531
Pair: ETR-PAYX, Correlation: 0.9677699801282984
Pair: ETR-PEP, Correlation: 0.9590207273251664
Pair: ETR-PNC, Correlation: 0.916893709147433
Pair: ETR-POOL, Correlation: 0.9142233874737639
Pair: ETR-PG, Correlation: 0.9682775894770687
Pair: ETR-PGR, Correlation: 0.9236697324122675
Pair: ETR-PLD, Correlation: 0.9459269333740976
Pair: ETR-PEG, Correlation: 0.9795260248362565
Pair: ETR-PTC, Correlation: 0.9244174621541582
Pair: ETR-PSA, Correlation: 0.9259345088213121
Pair: ETR-DGX, Correlation: 0.9513064559812261
Pair: ETR-RJF, Correlation: 0.9290360820782396
Pair: ETR-RTX, Correlation: 0.9218551167270959
Pair: ETR-O, Correlation: 0.9246650929269132
Pair: ETR-RF, Correlation: 0.9165216796703262
Pair: ETR-RSG, Correlation: 0.9524683604977522
Pair: ETR-RMD, Correlation: 0.9421299244174139
Pair: ETR-ROK, Correlation: 0.9168885799302229
Pair: ETR-ROL, Correlation: 0.9554020679869242
Pair: ETR-ROP, Correlation: 0.9635181528078257
Pair: ETR-ROST, Correlation: 0.9360372170070599
Pair: ETR-SPGI, Correlation: 0.9641647175471131
Pair: ETR-CRM, Correlation: 0.9237331433742962
Pair: ETR-SRE, Correlation: 0.9608844131170775
Pair: ETR-NOW, Correlation: 0.923181065389784
Pair: ETR-SHW, Correlation: 0.9598815608526721
Pair: ETR-SNA, Correlation: 0.9000445169715127
Pair: ETR-SO, Correlation: 0.9717691153594045
Pair: ETR-SBUX, Correlation: 0.9131830040194608
Pair: ETR-STE, Correlation: 0.9627982574968128
Pair: ETR-SYK, Correlation: 0.962078430891165
Pair: ETR-SYY, Correlation: 0.9454521709619315
Pair: ETR-TMUS, Correlation: 0.9607591705439493
Pair: ETR-TEL, Correlation: 0.933730892980753
Pair: ETR-TDY, Correlation: 0.9642795040388937
Pair: ETR-TER, Correlation: 0.9063961929334515
Pair: ETR-TXN, Correlation: 0.9640449618502828
Pair: ETR-TPL, Correlation: 0.906188932053391
Pair: ETR-TMO, Correlation: 0.9499700703449486
Pair: ETR-TJX, Correlation: 0.9409508127271804
Pair: ETR-TSCO, Correlation: 0.9157197928486873
Pair: ETR-TT, Correlation: 0.9000985656747138
Pair: ETR-TDG, Correlation: 0.9217828004846301
Pair: ETR-TRV, Correlation: 0.9381344605861901
Pair: ETR-TYL, Correlation: 0.9441690760732853
Pair: ETR-UDR, Correlation: 0.9060175305615107
Pair: ETR-UNP, Correlation: 0.9608016381223484
Pair: ETR-UNH, Correlation: 0.9592400783308008
Pair: ETR-VRSN, Correlation: 0.9151397436267544
Pair: ETR-VRSK, Correlation: 0.9602224803199712
Pair: ETR-VRTX, Correlation: 0.9265265075450069
Pair: ETR-V, Correlation: 0.970528117794916
Pair: ETR-VMC, Correlation: 0.926602335958105
Pair: ETR-WRB, Correlation: 0.9593260495214945
Pair: ETR-WMT, Correlation: 0.9527166982929103
Pair: ETR-WM, Correlation: 0.9697996358365694
Pair: ETR-WAT, Correlation: 0.9377274000240039
Pair: ETR-WEC, Correlation: 0.9650622180346021
Pair: ETR-WELL, Correlation: 0.9131192969780052
Pair: ETR-WTW, Correlation: 0.9710972996406615
Pair: ETR-XEL, Correlation: 0.955997058074537
Pair: ETR-XYL, Correlation: 0.9315771667528904
Pair: ETR-YUM, Correlation: 0.9596467486739745
Pair: ETR-ZTS, Correlation: 0.929741858175278
Pair: EOG-XOM, Correlation: 0.9170673302403731
Pair: EOG-VLO, Correlation: 0.9065806650636812
Pair: EPAM-EL, Correlation: 0.940822142632689
Pair: EPAM-GNRC, Correlation: 0.9212216983936091
Pair: EPAM-IDXX, Correlation: 0.907228479067408
Pair: EPAM-NKE, Correlation: 0.9492462206367631
Pair: EPAM-PAYC, Correlation: 0.924331995087135
Pair: EPAM-POOL, Correlation: 0.9247293176071747
Pair: EPAM-RMD, Correlation: 0.9008848889063993
Pair: EPAM-RVTY, Correlation: 0.9393674292991466
Pair: EPAM-SBAC, Correlation: 0.9151950477594618
Pair: EPAM-TROW, Correlation: 0.9534873750700867
Pair: EPAM-TGT, Correlation: 0.9379766851582132
Pair: EPAM-TRMB, Correlation: 0.9209652095905704
Pair: EPAM-ZBRA, Correlation: 0.9511318239038329
Pair: EFX-EQIX, Correlation: 0.9630498432587813
Pair: EFX-EG, Correlation: 0.9170973247169187
Pair: EFX-EVRG, Correlation: 0.9089430818743436
Pair: EFX-EXPD, Correlation: 0.94827375858
Pair: EFX-EXR, Correlation: 0.9616675986138494
Pair: EFX-FDS, Correlation: 0.9474074138363555
Pair: EFX-FAST, Correlation: 0.9349922686751965
Pair: EFX-FITB, Correlation: 0.9319007293673107
Pair: EFX-FI, Correlation: 0.9306679770456661
Pair: EFX-FTNT, Correlation: 0.9160095991469203
Pair: EFX-GRMN, Correlation: 0.9383673882461177
Pair: EFX-IT, Correlation: 0.9213209637907888
Pair: EFX-GEN, Correlation: 0.9442295661892344
Pair: EFX-GD, Correlation: 0.912181509397319
Pair: EFX-GPC, Correlation: 0.9011047455364287
Pair: EFX-GS, Correlation: 0.9310267520920914
Pair: EFX-HIG, Correlation: 0.9236063167913949
Pair: EFX-HCA, Correlation: 0.9441620029157458
Pair: EFX-HSY, Correlation: 0.9026442767575543
Pair: EFX-HLT, Correlation: 0.9054174855902167
Pair: EFX-HOLX, Correlation: 0.9551594505294385
Pair: EFX-HD, Correlation: 0.9764032927964145
Pair: EFX-HON, Correlation: 0.9527065899948758
Pair: EFX-IEX, Correlation: 0.9443601240553738
Pair: EFX-IDXX, Correlation: 0.9446796304652205
Pair: EFX-ITW, Correlation: 0.964205512061938
Pair: EFX-ICE, Correlation: 0.969834298005459
Pair: EFX-IPG, Correlation: 0.9502279477369594
Pair: EFX-INTU, Correlation: 0.9553538881155814
Pair: EFX-ISRG, Correlation: 0.9400718649208943
Pair: EFX-INVH, Correlation: 0.9151247697415185
Pair: EFX-IQV, Correlation: 0.946262878521879
Pair: EFX-JBHT, Correlation: 0.9489419722501059
Pair: EFX-JKHY, Correlation: 0.9105518796509314
Pair: EFX-J, Correlation: 0.9293384841194873
Pair: EFX-JNJ, Correlation: 0.9397525486408819
Pair: EFX-JCI, Correlation: 0.9571108241783927
Pair: EFX-JPM, Correlation: 0.9467727377544843
Pair: EFX-KDP, Correlation: 0.9299917184891893
Pair: EFX-KMB, Correlation: 0.9111707045349775
Pair: EFX-KR, Correlation: 0.9115998717610989
Pair: EFX-LHX, Correlation: 0.9253500699938632
Pair: EFX-LH, Correlation: 0.9683661397504351
Pair: EFX-LRCX, Correlation: 0.908837468838621
Pair: EFX-LDOS, Correlation: 0.9201146087405219
Pair: EFX-LEN, Correlation: 0.9195481294526705
Pair: EFX-LII, Correlation: 0.9179703916385511
Pair: EFX-LIN, Correlation: 0.9220247719578208
Pair: EFX-LYV, Correlation: 0.9396156089363958
Pair: EFX-LMT, Correlation: 0.9277726716039835
Pair: EFX-LOW, Correlation: 0.9685442432112994
Pair: EFX-MAR, Correlation: 0.9131539932728437
Pair: EFX-MMC, Correlation: 0.9518405569248768
Pair: EFX-MLM, Correlation: 0.9486508052616563
Pair: EFX-MAS, Correlation: 0.9723193997174745
Pair: EFX-MA, Correlation: 0.9427183532659247
Pair: EFX-MCD, Correlation: 0.9391739376561937
Pair: EFX-MRK, Correlation: 0.9010412484492238
Pair: EFX-MET, Correlation: 0.9133477853547765
Pair: EFX-MTD, Correlation: 0.95608608139561
Pair: EFX-MGM, Correlation: 0.9003868724649567
Pair: EFX-MCHP, Correlation: 0.9505383068511105
Pair: EFX-MU, Correlation: 0.9066643410695232
Pair: EFX-MSFT, Correlation: 0.9377071992064373
Pair: EFX-MAA, Correlation: 0.9488464503508854
Pair: EFX-MOH, Correlation: 0.9234589795950194
Pair: EFX-MDLZ, Correlation: 0.955252802289168
Pair: EFX-MPWR, Correlation: 0.9206263636634962
Pair: EFX-MNST, Correlation: 0.945292368941795
Pair: EFX-MCO, Correlation: 0.9707465232091423
Pair: EFX-MS, Correlation: 0.9441492865163852
Pair: EFX-MSI, Correlation: 0.9171645841930978
Pair: EFX-MSCI, Correlation: 0.9452478126858994
Pair: EFX-NDAQ, Correlation: 0.9709529208364317
Pair: EFX-NEE, Correlation: 0.9361253270565367
Pair: EFX-NI, Correlation: 0.9030711959359494
Pair: EFX-NDSN, Correlation: 0.9622771139537701
Pair: EFX-NSC, Correlation: 0.9384817046919085
Pair: EFX-NOC, Correlation: 0.9240930120955732
Pair: EFX-NVR, Correlation: 0.9405046373547407
Pair: EFX-NXPI, Correlation: 0.9674813254007646
Pair: EFX-ORLY, Correlation: 0.9214652891827642
Pair: EFX-ODFL, Correlation: 0.9264395387463641
Pair: EFX-PKG, Correlation: 0.9445850724184679
Pair: EFX-PAYX, Correlation: 0.9588524404457215
Pair: EFX-PNR, Correlation: 0.9088329999539903
Pair: EFX-PEP, Correlation: 0.9489096424959469
Pair: EFX-PM, Correlation: 0.9102537962225145
Pair: EFX-PNC, Correlation: 0.9391540483927607
Pair: EFX-POOL, Correlation: 0.9492644476794629
Pair: EFX-PPG, Correlation: 0.9101971837810102
Pair: EFX-PFG, Correlation: 0.9093025142220851
Pair: EFX-PG, Correlation: 0.9500967051528048
Pair: EFX-PLD, Correlation: 0.9534284731527336
Pair: EFX-PEG, Correlation: 0.9427468100561499
Pair: EFX-PTC, Correlation: 0.9294348562183649
Pair: EFX-PSA, Correlation: 0.9587611969430021
Pair: EFX-QCOM, Correlation: 0.9080550999643083
Pair: EFX-DGX, Correlation: 0.9632353876051227
Pair: EFX-RJF, Correlation: 0.9325772451488008
Pair: EFX-O, Correlation: 0.9042280110674564
Pair: EFX-RF, Correlation: 0.9224478252465135
Pair: EFX-RSG, Correlation: 0.935939823211882
Pair: EFX-RMD, Correlation: 0.9372766896420978
Pair: EFX-RVTY, Correlation: 0.9122621860084889
Pair: EFX-ROK, Correlation: 0.954447511985492
Pair: EFX-ROL, Correlation: 0.9396973791812825
Pair: EFX-ROP, Correlation: 0.9566785156456988
Pair: EFX-ROST, Correlation: 0.927771786863877
Pair: EFX-SPGI, Correlation: 0.9683214282958851
Pair: EFX-CRM, Correlation: 0.938028605001216
Pair: EFX-STX, Correlation: 0.9352590753448201
Pair: EFX-SRE, Correlation: 0.9204641243338336
Pair: EFX-NOW, Correlation: 0.938894136500659
Pair: EFX-SHW, Correlation: 0.9761572863460223
Pair: EFX-SNA, Correlation: 0.9382788695430201
Pair: EFX-SO, Correlation: 0.9386858575982329
Pair: EFX-SBUX, Correlation: 0.9355842840247497
Pair: EFX-STE, Correlation: 0.9545687637705309
Pair: EFX-SYK, Correlation: 0.9553051981656918
Pair: EFX-SYY, Correlation: 0.9154926786308202
Pair: EFX-TMUS, Correlation: 0.9458668667777055
Pair: EFX-TEL, Correlation: 0.9704738229984707
Pair: EFX-TDY, Correlation: 0.9333808643740978
Pair: EFX-TER, Correlation: 0.9341426945366198
Pair: EFX-TXN, Correlation: 0.9616620902382658
Pair: EFX-TMO, Correlation: 0.9546100014676197
Pair: EFX-TJX, Correlation: 0.9364888776741007
Pair: EFX-TSCO, Correlation: 0.9323475619066245
Pair: EFX-TT, Correlation: 0.9039728847518459
Pair: EFX-TDG, Correlation: 0.9028298153924887
Pair: EFX-TRV, Correlation: 0.9398325129874238
Pair: EFX-TYL, Correlation: 0.9699280904366431
Pair: EFX-UDR, Correlation: 0.9165182361554154
Pair: EFX-ULTA, Correlation: 0.9061151923324752
Pair: EFX-UNP, Correlation: 0.9512349303337173
Pair: EFX-UPS, Correlation: 0.9194827514770001
Pair: EFX-UNH, Correlation: 0.9409191411359075
Pair: EFX-VRSK, Correlation: 0.9484603286315983
Pair: EFX-V, Correlation: 0.9493400503037154
Pair: EFX-VMC, Correlation: 0.9589234810288707
Pair: EFX-WRB, Correlation: 0.923194010478915
Pair: EFX-WMT, Correlation: 0.9189952141584555
Pair: EFX-WM, Correlation: 0.9502868831757177
Pair: EFX-WAT, Correlation: 0.9571545905605624
Pair: EFX-WEC, Correlation: 0.9179978597599066
Pair: EFX-WELL, Correlation: 0.9053539027632453
Pair: EFX-WST, Correlation: 0.9390891464457186
Pair: EFX-WTW, Correlation: 0.9555629003309104
Pair: EFX-XEL, Correlation: 0.9112975233612479
Pair: EFX-XYL, Correlation: 0.9493581985691799
Pair: EFX-YUM, Correlation: 0.9468298248485495
Pair: EFX-ZTS, Correlation: 0.9342090474755492
Pair: EQIX-EG, Correlation: 0.9153961411708904
Pair: EQIX-EVRG, Correlation: 0.9265243462452315
Pair: EQIX-ES, Correlation: 0.9119521883718129
Pair: EQIX-EXPD, Correlation: 0.9521764377584581
Pair: EQIX-EXR, Correlation: 0.9372030286831246
Pair: EQIX-FDS, Correlation: 0.9639249428637097
Pair: EQIX-FAST, Correlation: 0.9387024004909276
Pair: EQIX-FI, Correlation: 0.961039708476246
Pair: EQIX-GRMN, Correlation: 0.9357771204173543
Pair: EQIX-GEN, Correlation: 0.9417419458015076
Pair: EQIX-GL, Correlation: 0.9162207956134081
Pair: EQIX-HCA, Correlation: 0.9134292961310787
Pair: EQIX-HSY, Correlation: 0.9122623329418067
Pair: EQIX-HOLX, Correlation: 0.9668983532111473
Pair: EQIX-HD, Correlation: 0.9818274212409769
Pair: EQIX-HON, Correlation: 0.9667924702531342
Pair: EQIX-HUM, Correlation: 0.9227233062028304
Pair: EQIX-IEX, Correlation: 0.9697046165935307
Pair: EQIX-IDXX, Correlation: 0.9559454250224941
Pair: EQIX-ITW, Correlation: 0.9805759310582083
Pair: EQIX-PODD, Correlation: 0.917010829446259
Pair: EQIX-ICE, Correlation: 0.9770527753683028
Pair: EQIX-IPG, Correlation: 0.9020685439501326
Pair: EQIX-INTU, Correlation: 0.9501703004369757
Pair: EQIX-ISRG, Correlation: 0.9456110651989312
Pair: EQIX-IQV, Correlation: 0.9482116703985556
Pair: EQIX-JBHT, Correlation: 0.943854914339865
Pair: EQIX-JKHY, Correlation: 0.9532495358437478
Pair: EQIX-J, Correlation: 0.9322770736922361
Pair: EQIX-JNJ, Correlation: 0.9581441314548836
Pair: EQIX-JCI, Correlation: 0.9039675284977379
Pair: EQIX-JPM, Correlation: 0.9391932197692056
Pair: EQIX-KDP, Correlation: 0.9555509149328388
Pair: EQIX-KEYS, Correlation: 0.9118868677890816
Pair: EQIX-KMB, Correlation: 0.9295091759728552
Pair: EQIX-LHX, Correlation: 0.9544959237443577
Pair: EQIX-LH, Correlation: 0.9563353104813295
Pair: EQIX-LRCX, Correlation: 0.9000921517705261
Pair: EQIX-LDOS, Correlation: 0.9500749524439805
Pair: EQIX-LII, Correlation: 0.9212981180246191
Pair: EQIX-LIN, Correlation: 0.9223489956847559
Pair: EQIX-LYV, Correlation: 0.9371092724182678
Pair: EQIX-LMT, Correlation: 0.9544988116180332
Pair: EQIX-LOW, Correlation: 0.9596873590524975
Pair: EQIX-LULU, Correlation: 0.9303347224852639
Pair: EQIX-MAR, Correlation: 0.9102579045298405
Pair: EQIX-MMC, Correlation: 0.9509201702264628
Pair: EQIX-MLM, Correlation: 0.9266706224134534
Pair: EQIX-MAS, Correlation: 0.9752334228918426
Pair: EQIX-MA, Correlation: 0.976619534868906
Pair: EQIX-MKC, Correlation: 0.9403053494804282
Pair: EQIX-MCD, Correlation: 0.9669379609538212
Pair: EQIX-MRK, Correlation: 0.9166242893211367
Pair: EQIX-MTD, Correlation: 0.957804676674725
Pair: EQIX-MCHP, Correlation: 0.9577713384914495
Pair: EQIX-MU, Correlation: 0.9011750120387858
Pair: EQIX-MSFT, Correlation: 0.9416741982501193
Pair: EQIX-MAA, Correlation: 0.9350885247992788
Pair: EQIX-MOH, Correlation: 0.9291505437895897
Pair: EQIX-MDLZ, Correlation: 0.9638587543050757
Pair: EQIX-MNST, Correlation: 0.9630508736936352
Pair: EQIX-MCO, Correlation: 0.9770274372951002
Pair: EQIX-MS, Correlation: 0.915267204820383
Pair: EQIX-MSI, Correlation: 0.9123429103589362
Pair: EQIX-MSCI, Correlation: 0.955518276935409
Pair: EQIX-NDAQ, Correlation: 0.9641943829145566
Pair: EQIX-NFLX, Correlation: 0.9270928058512784
Pair: EQIX-NEE, Correlation: 0.961968702115514
Pair: EQIX-NKE, Correlation: 0.9117371854131292
Pair: EQIX-NI, Correlation: 0.9136979808784048
Pair: EQIX-NDSN, Correlation: 0.9767249503777853
Pair: EQIX-NSC, Correlation: 0.9552393643657625
Pair: EQIX-NOC, Correlation: 0.9430596256569225
Pair: EQIX-NVR, Correlation: 0.9446888684143683
Pair: EQIX-NXPI, Correlation: 0.9369919219363961
Pair: EQIX-ORLY, Correlation: 0.9144754167436094
Pair: EQIX-ODFL, Correlation: 0.9269423529943663
Pair: EQIX-PKG, Correlation: 0.9388798611662554
Pair: EQIX-PAYX, Correlation: 0.9556855291598743
Pair: EQIX-PEP, Correlation: 0.9614985371168165
Pair: EQIX-PNC, Correlation: 0.9133555767415833
Pair: EQIX-POOL, Correlation: 0.9538487234362086
Pair: EQIX-PG, Correlation: 0.9678354349692119
Pair: EQIX-PLD, Correlation: 0.9626339472359445
Pair: EQIX-PEG, Correlation: 0.9507611844789534
Pair: EQIX-PTC, Correlation: 0.9349939938528417
Pair: EQIX-PSA, Correlation: 0.9230745883846857
Pair: EQIX-DGX, Correlation: 0.9690201320258769
Pair: EQIX-RJF, Correlation: 0.9103010587195368
Pair: EQIX-O, Correlation: 0.9171954080423502
Pair: EQIX-RSG, Correlation: 0.9338521944842043
Pair: EQIX-RMD, Correlation: 0.9506266959845219
Pair: EQIX-RVTY, Correlation: 0.9164146227278529
Pair: EQIX-ROK, Correlation: 0.9638704125853232
Pair: EQIX-ROL, Correlation: 0.9696844407082061
Pair: EQIX-ROP, Correlation: 0.9837466586609496
Pair: EQIX-ROST, Correlation: 0.9505136086243148
Pair: EQIX-SPGI, Correlation: 0.9834512898570839
Pair: EQIX-CRM, Correlation: 0.9655825840320418
Pair: EQIX-SBAC, Correlation: 0.9196963022500918
Pair: EQIX-SRE, Correlation: 0.9338520828699718
Pair: EQIX-NOW, Correlation: 0.9503866818580111
Pair: EQIX-SHW, Correlation: 0.9766877794888299
Pair: EQIX-SNA, Correlation: 0.911029668653394
Pair: EQIX-SO, Correlation: 0.9430018395281757
Pair: EQIX-SBUX, Correlation: 0.9527055873133975
Pair: EQIX-STE, Correlation: 0.9741337391642133
Pair: EQIX-SYK, Correlation: 0.9684544072912743
Pair: EQIX-SYY, Correlation: 0.933304058038907
Pair: EQIX-TMUS, Correlation: 0.960616670302708
Pair: EQIX-TTWO, Correlation: 0.9426872794923181
Pair: EQIX-TEL, Correlation: 0.9556926921331348
Pair: EQIX-TDY, Correlation: 0.9683981695511812
Pair: EQIX-TER, Correlation: 0.9389316535552155
Pair: EQIX-TXN, Correlation: 0.9732165359439091
Pair: EQIX-TMO, Correlation: 0.9631520338910021
Pair: EQIX-TJX, Correlation: 0.9354651313065357
Pair: EQIX-TSCO, Correlation: 0.9095211232612895
Pair: EQIX-TDG, Correlation: 0.9020890672327174
Pair: EQIX-TRV, Correlation: 0.9208349415667462
Pair: EQIX-TYL, Correlation: 0.974257902897206
Pair: EQIX-UDR, Correlation: 0.9039983653826383
Pair: EQIX-UNP, Correlation: 0.964276696486846
Pair: EQIX-UPS, Correlation: 0.9108253399268582
Pair: EQIX-UNH, Correlation: 0.950256498867177
Pair: EQIX-VRSN, Correlation: 0.9428756960661936
Pair: EQIX-VRSK, Correlation: 0.9733617115182679
Pair: EQIX-VRTX, Correlation: 0.9117489405121286
Pair: EQIX-V, Correlation: 0.9826799514784443
Pair: EQIX-VMC, Correlation: 0.94438033234136
Pair: EQIX-WRB, Correlation: 0.9248995666243639
Pair: EQIX-WMT, Correlation: 0.9390768414342424
Pair: EQIX-WM, Correlation: 0.9543358010078622
Pair: EQIX-WAT, Correlation: 0.9468749990519746
Pair: EQIX-WEC, Correlation: 0.9642564320828815
Pair: EQIX-WST, Correlation: 0.9463308523843692
Pair: EQIX-WTW, Correlation: 0.9717682346383569
Pair: EQIX-WDAY, Correlation: 0.916510172519207
Pair: EQIX-XEL, Correlation: 0.9617757014696985
Pair: EQIX-XYL, Correlation: 0.9515092460468161
Pair: EQIX-YUM, Correlation: 0.9612631496058601
Pair: EQIX-ZTS, Correlation: 0.9690085989890386
Pair: EQR-ESS, Correlation: 0.9889135936486168
Pair: EQR-EVRG, Correlation: 0.9396061078070004
Pair: EQR-ES, Correlation: 0.9003059956160868
Pair: EQR-EXR, Correlation: 0.9140960583685864
Pair: EQR-HON, Correlation: 0.9048728180735932
Pair: EQR-HBAN, Correlation: 0.9057937602971957
Pair: EQR-LHX, Correlation: 0.909528514696443
Pair: EQR-LYV, Correlation: 0.9075565749483313
Pair: EQR-MDT, Correlation: 0.9093758642222008
Pair: EQR-MAA, Correlation: 0.9215449025217827
Pair: EQR-NI, Correlation: 0.9252823547434047
Pair: EQR-NTRS, Correlation: 0.9108017107982949
Pair: EQR-PNC, Correlation: 0.9171627879737712
Pair: EQR-PSA, Correlation: 0.910274421654643
Pair: EQR-O, Correlation: 0.9497535930421949
Pair: EQR-REG, Correlation: 0.9012969483376196
Pair: EQR-SRE, Correlation: 0.9000809461821968
Pair: EQR-SYY, Correlation: 0.9122402071523729
Pair: EQR-TSN, Correlation: 0.9143064680594717
Pair: EQR-USB, Correlation: 0.906239945240934
Pair: EQR-UDR, Correlation: 0.9865000957454502
Pair: EQR-VLTO, Correlation: 0.9502922525772126
Pair: EQR-WEC, Correlation: 0.9067197283385114
Pair: ERIE-FICO, Correlation: 0.955790826489391
Pair: ERIE-FAST, Correlation: 0.929841680108593
Pair: ERIE-FI, Correlation: 0.9307598063684001
Pair: ERIE-GRMN, Correlation: 0.9094524801458326
Pair: ERIE-IT, Correlation: 0.9325042949444048
Pair: ERIE-GDDY, Correlation: 0.9097154042610027
Pair: ERIE-HIG, Correlation: 0.9277968411242676
Pair: ERIE-HCA, Correlation: 0.9255525013787065
Pair: ERIE-HLT, Correlation: 0.9331544164575205
Pair: ERIE-HD, Correlation: 0.9030647618991519
Pair: ERIE-HUBB, Correlation: 0.9432387974402634
Pair: ERIE-ITW, Correlation: 0.9006185286640118
Pair: ERIE-IR, Correlation: 0.9071464362769435
Pair: ERIE-ICE, Correlation: 0.920786725041208
Pair: ERIE-INTU, Correlation: 0.9145398517233814
Pair: ERIE-ISRG, Correlation: 0.9348429801567985
Pair: ERIE-IRM, Correlation: 0.9285682827806963
Pair: ERIE-JBL, Correlation: 0.9018143853049887
Pair: ERIE-JPM, Correlation: 0.9348180248102985
Pair: ERIE-KKR, Correlation: 0.9290929664243068
Pair: ERIE-KLAC, Correlation: 0.944200966343902
Pair: ERIE-LRCX, Correlation: 0.916993545428219
Pair: ERIE-LDOS, Correlation: 0.9369978049744851
Pair: ERIE-LEN, Correlation: 0.9402227359449725
Pair: ERIE-LII, Correlation: 0.9608618918746152
Pair: ERIE-LLY, Correlation: 0.9318736752988609
Pair: ERIE-LIN, Correlation: 0.9444951884378519
Pair: ERIE-LOW, Correlation: 0.9036147822525494
Pair: ERIE-MAR, Correlation: 0.9214313143121924
Pair: ERIE-MMC, Correlation: 0.9345230924434593
Pair: ERIE-MLM, Correlation: 0.9318927484382393
Pair: ERIE-MAS, Correlation: 0.9134556350684898
Pair: ERIE-MA, Correlation: 0.9267143141139251
Pair: ERIE-MCD, Correlation: 0.9072125331016784
Pair: ERIE-MRK, Correlation: 0.9276453458528502
Pair: ERIE-MSFT, Correlation: 0.9314608598059718
Pair: ERIE-MPWR, Correlation: 0.9386563609724429
Pair: ERIE-MCO, Correlation: 0.9188684988361402
Pair: ERIE-MSI, Correlation: 0.9608403375926586
Pair: ERIE-NRG, Correlation: 0.9008311965334023
Pair: ERIE-NVR, Correlation: 0.9586494389292515
Pair: ERIE-ORLY, Correlation: 0.9412581673567717
Pair: ERIE-ODFL, Correlation: 0.9056741567448032
Pair: ERIE-ORCL, Correlation: 0.9396684194147056
Pair: ERIE-PCAR, Correlation: 0.9511744390942318
Pair: ERIE-PKG, Correlation: 0.923275976471403
Pair: ERIE-PANW, Correlation: 0.9220592581887728
Pair: ERIE-PH, Correlation: 0.9582282549252819
Pair: ERIE-PG, Correlation: 0.9163506064663358
Pair: ERIE-PGR, Correlation: 0.9752632304551047
Pair: ERIE-PEG, Correlation: 0.920365372003965
Pair: ERIE-PTC, Correlation: 0.9284980715719678
Pair: ERIE-PHM, Correlation: 0.954585455527516
Pair: ERIE-PWR, Correlation: 0.9116237635029432
Pair: ERIE-RSG, Correlation: 0.9529676660626786
Pair: ERIE-ROL, Correlation: 0.9253268084536758
Pair: ERIE-ROP, Correlation: 0.9099420988734234
Pair: ERIE-ROST, Correlation: 0.9008798680136886
Pair: ERIE-SPGI, Correlation: 0.9021188834479754
Pair: ERIE-NOW, Correlation: 0.9203359959055731
Pair: ERIE-SHW, Correlation: 0.9135342615901288
Pair: ERIE-SO, Correlation: 0.9289968725345317
Pair: ERIE-SYK, Correlation: 0.9349402316947071
Pair: ERIE-SNPS, Correlation: 0.9298463470725896
Pair: ERIE-TMUS, Correlation: 0.939191846866527
Pair: ERIE-TJX, Correlation: 0.9563414508361734
Pair: ERIE-TSCO, Correlation: 0.9223728674250873
Pair: ERIE-TT, Correlation: 0.9631916332463472
Pair: ERIE-TDG, Correlation: 0.9718895024876448
Pair: ERIE-TRV, Correlation: 0.9235683062487772
Pair: ERIE-URI, Correlation: 0.9429543329844634
Pair: ERIE-VRSK, Correlation: 0.9305907450922823
Pair: ERIE-VRTX, Correlation: 0.9459574343697806
Pair: ERIE-V, Correlation: 0.9138434436062648
Pair: ERIE-VMC, Correlation: 0.9192942817272199
Pair: ERIE-WRB, Correlation: 0.9460793878018708
Pair: ERIE-GWW, Correlation: 0.9373614803472339
Pair: ERIE-WMT, Correlation: 0.9578522513711459
Pair: ERIE-WM, Correlation: 0.9379654066365681
Pair: ERIE-WTW, Correlation: 0.9252614389155798
Pair: ESS-EVRG, Correlation: 0.945541130285094
Pair: ESS-ES, Correlation: 0.9087275739394669
Pair: ESS-EXPE, Correlation: 0.902401050467521
Pair: ESS-EXR, Correlation: 0.9072059689807825
Pair: ESS-HON, Correlation: 0.9188582531461209
Pair: ESS-HBAN, Correlation: 0.9236770575398848
Pair: ESS-ICE, Correlation: 0.9027926456751443
Pair: ESS-JKHY, Correlation: 0.9060164166653725
Pair: ESS-JNJ, Correlation: 0.9126822522395784
Pair: ESS-KEY, Correlation: 0.9007695230819136
Pair: ESS-KMB, Correlation: 0.9121000414584591
Pair: ESS-LHX, Correlation: 0.919827378805825
Pair: ESS-LYV, Correlation: 0.9112871757914685
Pair: ESS-MDT, Correlation: 0.9354501415254339
Pair: ESS-MAA, Correlation: 0.9108252852334885
Pair: ESS-NI, Correlation: 0.9363976898639733
Pair: ESS-NTRS, Correlation: 0.9340903422651778
Pair: ESS-PNW, Correlation: 0.9160316713367029
Pair: ESS-PNC, Correlation: 0.9317169243268688
Pair: ESS-PPG, Correlation: 0.9035946393439871
Pair: ESS-PEG, Correlation: 0.9074536558147795
Pair: ESS-PSA, Correlation: 0.9003947933537564
Pair: ESS-O, Correlation: 0.9486328273200919
Pair: ESS-ROST, Correlation: 0.9005953506807182
Pair: ESS-SRE, Correlation: 0.9056553701224471
Pair: ESS-SBUX, Correlation: 0.9016856475950881
Pair: ESS-SYY, Correlation: 0.9163978389066297
Pair: ESS-TFC, Correlation: 0.9161507572701035
Pair: ESS-TSN, Correlation: 0.9276747408515087
Pair: ESS-USB, Correlation: 0.9317613782655223
Pair: ESS-UDR, Correlation: 0.9820899827936105
Pair: ESS-VLTO, Correlation: 0.936264075390979
Pair: ESS-WAT, Correlation: 0.9008105019307268
Pair: ESS-WEC, Correlation: 0.9134344009215399
Pair: ESS-XEL, Correlation: 0.9050095291030853
Pair: EL-ES, Correlation: 0.9150559128713341
Pair: EL-FMC, Correlation: 0.9119498258422406
Pair: EL-PODD, Correlation: 0.9019861687512659
Pair: EL-NKE, Correlation: 0.9548155275338711
Pair: EL-PAYC, Correlation: 0.9345848380723455
Pair: EL-RVTY, Correlation: 0.9419908040752732
Pair: EL-SBAC, Correlation: 0.937085112521668
Pair: EL-TROW, Correlation: 0.9312901313455018
Pair: EL-ZBRA, Correlation: 0.9203741202960889
Pair: EG-EXPD, Correlation: 0.9028674304854071
Pair: EG-FDS, Correlation: 0.9285817606697397
Pair: EG-FAST, Correlation: 0.9036828278032721
Pair: EG-FI, Correlation: 0.9325648755710149
Pair: EG-IT, Correlation: 0.9391328427793795
Pair: EG-GD, Correlation: 0.967056380307327
Pair: EG-GIS, Correlation: 0.9100026355902523
Pair: EG-GPC, Correlation: 0.9408764569874275
Pair: EG-GL, Correlation: 0.9356366334597653
Pair: EG-GS, Correlation: 0.9052815605703647
Pair: EG-HIG, Correlation: 0.9540216484001164
Pair: EG-HCA, Correlation: 0.9401886609309421
Pair: EG-HSY, Correlation: 0.9223184144165639
Pair: EG-HLT, Correlation: 0.931743993208353
Pair: EG-HOLX, Correlation: 0.9210288820203537
Pair: EG-HD, Correlation: 0.9326752799658877
Pair: EG-HON, Correlation: 0.9262504979567665
Pair: EG-HUBB, Correlation: 0.9155579870392757
Pair: EG-IEX, Correlation: 0.9247379643687892
Pair: EG-ITW, Correlation: 0.9558630517278419
Pair: EG-ICE, Correlation: 0.9287538187003046
Pair: EG-IPG, Correlation: 0.9339040464484791
Pair: EG-INTU, Correlation: 0.9042634867126216
Pair: EG-JBHT, Correlation: 0.9287345746362109
Pair: EG-JNJ, Correlation: 0.9245448009450652
Pair: EG-JCI, Correlation: 0.9014402357928196
Pair: EG-JPM, Correlation: 0.9398546483272828
Pair: EG-KR, Correlation: 0.9022995513809454
Pair: EG-LDOS, Correlation: 0.9037748511817001
Pair: EG-LEN, Correlation: 0.9177684467136432
Pair: EG-LII, Correlation: 0.9211029049589338
Pair: EG-LIN, Correlation: 0.9271422671122352
Pair: EG-LMT, Correlation: 0.9613968485899197
Pair: EG-LOW, Correlation: 0.9275900058785308
Pair: EG-LYB, Correlation: 0.90197499585979
Pair: EG-MPC, Correlation: 0.9122481121669832
Pair: EG-MAR, Correlation: 0.9658386532129594
Pair: EG-MMC, Correlation: 0.9620474906139865
Pair: EG-MLM, Correlation: 0.9495624319595821
Pair: EG-MAS, Correlation: 0.9311456545140605
Pair: EG-MA, Correlation: 0.9293630629118648
Pair: EG-MCD, Correlation: 0.949584344618314
Pair: EG-MRK, Correlation: 0.9649152469699299
Pair: EG-MET, Correlation: 0.9282700163382708
Pair: EG-MGM, Correlation: 0.909636939217953
Pair: EG-MCHP, Correlation: 0.9374810547254204
Pair: EG-MSFT, Correlation: 0.9104484083457336
Pair: EG-MOH, Correlation: 0.9037933844782977
Pair: EG-MDLZ, Correlation: 0.9631675482369603
Pair: EG-MNST, Correlation: 0.9479589573012456
Pair: EG-MCO, Correlation: 0.9192379278231533
Pair: EG-MS, Correlation: 0.9100711388473082
Pair: EG-MSI, Correlation: 0.9302293071600665
Pair: EG-NDAQ, Correlation: 0.9148220972873362
Pair: EG-NI, Correlation: 0.9287606231627523
Pair: EG-NDSN, Correlation: 0.9314309507373149
Pair: EG-NOC, Correlation: 0.9592405487623291
Pair: EG-NVR, Correlation: 0.94207139381822
Pair: EG-NXPI, Correlation: 0.9368203212332755
Pair: EG-ORLY, Correlation: 0.9532630061007737
Pair: EG-ODFL, Correlation: 0.9180260401164438
Pair: EG-OMC, Correlation: 0.9366945980620368
Pair: EG-OKE, Correlation: 0.9221519643779384
Pair: EG-ORCL, Correlation: 0.908589557892606
Pair: EG-PCAR, Correlation: 0.9239784277486459
Pair: EG-PKG, Correlation: 0.9546501039359566
Pair: EG-PANW, Correlation: 0.9150956812342607
Pair: EG-PH, Correlation: 0.9143117317908132
Pair: EG-PAYX, Correlation: 0.9434705926758025
Pair: EG-PEP, Correlation: 0.958447165920178
Pair: EG-PM, Correlation: 0.9251374206410179
Pair: EG-PSX, Correlation: 0.9008521189592844
Pair: EG-PFG, Correlation: 0.9616629315811639
Pair: EG-PG, Correlation: 0.9305180051637836
Pair: EG-PGR, Correlation: 0.9166964443232747
Pair: EG-PRU, Correlation: 0.9242441692957751
Pair: EG-PEG, Correlation: 0.9394386274180281
Pair: EG-PTC, Correlation: 0.9334291412915133
Pair: EG-PSA, Correlation: 0.9210053230895032
Pair: EG-DGX, Correlation: 0.928548042020531
Pair: EG-RJF, Correlation: 0.9452986108796413
Pair: EG-RTX, Correlation: 0.937028273289639
Pair: EG-REGN, Correlation: 0.9188158700205528
Pair: EG-RF, Correlation: 0.9099767275812688
Pair: EG-RSG, Correlation: 0.9464893209478603
Pair: EG-ROK, Correlation: 0.9176264718070749
Pair: EG-ROL, Correlation: 0.9326891121840463
Pair: EG-ROP, Correlation: 0.9404685272421031
Pair: EG-ROST, Correlation: 0.9288343925958272
Pair: EG-SPGI, Correlation: 0.9100917470562742
Pair: EG-SRE, Correlation: 0.9506282997297453
Pair: EG-SHW, Correlation: 0.9170295947969248
Pair: EG-SNA, Correlation: 0.9682176838117643
Pair: EG-SO, Correlation: 0.9392227163068204
Pair: EG-STLD, Correlation: 0.9202336550945492
Pair: EG-STE, Correlation: 0.9101730778299715
Pair: EG-SYK, Correlation: 0.9543465841883846
Pair: EG-SNPS, Correlation: 0.9091980760472619
Pair: EG-SYY, Correlation: 0.9101507732696581
Pair: EG-TMUS, Correlation: 0.929299171539772
Pair: EG-TEL, Correlation: 0.9352570421042223
Pair: EG-TXN, Correlation: 0.9190775180414995
Pair: EG-TXT, Correlation: 0.9321517466746345
Pair: EG-TJX, Correlation: 0.9608439761215573
Pair: EG-TSCO, Correlation: 0.9158239388582411
Pair: EG-TDG, Correlation: 0.9266095974170648
Pair: EG-TRV, Correlation: 0.9724656127840337
Pair: EG-ULTA, Correlation: 0.9389895097269979
Pair: EG-UNP, Correlation: 0.9223228126410501
Pair: EG-UNH, Correlation: 0.9408838259971618
Pair: EG-VLO, Correlation: 0.952442555898097
Pair: EG-VRSK, Correlation: 0.9309984500411282
Pair: EG-VRTX, Correlation: 0.9356578917544021
Pair: EG-V, Correlation: 0.9377819470474666
Pair: EG-VMC, Correlation: 0.9626847949406613
Pair: EG-WRB, Correlation: 0.9514914520414414
Pair: EG-WMT, Correlation: 0.9112988388951712
Pair: EG-WM, Correlation: 0.9496925669398386
Pair: EG-WELL, Correlation: 0.9105204735380188
Pair: EG-WTW, Correlation: 0.9355870915597114
Pair: EG-XYL, Correlation: 0.9050726806598813
Pair: EG-YUM, Correlation: 0.9499608862664121
Pair: EVRG-ES, Correlation: 0.9572337529818865
Pair: EVRG-EXR, Correlation: 0.9285424472307073
Pair: EVRG-FI, Correlation: 0.9164536970318073
Pair: EVRG-GL, Correlation: 0.9405028562900555
Pair: EVRG-HSIC, Correlation: 0.9276228084945132
Pair: EVRG-HOLX, Correlation: 0.9154461035748492
Pair: EVRG-HD, Correlation: 0.9188293103585055
Pair: EVRG-HON, Correlation: 0.9492587539613552
Pair: EVRG-HRL, Correlation: 0.9361211672934494
Pair: EVRG-HUM, Correlation: 0.9187633654442322
Pair: EVRG-HBAN, Correlation: 0.9126035340705886
Pair: EVRG-HII, Correlation: 0.9078338056691609
Pair: EVRG-IEX, Correlation: 0.936149766590101
Pair: EVRG-ITW, Correlation: 0.9166764810025015
Pair: EVRG-ICE, Correlation: 0.9160076329802743
Pair: EVRG-JKHY, Correlation: 0.966148756695657
Pair: EVRG-JNJ, Correlation: 0.9666987142634946
Pair: EVRG-KDP, Correlation: 0.9458651348603687
Pair: EVRG-KMB, Correlation: 0.9494637147959876
Pair: EVRG-LHX, Correlation: 0.9539708872818138
Pair: EVRG-LH, Correlation: 0.9061722904919066
Pair: EVRG-LYV, Correlation: 0.9067823032973172
Pair: EVRG-LMT, Correlation: 0.9443500825889667
Pair: EVRG-MAS, Correlation: 0.9085364771181981
Pair: EVRG-MKC, Correlation: 0.9468656308482051
Pair: EVRG-MCD, Correlation: 0.9131321423417619
Pair: EVRG-MDT, Correlation: 0.9289929241977921
Pair: EVRG-MTD, Correlation: 0.9033259520291822
Pair: EVRG-MAA, Correlation: 0.9292131970716926
Pair: EVRG-MDLZ, Correlation: 0.9243640919374131
Pair: EVRG-MNST, Correlation: 0.9167844226545384
Pair: EVRG-NDAQ, Correlation: 0.9066548842796456
Pair: EVRG-NEE, Correlation: 0.93187544036375
Pair: EVRG-NI, Correlation: 0.9719768799096555
Pair: EVRG-NDSN, Correlation: 0.9111978229612195
Pair: EVRG-NSC, Correlation: 0.9160585981142281
Pair: EVRG-NTRS, Correlation: 0.922157634250382
Pair: EVRG-NOC, Correlation: 0.9446996667260011
Pair: EVRG-PAYX, Correlation: 0.9122425004931546
Pair: EVRG-PEP, Correlation: 0.9288267944881367
Pair: EVRG-PFE, Correlation: 0.9133474314463693
Pair: EVRG-PNW, Correlation: 0.9496482535948603
Pair: EVRG-PNC, Correlation: 0.9183994944944183
Pair: EVRG-PPL, Correlation: 0.9065543257338883
Pair: EVRG-PLD, Correlation: 0.903191066174734
Pair: EVRG-PEG, Correlation: 0.9297151788789464
Pair: EVRG-PSA, Correlation: 0.9197203151858506
Pair: EVRG-DGX, Correlation: 0.9315767133074486
Pair: EVRG-O, Correlation: 0.9821813733265086
Pair: EVRG-RVTY, Correlation: 0.9039350427454002
Pair: EVRG-ROP, Correlation: 0.9198400624296145
Pair: EVRG-ROST, Correlation: 0.9199835774703702
Pair: EVRG-SPGI, Correlation: 0.9025600167858973
Pair: EVRG-SBAC, Correlation: 0.9183815291015506
Pair: EVRG-SRE, Correlation: 0.9499480114746901
Pair: EVRG-SBUX, Correlation: 0.9308725172953886
Pair: EVRG-STE, Correlation: 0.9109386727480343
Pair: EVRG-SYK, Correlation: 0.9001861523863073
Pair: EVRG-SYY, Correlation: 0.9604342794798637
Pair: EVRG-TEL, Correlation: 0.9074808839653881
Pair: EVRG-TDY, Correlation: 0.9175492006980233
Pair: EVRG-TXN, Correlation: 0.9180571109929557
Pair: EVRG-TYL, Correlation: 0.9066555285667169
Pair: EVRG-TSN, Correlation: 0.933250126786013
Pair: EVRG-UDR, Correlation: 0.9615779943993342
Pair: EVRG-ULTA, Correlation: 0.9148991957293453
Pair: EVRG-UNP, Correlation: 0.9188124235407725
Pair: EVRG-VRSN, Correlation: 0.9365933403351467
Pair: EVRG-V, Correlation: 0.9218763022960438
Pair: EVRG-WAT, Correlation: 0.9236335598120574
Pair: EVRG-WEC, Correlation: 0.9710854999964951
Pair: EVRG-WTW, Correlation: 0.9091997841306999
Pair: EVRG-XEL, Correlation: 0.9668601617963573
Pair: EVRG-YUM, Correlation: 0.9259116764842037
Pair: ES-FMC, Correlation: 0.9089899108342134
Pair: ES-GPN, Correlation: 0.9185562001878368
Pair: ES-HOLX, Correlation: 0.9049137209896951
Pair: ES-HON, Correlation: 0.9296670156871716
Pair: ES-HRL, Correlation: 0.9576436335356563
Pair: ES-HUM, Correlation: 0.9270857652252077
Pair: ES-IEX, Correlation: 0.9227635128806106
Pair: ES-PODD, Correlation: 0.9080025119063251
Pair: ES-JKHY, Correlation: 0.9552325918609343
Pair: ES-JNJ, Correlation: 0.9420816830715971
Pair: ES-KDP, Correlation: 0.9393371135417401
Pair: ES-KMB, Correlation: 0.9270460006963348
Pair: ES-LHX, Correlation: 0.9370198658314629
Pair: ES-MKTX, Correlation: 0.9249599569797442
Pair: ES-MKC, Correlation: 0.9753831965291957
Pair: ES-MDT, Correlation: 0.9405945801298201
Pair: ES-MTD, Correlation: 0.9005937184645695
Pair: ES-MAA, Correlation: 0.9178772163013701
Pair: ES-NEE, Correlation: 0.9479213045242818
Pair: ES-NKE, Correlation: 0.9364648354018131
Pair: ES-NSC, Correlation: 0.9206956399319303
Pair: ES-PAYC, Correlation: 0.9260589762050725
Pair: ES-PFE, Correlation: 0.9220658249326691
Pair: ES-O, Correlation: 0.9530441096681431
Pair: ES-RMD, Correlation: 0.9184574549547461
Pair: ES-RVTY, Correlation: 0.9364378804838291
Pair: ES-SBAC, Correlation: 0.9743148807497886
Pair: ES-SRE, Correlation: 0.9057232204040245
Pair: ES-SBUX, Correlation: 0.930865593875748
Pair: ES-STE, Correlation: 0.9023850650878116
Pair: ES-SYY, Correlation: 0.9262879982541908
Pair: ES-TTWO, Correlation: 0.9086040771115335
Pair: ES-TDY, Correlation: 0.9238669031842307
Pair: ES-TFX, Correlation: 0.9282933291088129
Pair: ES-TSN, Correlation: 0.9019504557921743
Pair: ES-UDR, Correlation: 0.9352765946276591
Pair: ES-UNP, Correlation: 0.9032801837701008
Pair: ES-VRSN, Correlation: 0.9544426296591921
Pair: ES-VZ, Correlation: 0.9011419690328027
Pair: ES-WEC, Correlation: 0.9740440764412222
Pair: ES-XEL, Correlation: 0.9771018127214848
Pair: EXC-EXPD, Correlation: 0.9197350723008065
Pair: EXC-EXR, Correlation: 0.9196411198747886
Pair: EXC-FDS, Correlation: 0.9358417427652386
Pair: EXC-FTNT, Correlation: 0.9263033698510049
Pair: EXC-HCA, Correlation: 0.9072434893168334
Pair: EXC-HSY, Correlation: 0.9294175647251791
Pair: EXC-HD, Correlation: 0.9048989562713489
Pair: EXC-HPQ, Correlation: 0.9261723804026045
Pair: EXC-IEX, Correlation: 0.9028289211277807
Pair: EXC-ITW, Correlation: 0.9000093944472849
Pair: EXC-INTU, Correlation: 0.9049201919506674
Pair: EXC-IQV, Correlation: 0.9151998259700099
Pair: EXC-JBHT, Correlation: 0.9010357129784808
Pair: EXC-J, Correlation: 0.9131623818969822
Pair: EXC-KDP, Correlation: 0.9250533742238763
Pair: EXC-LHX, Correlation: 0.9071510769227068
Pair: EXC-LIN, Correlation: 0.9083646989081748
Pair: EXC-LYV, Correlation: 0.9238575735696367
Pair: EXC-LOW, Correlation: 0.9182041341811483
Pair: EXC-MMC, Correlation: 0.9305126792507374
Pair: EXC-MA, Correlation: 0.9058902656145036
Pair: EXC-MCD, Correlation: 0.9423805484327599
Pair: EXC-MTD, Correlation: 0.9171656711781435
Pair: EXC-MCHP, Correlation: 0.9093154744132907
Pair: EXC-MSFT, Correlation: 0.9043348569414827
Pair: EXC-MAA, Correlation: 0.9141417776536822
Pair: EXC-MOH, Correlation: 0.9360750380189298
Pair: EXC-MS, Correlation: 0.907990540823505
Pair: EXC-MSI, Correlation: 0.9034345740481171
Pair: EXC-MSCI, Correlation: 0.9118332875635194
Pair: EXC-NDAQ, Correlation: 0.9182879855412833
Pair: EXC-NEE, Correlation: 0.9053932611476166
Pair: EXC-NDSN, Correlation: 0.9119966667826832
Pair: EXC-NSC, Correlation: 0.9064649066437854
Pair: EXC-NOC, Correlation: 0.9183478405443641
Pair: EXC-ORLY, Correlation: 0.9069038097142378
Pair: EXC-ODFL, Correlation: 0.913883251769886
Pair: EXC-ON, Correlation: 0.919534391845893
Pair: EXC-PAYX, Correlation: 0.9500896913321606
Pair: EXC-PEP, Correlation: 0.9338117723148324
Pair: EXC-PG, Correlation: 0.9175728989389138
Pair: EXC-PLD, Correlation: 0.9314659573186543
Pair: EXC-PEG, Correlation: 0.9186423437936034
Pair: EXC-PSA, Correlation: 0.9004953792657312
Pair: EXC-DGX, Correlation: 0.9118617193557915
Pair: EXC-RJF, Correlation: 0.9234064778996633
Pair: EXC-RSG, Correlation: 0.9239297753694148
Pair: EXC-ROL, Correlation: 0.9013502586590088
Pair: EXC-ROP, Correlation: 0.900527007372752
Pair: EXC-SPGI, Correlation: 0.9004893155170514
Pair: EXC-SO, Correlation: 0.9252791280979846
Pair: EXC-STE, Correlation: 0.9275051359603975
Pair: EXC-SYK, Correlation: 0.9039132706358577
Pair: EXC-SYY, Correlation: 0.9049809769739773
Pair: EXC-TDY, Correlation: 0.9143465621372435
Pair: EXC-TXN, Correlation: 0.9187752669743109
Pair: EXC-TMO, Correlation: 0.9268766665866706
Pair: EXC-UNP, Correlation: 0.9134380091156719
Pair: EXC-UNH, Correlation: 0.9537829202626992
Pair: EXC-WRB, Correlation: 0.9302247880595444
Pair: EXC-WM, Correlation: 0.9359037772576153
Pair: EXC-WAT, Correlation: 0.9070384331364973
Pair: EXC-YUM, Correlation: 0.9279176219455202
Pair: EXPE-USB, Correlation: 0.9267099304984882
Pair: EXPD-EXR, Correlation: 0.9409384657953738
Pair: EXPD-FDS, Correlation: 0.9689607234048686
Pair: EXPD-FAST, Correlation: 0.9575241619216754
Pair: EXPD-FITB, Correlation: 0.9055197704697017
Pair: EXPD-FI, Correlation: 0.918899595682846
Pair: EXPD-FTNT, Correlation: 0.9515210071417901
Pair: EXPD-GRMN, Correlation: 0.9434665690982961
Pair: EXPD-IT, Correlation: 0.9318619325537093
Pair: EXPD-GEN, Correlation: 0.916208351968457
Pair: EXPD-GPC, Correlation: 0.903571823816407
Pair: EXPD-GS, Correlation: 0.925922589879261
Pair: EXPD-HCA, Correlation: 0.9522870314071606
Pair: EXPD-HSY, Correlation: 0.9175025356481276
Pair: EXPD-HLT, Correlation: 0.9232277718906723
Pair: EXPD-HOLX, Correlation: 0.9502928994128171
Pair: EXPD-HD, Correlation: 0.9730491781267228
Pair: EXPD-HON, Correlation: 0.9497713879632024
Pair: EXPD-HPQ, Correlation: 0.9311056997940823
Pair: EXPD-HUM, Correlation: 0.9043464155956709
Pair: EXPD-IEX, Correlation: 0.9609528074120687
Pair: EXPD-IDXX, Correlation: 0.971925170578823
Pair: EXPD-ITW, Correlation: 0.9692621218801275
Pair: EXPD-PODD, Correlation: 0.9167796044238865
Pair: EXPD-ICE, Correlation: 0.9582991021056724
Pair: EXPD-IPG, Correlation: 0.9277158650678882
Pair: EXPD-INTU, Correlation: 0.9789899643167453
Pair: EXPD-ISRG, Correlation: 0.9595775274763193
Pair: EXPD-INVH, Correlation: 0.9166089602103679
Pair: EXPD-IQV, Correlation: 0.975945935283078
Pair: EXPD-JBHT, Correlation: 0.9547126182789059
Pair: EXPD-JKHY, Correlation: 0.901410267184634
Pair: EXPD-J, Correlation: 0.9664874657178398
Pair: EXPD-JNJ, Correlation: 0.9187646756663624
Pair: EXPD-JCI, Correlation: 0.923721459527493
Pair: EXPD-JPM, Correlation: 0.9479053104409344
Pair: EXPD-KDP, Correlation: 0.9476201617924721
Pair: EXPD-KEYS, Correlation: 0.9481899970264126
Pair: EXPD-KLAC, Correlation: 0.9101092967051817
Pair: EXPD-LHX, Correlation: 0.9286584137922126
Pair: EXPD-LH, Correlation: 0.9709732615463359
Pair: EXPD-LRCX, Correlation: 0.9457197537159601
Pair: EXPD-LDOS, Correlation: 0.9243783501509508
Pair: EXPD-LEN, Correlation: 0.9044919208394214
Pair: EXPD-LII, Correlation: 0.9097711234040291
Pair: EXPD-LIN, Correlation: 0.9580367081188068
Pair: EXPD-LYV, Correlation: 0.9487521005609941
Pair: EXPD-LMT, Correlation: 0.9127521890309883
Pair: EXPD-LOW, Correlation: 0.9758527285912947
Pair: EXPD-LULU, Correlation: 0.9429244446210884
Pair: EXPD-MAR, Correlation: 0.9179644147794143
Pair: EXPD-MMC, Correlation: 0.96410237796896
Pair: EXPD-MLM, Correlation: 0.9426348413437525
Pair: EXPD-MAS, Correlation: 0.9416452068639799
Pair: EXPD-MA, Correlation: 0.9657178457205363
Pair: EXPD-MCD, Correlation: 0.9670628597331363
Pair: EXPD-MRK, Correlation: 0.913758720313234
Pair: EXPD-MET, Correlation: 0.9144778019103323
Pair: EXPD-MTD, Correlation: 0.9708163754655306
Pair: EXPD-MCHP, Correlation: 0.9774986937861022
Pair: EXPD-MU, Correlation: 0.9192621169080304
Pair: EXPD-MSFT, Correlation: 0.9684772358071017
Pair: EXPD-MAA, Correlation: 0.9347160432680984
Pair: EXPD-MOH, Correlation: 0.9640030553293806
Pair: EXPD-MDLZ, Correlation: 0.9386781754894553
Pair: EXPD-MPWR, Correlation: 0.9359193459646834
Pair: EXPD-MNST, Correlation: 0.9398650761945171
Pair: EXPD-MCO, Correlation: 0.971721167090632
Pair: EXPD-MS, Correlation: 0.9616576601515613
Pair: EXPD-MSI, Correlation: 0.9386470423589156
Pair: EXPD-MSCI, Correlation: 0.9808401052111563
Pair: EXPD-NDAQ, Correlation: 0.9729424092880209
Pair: EXPD-NFLX, Correlation: 0.9013868976378371
Pair: EXPD-NEE, Correlation: 0.9427420916694921
Pair: EXPD-NDSN, Correlation: 0.9725118629875072
Pair: EXPD-NSC, Correlation: 0.959646271603197
Pair: EXPD-NOC, Correlation: 0.9186177738155802
Pair: EXPD-NVR, Correlation: 0.9469896399597428
Pair: EXPD-NXPI, Correlation: 0.9434312782902261
Pair: EXPD-ORLY, Correlation: 0.9362342565518096
Pair: EXPD-ODFL, Correlation: 0.9666566274816967
Pair: EXPD-ON, Correlation: 0.9165498476989937
Pair: EXPD-ORCL, Correlation: 0.9080015913693236
Pair: EXPD-OTIS, Correlation: 0.9049986169157731
Pair: EXPD-PKG, Correlation: 0.9257023886962585
Pair: EXPD-PH, Correlation: 0.9098676430913994
Pair: EXPD-PAYX, Correlation: 0.9681226289721883
Pair: EXPD-PEP, Correlation: 0.9507764216055199
Pair: EXPD-PNC, Correlation: 0.91309514890221
Pair: EXPD-POOL, Correlation: 0.9666095938210287
Pair: EXPD-PG, Correlation: 0.9584412223549571
Pair: EXPD-PGR, Correlation: 0.9112543721562003
Pair: EXPD-PLD, Correlation: 0.9678034669380247
Pair: EXPD-PEG, Correlation: 0.9351926278570727
Pair: EXPD-PTC, Correlation: 0.9629495665716536
Pair: EXPD-PSA, Correlation: 0.9151456863178489
Pair: EXPD-QCOM, Correlation: 0.9209986057665763
Pair: EXPD-DGX, Correlation: 0.9580423141921397
Pair: EXPD-RJF, Correlation: 0.9449483128117443
Pair: EXPD-RF, Correlation: 0.9236935088135336
Pair: EXPD-RSG, Correlation: 0.9528326982099539
Pair: EXPD-RMD, Correlation: 0.9476718971475653
Pair: EXPD-RVTY, Correlation: 0.911105255930255
Pair: EXPD-ROK, Correlation: 0.9697003640641981
Pair: EXPD-ROL, Correlation: 0.9620214091343252
Pair: EXPD-ROP, Correlation: 0.9663064666241461
Pair: EXPD-ROST, Correlation: 0.9176883242660077
Pair: EXPD-SPGI, Correlation: 0.9763040773204112
Pair: EXPD-CRM, Correlation: 0.9438453406414021
Pair: EXPD-STX, Correlation: 0.9128946839230423
Pair: EXPD-NOW, Correlation: 0.9523919779620313
Pair: EXPD-SHW, Correlation: 0.9695724897173079
Pair: EXPD-SNA, Correlation: 0.9116185966364094
Pair: EXPD-SO, Correlation: 0.9337828237217377
Pair: EXPD-SBUX, Correlation: 0.9200589054817744
Pair: EXPD-STE, Correlation: 0.9734419237773235
Pair: EXPD-SYK, Correlation: 0.9632580582213084
Pair: EXPD-SNPS, Correlation: 0.9400114899973574
Pair: EXPD-SYY, Correlation: 0.9170637539743599
Pair: EXPD-TMUS, Correlation: 0.958553810270341
Pair: EXPD-TGT, Correlation: 0.9068143639361926
Pair: EXPD-TEL, Correlation: 0.9654360719852335
Pair: EXPD-TDY, Correlation: 0.9605382632499546
Pair: EXPD-TER, Correlation: 0.9598081892315287
Pair: EXPD-TXN, Correlation: 0.978628267480067
Pair: EXPD-TMO, Correlation: 0.9730255888628878
Pair: EXPD-TJX, Correlation: 0.9329560364078606
Pair: EXPD-TSCO, Correlation: 0.9433662373372134
Pair: EXPD-TT, Correlation: 0.913922431126675
Pair: EXPD-TDG, Correlation: 0.9144277624091888
Pair: EXPD-TRV, Correlation: 0.9109990966265741
Pair: EXPD-TYL, Correlation: 0.9475967720122261
Pair: EXPD-UNP, Correlation: 0.9603656627174819
Pair: EXPD-UPS, Correlation: 0.9282799632403103
Pair: EXPD-UNH, Correlation: 0.9673485614238895
Pair: EXPD-VRSK, Correlation: 0.9590570023938255
Pair: EXPD-VICI, Correlation: 0.9053398085678345
Pair: EXPD-V, Correlation: 0.9604665792825741
Pair: EXPD-VMC, Correlation: 0.935873103782683
Pair: EXPD-WRB, Correlation: 0.9355973719283044
Pair: EXPD-WMT, Correlation: 0.9296560586563724
Pair: EXPD-WM, Correlation: 0.9658065291648358
Pair: EXPD-WAT, Correlation: 0.9579281318441502
Pair: EXPD-WEC, Correlation: 0.9065826522189094
Pair: EXPD-WST, Correlation: 0.9648041063540959
Pair: EXPD-WTW, Correlation: 0.9582541164755007
Pair: EXPD-WDAY, Correlation: 0.9210182454412776
Pair: EXPD-XEL, Correlation: 0.9079138506543039
Pair: EXPD-XYL, Correlation: 0.9705724778733622
Pair: EXPD-YUM, Correlation: 0.9619047392463747
Pair: EXPD-ZBRA, Correlation: 0.9007994886286177
Pair: EXPD-ZTS, Correlation: 0.9698493693472853
Pair: EXR-FDS, Correlation: 0.9602132960025183
Pair: EXR-FAST, Correlation: 0.916908243088892
Pair: EXR-FITB, Correlation: 0.9385046434782535
Pair: EXR-FI, Correlation: 0.9010927652531662
Pair: EXR-FTNT, Correlation: 0.9262752779194232
Pair: EXR-GRMN, Correlation: 0.9002818917149872
Pair: EXR-IT, Correlation: 0.9008381861741594
Pair: EXR-GEN, Correlation: 0.9284233807882031
Pair: EXR-GIS, Correlation: 0.9076862342318954
Pair: EXR-GPC, Correlation: 0.9252601098384
Pair: EXR-GS, Correlation: 0.9006662526709737
Pair: EXR-HCA, Correlation: 0.9257903069041965
Pair: EXR-HSY, Correlation: 0.9408046923968942
Pair: EXR-HOLX, Correlation: 0.9512157839337048
Pair: EXR-HD, Correlation: 0.9661445930818453
Pair: EXR-HON, Correlation: 0.9502678932532095
Pair: EXR-HPQ, Correlation: 0.9015101222925017
Pair: EXR-HUM, Correlation: 0.9097033615192769
Pair: EXR-IEX, Correlation: 0.9489352525617771
Pair: EXR-IDXX, Correlation: 0.9288323655979456
Pair: EXR-ITW, Correlation: 0.9439284887012062
Pair: EXR-PODD, Correlation: 0.907294051129825
Pair: EXR-ICE, Correlation: 0.9490667318053495
Pair: EXR-IPG, Correlation: 0.9501991729813445
Pair: EXR-INTU, Correlation: 0.939896795657089
Pair: EXR-ISRG, Correlation: 0.9067117076902206
Pair: EXR-INVH, Correlation: 0.9538821305451193
Pair: EXR-IQV, Correlation: 0.958072740661989
Pair: EXR-JBHT, Correlation: 0.955923758031735
Pair: EXR-JKHY, Correlation: 0.931359111201331
Pair: EXR-J, Correlation: 0.9306276765382211
Pair: EXR-JNJ, Correlation: 0.9497955897308735
Pair: EXR-JCI, Correlation: 0.940253690995282
Pair: EXR-JPM, Correlation: 0.9107933645021028
Pair: EXR-KDP, Correlation: 0.9636148372738066
Pair: EXR-KEYS, Correlation: 0.9396311310522802
Pair: EXR-KR, Correlation: 0.9131631897174465
Pair: EXR-LHX, Correlation: 0.9502619828474916
Pair: EXR-LH, Correlation: 0.9646030014158907
Pair: EXR-LIN, Correlation: 0.9026800204442498
Pair: EXR-LYV, Correlation: 0.9611601240700479
Pair: EXR-LMT, Correlation: 0.9269147889748702
Pair: EXR-LOW, Correlation: 0.9635912761746382
Pair: EXR-MMC, Correlation: 0.9425646634538802
Pair: EXR-MLM, Correlation: 0.9110319802820374
Pair: EXR-MAS, Correlation: 0.9314427444854163
Pair: EXR-MA, Correlation: 0.931943826476469
Pair: EXR-MKC, Correlation: 0.9102000015868884
Pair: EXR-MCD, Correlation: 0.9484145791377238
Pair: EXR-MET, Correlation: 0.9173571517783781
Pair: EXR-MTD, Correlation: 0.9667872893037331
Pair: EXR-MCHP, Correlation: 0.9348318405014141
Pair: EXR-MSFT, Correlation: 0.9171511113036034
Pair: EXR-MAA, Correlation: 0.983291004434583
Pair: EXR-MOH, Correlation: 0.9418077644894335
Pair: EXR-MDLZ, Correlation: 0.9469014986364893
Pair: EXR-MNST, Correlation: 0.9319588783397194
Pair: EXR-MCO, Correlation: 0.9470948368601586
Pair: EXR-MS, Correlation: 0.9398901707290388
Pair: EXR-MSI, Correlation: 0.9013257467492829
Pair: EXR-MSCI, Correlation: 0.9425348971943465
Pair: EXR-NDAQ, Correlation: 0.9743137744913483
Pair: EXR-NEE, Correlation: 0.9609415588317854
Pair: EXR-NKE, Correlation: 0.9071675076526164
Pair: EXR-NI, Correlation: 0.90992069047901
Pair: EXR-NDSN, Correlation: 0.9532185367016004
Pair: EXR-NSC, Correlation: 0.9523238423268887
Pair: EXR-NOC, Correlation: 0.9411514489301157
Pair: EXR-NVR, Correlation: 0.9028077343219494
Pair: EXR-NXPI, Correlation: 0.9287702026832487
Pair: EXR-ORLY, Correlation: 0.907560451540539
Pair: EXR-ODFL, Correlation: 0.9142696293914166
Pair: EXR-PKG, Correlation: 0.9170370639463271
Pair: EXR-PAYX, Correlation: 0.9748818107186171
Pair: EXR-PEP, Correlation: 0.9611061807172168
Pair: EXR-PFE, Correlation: 0.9036136079973295
Pair: EXR-PNC, Correlation: 0.9451380138333266
Pair: EXR-POOL, Correlation: 0.9539167811014059
Pair: EXR-PFG, Correlation: 0.9066748703800966
Pair: EXR-PG, Correlation: 0.9484593647218966
Pair: EXR-PLD, Correlation: 0.9723107288198702
Pair: EXR-PEG, Correlation: 0.9479322766122135
Pair: EXR-PTC, Correlation: 0.902709837557244
Pair: EXR-PSA, Correlation: 0.9845294086838442
Pair: EXR-DGX, Correlation: 0.9560398451217731
Pair: EXR-RJF, Correlation: 0.9378465674717564
Pair: EXR-RTX, Correlation: 0.9062687250192695
Pair: EXR-O, Correlation: 0.929912035839918
Pair: EXR-RF, Correlation: 0.9395573438121547
Pair: EXR-RSG, Correlation: 0.9248641083021845
Pair: EXR-RMD, Correlation: 0.9566786624179644
Pair: EXR-RVTY, Correlation: 0.9450473947621023
Pair: EXR-ROK, Correlation: 0.9404633188153609
Pair: EXR-ROL, Correlation: 0.9272550686381118
Pair: EXR-ROP, Correlation: 0.9430626631532566
Pair: EXR-SPGI, Correlation: 0.9539074382577211
Pair: EXR-CRM, Correlation: 0.902866691318788
Pair: EXR-SBAC, Correlation: 0.9154553356541149
Pair: EXR-STX, Correlation: 0.9193671908209023
Pair: EXR-SRE, Correlation: 0.9387229347962943
Pair: EXR-SHW, Correlation: 0.9542413534921809
Pair: EXR-SNA, Correlation: 0.9121204076537052
Pair: EXR-SO, Correlation: 0.943925196474006
Pair: EXR-SBUX, Correlation: 0.9289156494823337
Pair: EXR-STE, Correlation: 0.9627951993158423
Pair: EXR-SYK, Correlation: 0.9307953028662084
Pair: EXR-SYY, Correlation: 0.9407559775853953
Pair: EXR-TMUS, Correlation: 0.9296176791340206
Pair: EXR-TGT, Correlation: 0.9139312694273877
Pair: EXR-TEL, Correlation: 0.9617604894460156
Pair: EXR-TDY, Correlation: 0.9463969320661677
Pair: EXR-TER, Correlation: 0.923224774465097
Pair: EXR-TXN, Correlation: 0.9622488452583653
Pair: EXR-TMO, Correlation: 0.9688274910501465
Pair: EXR-TJX, Correlation: 0.9043938317412131
Pair: EXR-TSCO, Correlation: 0.9268904610366262
Pair: EXR-TRV, Correlation: 0.9280164351262442
Pair: EXR-TYL, Correlation: 0.9457541805668452
Pair: EXR-UDR, Correlation: 0.9461445231935334
Pair: EXR-ULTA, Correlation: 0.9158015601446919
Pair: EXR-UNP, Correlation: 0.9593101032264456
Pair: EXR-UPS, Correlation: 0.9482924166819618
Pair: EXR-UNH, Correlation: 0.9606875264828542
Pair: EXR-VRSK, Correlation: 0.9325314324576844
Pair: EXR-V, Correlation: 0.9359556319593444
Pair: EXR-VMC, Correlation: 0.9210053663372634
Pair: EXR-WRB, Correlation: 0.9287193010036767
Pair: EXR-WM, Correlation: 0.9485603891684645
Pair: EXR-WAT, Correlation: 0.9672432233503757
Pair: EXR-WEC, Correlation: 0.9418377454146473
Pair: EXR-WST, Correlation: 0.9338222610823912
Pair: EXR-WTW, Correlation: 0.9406985453909015
Pair: EXR-XEL, Correlation: 0.9383715075081887
Pair: EXR-XYL, Correlation: 0.9195001538414501
Pair: EXR-YUM, Correlation: 0.9511732472050312
Pair: EXR-ZTS, Correlation: 0.9406862746674314
Pair: XOM-HES, Correlation: 0.9139498728947959
Pair: XOM-MPC, Correlation: 0.9107259024114703
Pair: XOM-MCK, Correlation: 0.9070936570505999
Pair: FFIV-GEV, Correlation: 0.9009150759953785
Pair: FDS-FAST, Correlation: 0.9600398715137456
Pair: FDS-FI, Correlation: 0.9323795936477133
Pair: FDS-FTNT, Correlation: 0.9480043553446057
Pair: FDS-GRMN, Correlation: 0.917665860041175
Pair: FDS-IT, Correlation: 0.9337099249784527
Pair: FDS-GEN, Correlation: 0.9192425165649736
Pair: FDS-GIS, Correlation: 0.9112646585091332
Pair: FDS-GPC, Correlation: 0.9318037470062134
Pair: FDS-GL, Correlation: 0.9074473107271132
Pair: FDS-GS, Correlation: 0.9039395757568659
Pair: FDS-HIG, Correlation: 0.9016243982386529
Pair: FDS-HCA, Correlation: 0.9450541581337986
Pair: FDS-HSY, Correlation: 0.9524842524475803
Pair: FDS-HLT, Correlation: 0.9202199754550733
Pair: FDS-HOLX, Correlation: 0.9653768649593327
Pair: FDS-HD, Correlation: 0.9818405411473161
Pair: FDS-HON, Correlation: 0.9509456051874918
Pair: FDS-HPQ, Correlation: 0.9027919022699965
Pair: FDS-HUM, Correlation: 0.9297975482138461
Pair: FDS-IEX, Correlation: 0.9683126398216849
Pair: FDS-IDXX, Correlation: 0.943987991513843
Pair: FDS-ITW, Correlation: 0.9734295847557178
Pair: FDS-PODD, Correlation: 0.9178659338880686
Pair: FDS-ICE, Correlation: 0.9636703444114466
Pair: FDS-IPG, Correlation: 0.9271550719757921
Pair: FDS-INTU, Correlation: 0.9701053200600442
Pair: FDS-ISRG, Correlation: 0.9384666046564988
Pair: FDS-INVH, Correlation: 0.9042460699190106
Pair: FDS-IQV, Correlation: 0.9595038692996373
Pair: FDS-JBHT, Correlation: 0.9648847751613641
Pair: FDS-JKHY, Correlation: 0.9373561000128486
Pair: FDS-J, Correlation: 0.9545643903177202
Pair: FDS-JNJ, Correlation: 0.9445172283504946
Pair: FDS-JCI, Correlation: 0.9156589185754767
Pair: FDS-JPM, Correlation: 0.9319415087185249
Pair: FDS-KDP, Correlation: 0.9676210401676395
Pair: FDS-KEYS, Correlation: 0.952867475292828
Pair: FDS-KR, Correlation: 0.9002513817780012
Pair: FDS-LHX, Correlation: 0.9481315423374733
Pair: FDS-LH, Correlation: 0.9571121788450487
Pair: FDS-LRCX, Correlation: 0.919869864745173
Pair: FDS-LDOS, Correlation: 0.934341069983037
Pair: FDS-LII, Correlation: 0.901140699297899
Pair: FDS-LIN, Correlation: 0.9556172774744517
Pair: FDS-LYV, Correlation: 0.95484138178914
Pair: FDS-LMT, Correlation: 0.9469511516461139
Pair: FDS-LOW, Correlation: 0.9819849877119631
Pair: FDS-LULU, Correlation: 0.9468415542198599
Pair: FDS-MAR, Correlation: 0.9260969627150686
Pair: FDS-MMC, Correlation: 0.9770214807605533
Pair: FDS-MLM, Correlation: 0.9383177878849296
Pair: FDS-MAS, Correlation: 0.9465118618224866
Pair: FDS-MA, Correlation: 0.9730138862421142
Pair: FDS-MKC, Correlation: 0.9101735523616477
Pair: FDS-MCD, Correlation: 0.980643552610531
Pair: FDS-MRK, Correlation: 0.9429355525634147
Pair: FDS-MET, Correlation: 0.9201541098199175
Pair: FDS-MTD, Correlation: 0.9655967656600226
Pair: FDS-MCHP, Correlation: 0.9648563300870697
Pair: FDS-MSFT, Correlation: 0.9631076557356537
Pair: FDS-MAA, Correlation: 0.9439131781484806
Pair: FDS-MOH, Correlation: 0.9801791406882676
Pair: FDS-MDLZ, Correlation: 0.9667899117789794
Pair: FDS-MPWR, Correlation: 0.9240230681916403
Pair: FDS-MNST, Correlation: 0.9597369649232957
Pair: FDS-MCO, Correlation: 0.9701172898499483
Pair: FDS-MS, Correlation: 0.946336762611824
Pair: FDS-MSI, Correlation: 0.9417819574242827
Pair: FDS-MSCI, Correlation: 0.9737998355522111
Pair: FDS-NDAQ, Correlation: 0.979307928822005
Pair: FDS-NEE, Correlation: 0.9598842197379859
Pair: FDS-NDSN, Correlation: 0.9810472160443054
Pair: FDS-NSC, Correlation: 0.9584369303910524
Pair: FDS-NOC, Correlation: 0.9544540707834898
Pair: FDS-NVR, Correlation: 0.9403977291125787
Pair: FDS-NXPI, Correlation: 0.9352047621703992
Pair: FDS-ORLY, Correlation: 0.9552043024370839
Pair: FDS-ODFL, Correlation: 0.966721067517719
Pair: FDS-ON, Correlation: 0.9171559844257273
Pair: FDS-PKG, Correlation: 0.9302116087707066
Pair: FDS-PAYX, Correlation: 0.9849247964533013
Pair: FDS-PEP, Correlation: 0.9802489864839129
Pair: FDS-PNC, Correlation: 0.9048302407060743
Pair: FDS-POOL, Correlation: 0.9571328214037139
Pair: FDS-PFG, Correlation: 0.9102975029088104
Pair: FDS-PG, Correlation: 0.9781003677788668
Pair: FDS-PGR, Correlation: 0.9200973082888876
Pair: FDS-PLD, Correlation: 0.9765576949099948
Pair: FDS-PEG, Correlation: 0.9500819975353231
Pair: FDS-PTC, Correlation: 0.9433013178649515
Pair: FDS-PSA, Correlation: 0.9441132929569137
Pair: FDS-QCOM, Correlation: 0.9132297901484148
Pair: FDS-DGX, Correlation: 0.9637262594110751
Pair: FDS-RJF, Correlation: 0.9523507416962189
Pair: FDS-RF, Correlation: 0.9176145539081489
Pair: FDS-RSG, Correlation: 0.9614510354237807
Pair: FDS-RMD, Correlation: 0.9512491360069825
Pair: FDS-RVTY, Correlation: 0.9120215053527969
Pair: FDS-ROK, Correlation: 0.9622898951656653
Pair: FDS-ROL, Correlation: 0.9660195636293171
Pair: FDS-ROP, Correlation: 0.9760363978392699
Pair: FDS-ROST, Correlation: 0.9206031626077666
Pair: FDS-SPGI, Correlation: 0.9772443771738044
Pair: FDS-CRM, Correlation: 0.9354862120704173
Pair: FDS-STX, Correlation: 0.9028504062386337
Pair: FDS-SRE, Correlation: 0.9370851178167129
Pair: FDS-NOW, Correlation: 0.9441818742597629
Pair: FDS-SHW, Correlation: 0.9690314489760823
Pair: FDS-SNA, Correlation: 0.9240769518408515
Pair: FDS-SO, Correlation: 0.9576773438025885
Pair: FDS-SBUX, Correlation: 0.9317994140780546
Pair: FDS-STE, Correlation: 0.9810712736421695
Pair: FDS-SYK, Correlation: 0.9617119037064139
Pair: FDS-SNPS, Correlation: 0.9388315464276608
Pair: FDS-SYY, Correlation: 0.93057002983178
Pair: FDS-TMUS, Correlation: 0.9629049921637618
Pair: FDS-TEL, Correlation: 0.9589766326240465
Pair: FDS-TDY, Correlation: 0.9672612327345269
Pair: FDS-TER, Correlation: 0.9347227752302095
Pair: FDS-TXN, Correlation: 0.9721385052594894
Pair: FDS-TMO, Correlation: 0.98287145849846
Pair: FDS-TJX, Correlation: 0.9437490923886728
Pair: FDS-TSCO, Correlation: 0.9542331987185417
Pair: FDS-TDG, Correlation: 0.9146628524847135
Pair: FDS-TRV, Correlation: 0.9341768598530931
Pair: FDS-TYL, Correlation: 0.9492448802052115
Pair: FDS-ULTA, Correlation: 0.9197493704591632
Pair: FDS-UNP, Correlation: 0.9746593567789932
Pair: FDS-UPS, Correlation: 0.9269681087242618
Pair: FDS-UNH, Correlation: 0.9841007979513687
Pair: FDS-VRSN, Correlation: 0.9186852511833107
Pair: FDS-VRSK, Correlation: 0.9751966177775501
Pair: FDS-VRTX, Correlation: 0.9285462617747404
Pair: FDS-VICI, Correlation: 0.9084080605027499
Pair: FDS-V, Correlation: 0.9705256910570859
Pair: FDS-VMC, Correlation: 0.9403100738809225
Pair: FDS-WRB, Correlation: 0.9617374711098527
Pair: FDS-WMT, Correlation: 0.9390917835233126
Pair: FDS-WM, Correlation: 0.9766380158273384
Pair: FDS-WAT, Correlation: 0.9491916395907374
Pair: FDS-WEC, Correlation: 0.9431940703347627
Pair: FDS-WST, Correlation: 0.9545948872717034
Pair: FDS-WTW, Correlation: 0.967482848534363
Pair: FDS-XEL, Correlation: 0.940433981885706
Pair: FDS-XYL, Correlation: 0.9382856112195082
Pair: FDS-YUM, Correlation: 0.9704905380533421
Pair: FDS-ZTS, Correlation: 0.964601265641271
Pair: FICO-FAST, Correlation: 0.9030914348099858
Pair: FICO-IT, Correlation: 0.9242298507150829
Pair: FICO-GEV, Correlation: 0.9278293675912334
Pair: FICO-GDDY, Correlation: 0.9089265369714805
Pair: FICO-HIG, Correlation: 0.9087573932591565
Pair: FICO-HCA, Correlation: 0.9058168486735381
Pair: FICO-HLT, Correlation: 0.929175777834228
Pair: FICO-HWM, Correlation: 0.9532607410120673
Pair: FICO-HUBB, Correlation: 0.9573651320543761
Pair: FICO-IR, Correlation: 0.93286898550324
Pair: FICO-ISRG, Correlation: 0.909758183777278
Pair: FICO-IRM, Correlation: 0.9656985429482705
Pair: FICO-JBL, Correlation: 0.9230480369510656
Pair: FICO-JPM, Correlation: 0.9021421971031796
Pair: FICO-KKR, Correlation: 0.9565173513343075
Pair: FICO-KLAC, Correlation: 0.9493425171780755
Pair: FICO-LRCX, Correlation: 0.9058463984648527
Pair: FICO-LEN, Correlation: 0.942681027021033
Pair: FICO-LII, Correlation: 0.9345040104243415
Pair: FICO-LLY, Correlation: 0.9659187995702813
Pair: FICO-LIN, Correlation: 0.9224517732611103
Pair: FICO-MLM, Correlation: 0.9067427760288094
Pair: FICO-MSFT, Correlation: 0.9065212040693703
Pair: FICO-MPWR, Correlation: 0.9291997526142466
Pair: FICO-MSI, Correlation: 0.9503515441746418
Pair: FICO-NRG, Correlation: 0.9221798041247588
Pair: FICO-NVDA, Correlation: 0.9560476462489164
Pair: FICO-NVR, Correlation: 0.9329059925014825
Pair: FICO-ORLY, Correlation: 0.9201746839502326
Pair: FICO-ORCL, Correlation: 0.9614452372808762
Pair: FICO-PCAR, Correlation: 0.9487040611268456
Pair: FICO-PANW, Correlation: 0.9464427386393889
Pair: FICO-PH, Correlation: 0.9672153493669581
Pair: FICO-PGR, Correlation: 0.9654039392238211
Pair: FICO-PHM, Correlation: 0.9778126355340464
Pair: FICO-PWR, Correlation: 0.9501112521072547
Pair: FICO-RSG, Correlation: 0.9236607352503212
Pair: FICO-STLD, Correlation: 0.9015506617863521
Pair: FICO-SNPS, Correlation: 0.9211853855515335
Pair: FICO-TJX, Correlation: 0.9244669812214906
Pair: FICO-TT, Correlation: 0.9694577459762577
Pair: FICO-TDG, Correlation: 0.9647551999249571
Pair: FICO-URI, Correlation: 0.9615435202614127
Pair: FICO-VRTX, Correlation: 0.9197138039645226
Pair: FICO-VST, Correlation: 0.9019210615132046
Pair: FICO-WRB, Correlation: 0.9010035912481696
Pair: FICO-GWW, Correlation: 0.9603838757669658
Pair: FICO-WMT, Correlation: 0.93195368815309
Pair: FAST-FI, Correlation: 0.9235100664381771
Pair: FAST-FTNT, Correlation: 0.9625357543836441
Pair: FAST-GRMN, Correlation: 0.9575224554317948
Pair: FAST-IT, Correlation: 0.9582611580823961
Pair: FAST-GEN, Correlation: 0.9112215601353197
Pair: FAST-GS, Correlation: 0.9316681514777745
Pair: FAST-HIG, Correlation: 0.9138521913763854
Pair: FAST-HCA, Correlation: 0.9616444241974792
Pair: FAST-HSY, Correlation: 0.9120787381780575
Pair: FAST-HLT, Correlation: 0.9655361137690317
Pair: FAST-HOLX, Correlation: 0.9254711126206808
Pair: FAST-HD, Correlation: 0.9620700911409136
Pair: FAST-HON, Correlation: 0.9102182429363038
Pair: FAST-HUBB, Correlation: 0.9431540559688356
Pair: FAST-IEX, Correlation: 0.9224996002294332
Pair: FAST-IDXX, Correlation: 0.9274569170392323
Pair: FAST-ITW, Correlation: 0.9535853775653467
Pair: FAST-IR, Correlation: 0.9364110942665792
Pair: FAST-ICE, Correlation: 0.9540995942867733
Pair: FAST-INTU, Correlation: 0.9794572850257647
Pair: FAST-ISRG, Correlation: 0.9669774718384367
Pair: FAST-IQV, Correlation: 0.9251263063587788
Pair: FAST-JBHT, Correlation: 0.9381390515732565
Pair: FAST-JBL, Correlation: 0.926362009376444
Pair: FAST-J, Correlation: 0.9732661636476688
Pair: FAST-JCI, Correlation: 0.9250679900110678
Pair: FAST-JPM, Correlation: 0.9485438769268361
Pair: FAST-KDP, Correlation: 0.9087081185929744
Pair: FAST-KEYS, Correlation: 0.9080256981848627
Pair: FAST-KKR, Correlation: 0.9472776345836634
Pair: FAST-KLAC, Correlation: 0.9565062765157603
Pair: FAST-LH, Correlation: 0.9283541361438397
Pair: FAST-LRCX, Correlation: 0.9709209229528276
Pair: FAST-LDOS, Correlation: 0.9343373430838582
Pair: FAST-LEN, Correlation: 0.9533201076070568
Pair: FAST-LII, Correlation: 0.9276793702267562
Pair: FAST-LIN, Correlation: 0.9869937697038563
Pair: FAST-LYV, Correlation: 0.9275519728646877
Pair: FAST-LMT, Correlation: 0.9024070998474831
Pair: FAST-LOW, Correlation: 0.9753020972937302
Pair: FAST-LULU, Correlation: 0.9295403048498231
Pair: FAST-MAR, Correlation: 0.9230556057664527
Pair: FAST-MMC, Correlation: 0.9747198882688295
Pair: FAST-MLM, Correlation: 0.9598650601554861
Pair: FAST-MAS, Correlation: 0.9421922192186298
Pair: FAST-MA, Correlation: 0.9639140021506082
Pair: FAST-MCD, Correlation: 0.951975258571968
Pair: FAST-MRK, Correlation: 0.9323648074795363
Pair: FAST-MET, Correlation: 0.9216210269310825
Pair: FAST-MTD, Correlation: 0.9322646167417435
Pair: FAST-MCHP, Correlation: 0.9512766644072644
Pair: FAST-MU, Correlation: 0.9227993248356782
Pair: FAST-MSFT, Correlation: 0.9867400017110202
Pair: FAST-MOH, Correlation: 0.9636614921240811
Pair: FAST-MDLZ, Correlation: 0.9336984260109641
Pair: FAST-MPWR, Correlation: 0.9673919955637413
Pair: FAST-MNST, Correlation: 0.916550421788899
Pair: FAST-MCO, Correlation: 0.9712913963699067
Pair: FAST-MS, Correlation: 0.9501821065767289
Pair: FAST-MSI, Correlation: 0.9714142844156727
Pair: FAST-MSCI, Correlation: 0.9628773292175689
Pair: FAST-NDAQ, Correlation: 0.9582365425282983
Pair: FAST-NEE, Correlation: 0.9138652934845718
Pair: FAST-NDSN, Correlation: 0.9600636922877791
Pair: FAST-NSC, Correlation: 0.9277356462281634
Pair: FAST-NUE, Correlation: 0.9110109161831205
Pair: FAST-NVR, Correlation: 0.9631998172758724
Pair: FAST-NXPI, Correlation: 0.9360909709914401
Pair: FAST-ORLY, Correlation: 0.9645032330853016
Pair: FAST-ODFL, Correlation: 0.9796413284436489
Pair: FAST-ON, Correlation: 0.9128560089557856
Pair: FAST-ORCL, Correlation: 0.9492796498711406
Pair: FAST-OTIS, Correlation: 0.9187375754426063
Pair: FAST-PCAR, Correlation: 0.9456075345812002
Pair: FAST-PKG, Correlation: 0.9394569439418903
Pair: FAST-PANW, Correlation: 0.9433450885407334
Pair: FAST-PH, Correlation: 0.9586233075655484
Pair: FAST-PAYX, Correlation: 0.9604268857569359
Pair: FAST-PNR, Correlation: 0.9111944177049033
Pair: FAST-PEP, Correlation: 0.9362911992691909
Pair: FAST-POOL, Correlation: 0.9351860659245876
Pair: FAST-PG, Correlation: 0.9711622364358634
Pair: FAST-PGR, Correlation: 0.9585150133308042
Pair: FAST-PLD, Correlation: 0.9459794308515289
Pair: FAST-PEG, Correlation: 0.9320903808676868
Pair: FAST-PTC, Correlation: 0.9548254109882148
Pair: FAST-PSA, Correlation: 0.9104653414247441
Pair: FAST-PHM, Correlation: 0.9282038571881942
Pair: FAST-PWR, Correlation: 0.9201058378231539
Pair: FAST-QCOM, Correlation: 0.9563614884747841
Pair: FAST-DGX, Correlation: 0.9247721866451439
Pair: FAST-RJF, Correlation: 0.9526771148692628
Pair: FAST-RSG, Correlation: 0.9728576553025114
Pair: FAST-RMD, Correlation: 0.9186735456529045
Pair: FAST-ROK, Correlation: 0.9356013728045999
Pair: FAST-ROL, Correlation: 0.9521062050577946
Pair: FAST-ROP, Correlation: 0.9538094909277816
Pair: FAST-SPGI, Correlation: 0.9646533427173816
Pair: FAST-CRM, Correlation: 0.9331426639586554
Pair: FAST-STX, Correlation: 0.9353395290885089
Pair: FAST-NOW, Correlation: 0.9801029518807743
Pair: FAST-SHW, Correlation: 0.9700885701157134
Pair: FAST-SNA, Correlation: 0.9185281100206409
Pair: FAST-SO, Correlation: 0.959106981748144
Pair: FAST-STLD, Correlation: 0.9172445715425426
Pair: FAST-STE, Correlation: 0.9518384278382271
Pair: FAST-SYK, Correlation: 0.9572854240116228
Pair: FAST-SNPS, Correlation: 0.97293831753047
Pair: FAST-TMUS, Correlation: 0.9643205230275267
Pair: FAST-TEL, Correlation: 0.9400856917000232
Pair: FAST-TDY, Correlation: 0.9351002265619057
Pair: FAST-TER, Correlation: 0.9396188439836444
Pair: FAST-TXN, Correlation: 0.9507058638053457
Pair: FAST-TPL, Correlation: 0.9130819415243321
Pair: FAST-TMO, Correlation: 0.9560278528594439
Pair: FAST-TJX, Correlation: 0.9568537259282909
Pair: FAST-TSCO, Correlation: 0.9760582984237309
Pair: FAST-TT, Correlation: 0.9599551517929875
Pair: FAST-TDG, Correlation: 0.9580947667631217
Pair: FAST-TRV, Correlation: 0.9271468420951819
Pair: FAST-TYL, Correlation: 0.9395341506849908
Pair: FAST-UNP, Correlation: 0.9504080457131083
Pair: FAST-URI, Correlation: 0.9468434115192702
Pair: FAST-UNH, Correlation: 0.9568074347976631
Pair: FAST-VRSK, Correlation: 0.9703909151291658
Pair: FAST-VRTX, Correlation: 0.9322052839837002
Pair: FAST-V, Correlation: 0.9502793043300881
Pair: FAST-VMC, Correlation: 0.9377282747822332
Pair: FAST-WRB, Correlation: 0.9616315636008446
Pair: FAST-GWW, Correlation: 0.9488015627696125
Pair: FAST-WMT, Correlation: 0.9710930721430674
Pair: FAST-WM, Correlation: 0.9703963984135517
Pair: FAST-WAT, Correlation: 0.9150587143642411
Pair: FAST-WST, Correlation: 0.9428603277879071
Pair: FAST-WTW, Correlation: 0.9566594029344989
Pair: FAST-XYL, Correlation: 0.9271295442294066
Pair: FAST-YUM, Correlation: 0.9408744014867524
Pair: FAST-ZTS, Correlation: 0.927564521507448
Pair: FRT-REG, Correlation: 0.9160867049118273
Pair: FRT-SPG, Correlation: 0.9160096783290468
Pair: FDX-LYB, Correlation: 0.9083411087447231
Pair: FDX-MAS, Correlation: 0.9042217059487955
Pair: FDX-NXPI, Correlation: 0.9025171616871753
Pair: FDX-PKG, Correlation: 0.913413217997213
Pair: FDX-PPG, Correlation: 0.9019827024369494
Pair: FDX-TEL, Correlation: 0.9153591105020855
Pair: FDX-TXT, Correlation: 0.9039486738832793
Pair: FIS-GPN, Correlation: 0.9463039561297777
Pair: FIS-INTC, Correlation: 0.9177988387598057
Pair: FIS-MKTX, Correlation: 0.9046755277939137
Pair: FIS-MDT, Correlation: 0.914466003219994
Pair: FIS-SWK, Correlation: 0.9209668477753378
Pair: FIS-TFX, Correlation: 0.9574833762774968
Pair: FIS-VLTO, Correlation: 0.9470327537389965
Pair: FIS-VZ, Correlation: 0.9294990608108151
Pair: FIS-DIS, Correlation: 0.9152946946044721
Pair: FITB-GRMN, Correlation: 0.9089154117911965
Pair: FITB-GEN, Correlation: 0.9204498582109024
Pair: FITB-GD, Correlation: 0.9135299161304503
Pair: FITB-GS, Correlation: 0.9382284420710673
Pair: FITB-HIG, Correlation: 0.9196435402976303
Pair: FITB-HCA, Correlation: 0.9013215679114385
Pair: FITB-HD, Correlation: 0.9343803440283078
Pair: FITB-HON, Correlation: 0.9296186300375423
Pair: FITB-HPQ, Correlation: 0.909077360584893
Pair: FITB-HBAN, Correlation: 0.9577415807418095
Pair: FITB-IEX, Correlation: 0.915590165293416
Pair: FITB-ITW, Correlation: 0.9194772888448212
Pair: FITB-ICE, Correlation: 0.9358875898181258
Pair: FITB-IPG, Correlation: 0.9138936648256691
Pair: FITB-INTU, Correlation: 0.9107601184034962
Pair: FITB-ISRG, Correlation: 0.9034643916378792
Pair: FITB-JBHT, Correlation: 0.9271175081328327
Pair: FITB-J, Correlation: 0.9148166954401076
Pair: FITB-JNJ, Correlation: 0.9073755332445637
Pair: FITB-JCI, Correlation: 0.9363379956161886
Pair: FITB-JPM, Correlation: 0.9416988241516746
Pair: FITB-KDP, Correlation: 0.9013084440946135
Pair: FITB-KEY, Correlation: 0.9269869806019407
Pair: FITB-LHX, Correlation: 0.9226155189399273
Pair: FITB-LH, Correlation: 0.9455809951457782
Pair: FITB-LYV, Correlation: 0.9516104898780333
Pair: FITB-LOW, Correlation: 0.9239121067996292
Pair: FITB-MTB, Correlation: 0.9071728888895586
Pair: FITB-MAR, Correlation: 0.9163629975781326
Pair: FITB-MMC, Correlation: 0.9043194081390421
Pair: FITB-MLM, Correlation: 0.9112794039556888
Pair: FITB-MAS, Correlation: 0.9247457353532466
Pair: FITB-MET, Correlation: 0.9429694931692802
Pair: FITB-MTD, Correlation: 0.9207965119652585
Pair: FITB-MGM, Correlation: 0.918787592427739
Pair: FITB-MCHP, Correlation: 0.9134808455864734
Pair: FITB-MU, Correlation: 0.9183717871881094
Pair: FITB-MAA, Correlation: 0.9245232434469456
Pair: FITB-MCO, Correlation: 0.9195413061743547
Pair: FITB-MS, Correlation: 0.9443407136427254
Pair: FITB-NDAQ, Correlation: 0.9363437991273358
Pair: FITB-NDSN, Correlation: 0.9228029766031619
Pair: FITB-NSC, Correlation: 0.933716142039998
Pair: FITB-NTRS, Correlation: 0.9227277125079485
Pair: FITB-NVR, Correlation: 0.9009192191713384
Pair: FITB-NXPI, Correlation: 0.9229757027918569
Pair: FITB-PKG, Correlation: 0.9384179656920106
Pair: FITB-PAYX, Correlation: 0.9342769715903037
Pair: FITB-PNC, Correlation: 0.9859279505045934
Pair: FITB-POOL, Correlation: 0.9024014813979615
Pair: FITB-PFG, Correlation: 0.9201819497931609
Pair: FITB-PLD, Correlation: 0.9136866001149588
Pair: FITB-PRU, Correlation: 0.9516603872746737
Pair: FITB-PEG, Correlation: 0.9273403395474848
Pair: FITB-PTC, Correlation: 0.9116953212327625
Pair: FITB-PSA, Correlation: 0.9228671866727473
Pair: FITB-DGX, Correlation: 0.9261064712191183
Pair: FITB-RJF, Correlation: 0.9429294894627205
Pair: FITB-RTX, Correlation: 0.9260916979982061
Pair: FITB-RF, Correlation: 0.9791489762175525
Pair: FITB-ROK, Correlation: 0.9115010861276666
Pair: FITB-ROP, Correlation: 0.9079988472883755
Pair: FITB-SPGI, Correlation: 0.9173565590386128
Pair: FITB-STX, Correlation: 0.9418804062806201
Pair: FITB-SHW, Correlation: 0.9325724972727651
Pair: FITB-STE, Correlation: 0.9085005608758486
Pair: FITB-SYK, Correlation: 0.9150770720704344
Pair: FITB-SYY, Correlation: 0.9204470564945316
Pair: FITB-TMUS, Correlation: 0.9021466834078039
Pair: FITB-TEL, Correlation: 0.9573145844342772
Pair: FITB-TDY, Correlation: 0.9018930667343098
Pair: FITB-TXN, Correlation: 0.9345539380449854
Pair: FITB-TXT, Correlation: 0.9252708988943865
Pair: FITB-TMO, Correlation: 0.9089356878677456
Pair: FITB-TRV, Correlation: 0.9289435480982494
Pair: FITB-TFC, Correlation: 0.9062339661053538
Pair: FITB-TYL, Correlation: 0.9173535171266921
Pair: FITB-UDR, Correlation: 0.9064377836785673
Pair: FITB-UNP, Correlation: 0.9324273204402087
Pair: FITB-UNH, Correlation: 0.9128393112244483
Pair: FITB-V, Correlation: 0.9017583467187954
Pair: FITB-VMC, Correlation: 0.9139448716365672
Pair: FITB-WRB, Correlation: 0.9022837644926507
Pair: FITB-WM, Correlation: 0.9150563741102584
Pair: FITB-WAT, Correlation: 0.9485869244272697
Pair: FITB-WTW, Correlation: 0.9213093261329243
Pair: FITB-XYL, Correlation: 0.9162126928908884
Pair: FITB-YUM, Correlation: 0.9155827750728104
Pair: FE-VLTO, Correlation: 0.9302702688127471
Pair: FI-GRMN, Correlation: 0.9388112311744569
Pair: FI-GEV, Correlation: 0.9584496148549587
Pair: FI-GD, Correlation: 0.9189105026138193
Pair: FI-GL, Correlation: 0.9130167609482306
Pair: FI-GDDY, Correlation: 0.9363712577565746
Pair: FI-HIG, Correlation: 0.9286407723916601
Pair: FI-HCA, Correlation: 0.9246032616386696
Pair: FI-HLT, Correlation: 0.9292527432478166
Pair: FI-HOLX, Correlation: 0.9309493298871597
Pair: FI-HD, Correlation: 0.9598295471472094
Pair: FI-HON, Correlation: 0.953927451256666
Pair: FI-IEX, Correlation: 0.9466886040751009
Pair: FI-ITW, Correlation: 0.9611886574505011
Pair: FI-ICE, Correlation: 0.975961983536696
Pair: FI-INTU, Correlation: 0.9288892348644692
Pair: FI-ISRG, Correlation: 0.9507019682414262
Pair: FI-JBHT, Correlation: 0.900802914071209
Pair: FI-JKHY, Correlation: 0.935910671549937
Pair: FI-J, Correlation: 0.9110104980711539
Pair: FI-JNJ, Correlation: 0.9294349685714085
Pair: FI-JPM, Correlation: 0.9691725422128699
Pair: FI-KDP, Correlation: 0.9362355808895109
Pair: FI-KMB, Correlation: 0.9190467713006305
Pair: FI-LHX, Correlation: 0.950530218295501
Pair: FI-LH, Correlation: 0.9127919618279073
Pair: FI-LDOS, Correlation: 0.974550045576592
Pair: FI-LEN, Correlation: 0.9060660589612515
Pair: FI-LII, Correlation: 0.9661051365120179
Pair: FI-LIN, Correlation: 0.9179466884550487
Pair: FI-LYV, Correlation: 0.9321065244862436
Pair: FI-LMT, Correlation: 0.9680296038236875
Pair: FI-LOW, Correlation: 0.933020039067298
Pair: FI-MAR, Correlation: 0.9513978582692847
Pair: FI-MMC, Correlation: 0.9439835092457997
Pair: FI-MLM, Correlation: 0.9360318854949022
Pair: FI-MAS, Correlation: 0.9700510295526235
Pair: FI-MA, Correlation: 0.9762747496743898
Pair: FI-MKC, Correlation: 0.9052628922622977
Pair: FI-MCD, Correlation: 0.9522565822420723
Pair: FI-MRK, Correlation: 0.9311426125338474
Pair: FI-META, Correlation: 0.9242084292163211
Pair: FI-MTD, Correlation: 0.9068691262201215
Pair: FI-MCHP, Correlation: 0.9299764041391761
Pair: FI-MU, Correlation: 0.920420340106075
Pair: FI-MSFT, Correlation: 0.9261220848111817
Pair: FI-MDLZ, Correlation: 0.9470148340867353
Pair: FI-MNST, Correlation: 0.9373551368298713
Pair: FI-MCO, Correlation: 0.9631970259698176
Pair: FI-MSI, Correlation: 0.9364346397475106
Pair: FI-MSCI, Correlation: 0.9056549724242116
Pair: FI-NDAQ, Correlation: 0.9380578067999857
Pair: FI-NFLX, Correlation: 0.9383077182077213
Pair: FI-NEE, Correlation: 0.9238783997629909
Pair: FI-NI, Correlation: 0.9370292993054864
Pair: FI-NDSN, Correlation: 0.942454742277942
Pair: FI-NSC, Correlation: 0.9299820195574732
Pair: FI-NOC, Correlation: 0.9428616547373245
Pair: FI-NVR, Correlation: 0.9624262564596089
Pair: FI-NXPI, Correlation: 0.92456406061915
Pair: FI-ORLY, Correlation: 0.9238869468647695
Pair: FI-ORCL, Correlation: 0.9021074951577808
Pair: FI-PCAR, Correlation: 0.9034346348524817
Pair: FI-PKG, Correlation: 0.9582014397257729
Pair: FI-PH, Correlation: 0.9133706463342106
Pair: FI-PAYX, Correlation: 0.9409998386962798
Pair: FI-PEP, Correlation: 0.9372117434561658
Pair: FI-PNW, Correlation: 0.9176572166951051
Pair: FI-PNC, Correlation: 0.911439836646642
Pair: FI-PG, Correlation: 0.9458483001414606
Pair: FI-PGR, Correlation: 0.9269062113292459
Pair: FI-PLD, Correlation: 0.9066647218002538
Pair: FI-PEG, Correlation: 0.9737214929935315
Pair: FI-PTC, Correlation: 0.9490568218372168
Pair: FI-DGX, Correlation: 0.9365427615188499
Pair: FI-RJF, Correlation: 0.9127515595115
Pair: FI-RTX, Correlation: 0.9137338099684031
Pair: FI-O, Correlation: 0.9076921186818113
Pair: FI-RF, Correlation: 0.9028557053619818
Pair: FI-RSG, Correlation: 0.945145119756113
Pair: FI-RMD, Correlation: 0.9020361472061915
Pair: FI-ROK, Correlation: 0.9184536266458085
Pair: FI-ROL, Correlation: 0.9640790764940464
Pair: FI-ROP, Correlation: 0.9706968155186393
Pair: FI-ROST, Correlation: 0.9774569569715843
Pair: FI-SPGI, Correlation: 0.957627588612137
Pair: FI-CRM, Correlation: 0.952939341363078
Pair: FI-SRE, Correlation: 0.9447482448036381
Pair: FI-NOW, Correlation: 0.9348928182447265
Pair: FI-SHW, Correlation: 0.9601428259205042
Pair: FI-SNA, Correlation: 0.9257925045903653
Pair: FI-SO, Correlation: 0.9473084318996402
Pair: FI-SBUX, Correlation: 0.9227739946711551
Pair: FI-STE, Correlation: 0.9422219984672082
Pair: FI-SYK, Correlation: 0.9792220929326834
Pair: FI-SYY, Correlation: 0.9343752432206023
Pair: FI-TMUS, Correlation: 0.9589421835703591
Pair: FI-TTWO, Correlation: 0.919736355731624
Pair: FI-TEL, Correlation: 0.9370630219209274
Pair: FI-TDY, Correlation: 0.941205823768598
Pair: FI-TXN, Correlation: 0.953253512968518
Pair: FI-TMO, Correlation: 0.9168780960113296
Pair: FI-TJX, Correlation: 0.9650078959427837
Pair: FI-TT, Correlation: 0.9158157317227806
Pair: FI-TDG, Correlation: 0.9438091798520837
Pair: FI-TRV, Correlation: 0.949963513740266
Pair: FI-TYL, Correlation: 0.9560401775399107
Pair: FI-UNP, Correlation: 0.948507112161668
Pair: FI-UNH, Correlation: 0.9296967272870458
Pair: FI-VRSN, Correlation: 0.913461997619142
Pair: FI-VRSK, Correlation: 0.9652541539198862
Pair: FI-VRTX, Correlation: 0.941818899032556
Pair: FI-V, Correlation: 0.9810601088196012
Pair: FI-VMC, Correlation: 0.9532342992090366
Pair: FI-WRB, Correlation: 0.9400222305436071
Pair: FI-WMT, Correlation: 0.9551134983838827
Pair: FI-WM, Correlation: 0.9578784761715504
Pair: FI-WAT, Correlation: 0.9178361729495585
Pair: FI-WEC, Correlation: 0.9418892156515991
Pair: FI-WELL, Correlation: 0.916721741157573
Pair: FI-WTW, Correlation: 0.9730111147085609
Pair: FI-XEL, Correlation: 0.928272310986761
Pair: FI-XYL, Correlation: 0.9453079486886911
Pair: FI-YUM, Correlation: 0.9532617972712804
Pair: FMC-SBAC, Correlation: 0.9091942605643988
Pair: FTNT-GRMN, Correlation: 0.9115556555919957
Pair: FTNT-IT, Correlation: 0.9495284311034171
Pair: FTNT-GS, Correlation: 0.9251918431443951
Pair: FTNT-HCA, Correlation: 0.9575006239307808
Pair: FTNT-HSY, Correlation: 0.9256970803739004
Pair: FTNT-HLT, Correlation: 0.9287105474764922
Pair: FTNT-HOLX, Correlation: 0.9101731569134627
Pair: FTNT-HD, Correlation: 0.9330560641302923
Pair: FTNT-HPQ, Correlation: 0.9183307084441089
Pair: FTNT-HUBB, Correlation: 0.9088196849309468
Pair: FTNT-IDXX, Correlation: 0.9148562734785798
Pair: FTNT-ITW, Correlation: 0.9187889687200841
Pair: FTNT-ICE, Correlation: 0.9128367888421564
Pair: FTNT-IPG, Correlation: 0.9125565997907954
Pair: FTNT-INTU, Correlation: 0.9598222826562093
Pair: FTNT-ISRG, Correlation: 0.9338919326927098
Pair: FTNT-INVH, Correlation: 0.9138034417221053
Pair: FTNT-IQV, Correlation: 0.927925232918735
Pair: FTNT-JBHT, Correlation: 0.9263276166865729
Pair: FTNT-JBL, Correlation: 0.9089424352474131
Pair: FTNT-J, Correlation: 0.9547067223823575
Pair: FTNT-JCI, Correlation: 0.9211952900527326
Pair: FTNT-JPM, Correlation: 0.9070240191048831
Pair: FTNT-KEYS, Correlation: 0.9239260147813378
Pair: FTNT-KKR, Correlation: 0.9148334388464062
Pair: FTNT-KLAC, Correlation: 0.9285158033915548
Pair: FTNT-LH, Correlation: 0.9236248069980008
Pair: FTNT-LRCX, Correlation: 0.9412197269512318
Pair: FTNT-LEN, Correlation: 0.9084513555732375
Pair: FTNT-LIN, Correlation: 0.9642751321021168
Pair: FTNT-LYV, Correlation: 0.9174472571108597
Pair: FTNT-LOW, Correlation: 0.9648424039518929
Pair: FTNT-LULU, Correlation: 0.9070536145291047
Pair: FTNT-MMC, Correlation: 0.958384421385389
Pair: FTNT-MLM, Correlation: 0.9287151932667091
Pair: FTNT-MA, Correlation: 0.9210382661170129
Pair: FTNT-MCD, Correlation: 0.9334637021262824
Pair: FTNT-MET, Correlation: 0.9175530116821452
Pair: FTNT-MTD, Correlation: 0.9317321766333516
Pair: FTNT-MCHP, Correlation: 0.9278183741129972
Pair: FTNT-MSFT, Correlation: 0.9653147519608796
Pair: FTNT-MAA, Correlation: 0.9130460767845648
Pair: FTNT-MOH, Correlation: 0.9608987608640528
Pair: FTNT-MDLZ, Correlation: 0.9053223072015918
Pair: FTNT-MPWR, Correlation: 0.9506706512492981
Pair: FTNT-MCO, Correlation: 0.9381891676206494
Pair: FTNT-MS, Correlation: 0.960307920726903
Pair: FTNT-MSI, Correlation: 0.9497152020602848
Pair: FTNT-MSCI, Correlation: 0.963280685248259
Pair: FTNT-NDAQ, Correlation: 0.9505435143072168
Pair: FTNT-NDSN, Correlation: 0.932370802213841
Pair: FTNT-NUE, Correlation: 0.932154080067953
Pair: FTNT-NVR, Correlation: 0.9230857635156118
Pair: FTNT-NXPI, Correlation: 0.9092230800748776
Pair: FTNT-ORLY, Correlation: 0.9503973547448493
Pair: FTNT-ODFL, Correlation: 0.9744250760476225
Pair: FTNT-ON, Correlation: 0.948446748522994
Pair: FTNT-ORCL, Correlation: 0.931682808199418
Pair: FTNT-PANW, Correlation: 0.926247867478478
Pair: FTNT-PH, Correlation: 0.9168650746423325
Pair: FTNT-PAYX, Correlation: 0.9528562180654161
Pair: FTNT-PEP, Correlation: 0.927123438430601
Pair: FTNT-POOL, Correlation: 0.9289213513005322
Pair: FTNT-PG, Correlation: 0.9415979968913354
Pair: FTNT-PGR, Correlation: 0.9214578477658322
Pair: FTNT-PLD, Correlation: 0.944940444277624
Pair: FTNT-PTC, Correlation: 0.9143995553752772
Pair: FTNT-PSA, Correlation: 0.9147232113688083
Pair: FTNT-PWR, Correlation: 0.9130209549400468
Pair: FTNT-QCOM, Correlation: 0.9211016659438473
Pair: FTNT-DGX, Correlation: 0.9134494053002119
Pair: FTNT-RJF, Correlation: 0.948733008420546
Pair: FTNT-RSG, Correlation: 0.9510418641013774
Pair: FTNT-RMD, Correlation: 0.9202829997857687
Pair: FTNT-ROK, Correlation: 0.9193899525683696
Pair: FTNT-ROL, Correlation: 0.9123349743060912
Pair: FTNT-ROP, Correlation: 0.9094901533132987
Pair: FTNT-SPGI, Correlation: 0.9364262591688434
Pair: FTNT-STX, Correlation: 0.9033961128483068
Pair: FTNT-NOW, Correlation: 0.9368990140827371
Pair: FTNT-SHW, Correlation: 0.9332556450940177
Pair: FTNT-SO, Correlation: 0.9357961832993037
Pair: FTNT-STLD, Correlation: 0.918381651755525
Pair: FTNT-STE, Correlation: 0.9360037576170912
Pair: FTNT-SYK, Correlation: 0.9205516532344319
Pair: FTNT-SNPS, Correlation: 0.9538980725263246
Pair: FTNT-TMUS, Correlation: 0.9329586432411274
Pair: FTNT-TEL, Correlation: 0.9168850647566164
Pair: FTNT-TDY, Correlation: 0.9139660253515495
Pair: FTNT-TER, Correlation: 0.9190905339819913
Pair: FTNT-TSLA, Correlation: 0.925530047066307
Pair: FTNT-TXN, Correlation: 0.9307965814408555
Pair: FTNT-TPL, Correlation: 0.9155517918450301
Pair: FTNT-TMO, Correlation: 0.9495496705054621
Pair: FTNT-TJX, Correlation: 0.9099109469285429
Pair: FTNT-TSCO, Correlation: 0.9679215181684321
Pair: FTNT-TT, Correlation: 0.9197923962495694
Pair: FTNT-TDG, Correlation: 0.9095432368023855
Pair: FTNT-TYL, Correlation: 0.9025508489026403
Pair: FTNT-UNP, Correlation: 0.9141297953196188
Pair: FTNT-URI, Correlation: 0.911825588874137
Pair: FTNT-UNH, Correlation: 0.9539833414691486
Pair: FTNT-VRSK, Correlation: 0.9269349332273823
Pair: FTNT-VICI, Correlation: 0.9164846332256156
Pair: FTNT-V, Correlation: 0.9053183597541078
Pair: FTNT-VMC, Correlation: 0.901475946985496
Pair: FTNT-WRB, Correlation: 0.9361130165640663
Pair: FTNT-GWW, Correlation: 0.9148662402144686
Pair: FTNT-WMT, Correlation: 0.9223043960970997
Pair: FTNT-WM, Correlation: 0.9475430312586567
Pair: FTNT-WAT, Correlation: 0.9096307058718941
Pair: FTNT-WST, Correlation: 0.9457743379228027
Pair: FTNT-WTW, Correlation: 0.9150499023779203
Pair: FTNT-YUM, Correlation: 0.9175233044211268
Pair: FTNT-ZTS, Correlation: 0.9199699334778709
Pair: FOXA-FOX, Correlation: 0.979782642726611
Pair: GRMN-IT, Correlation: 0.9114222034478083
Pair: GRMN-GEN, Correlation: 0.9179488341473834
Pair: GRMN-GS, Correlation: 0.9324566807403721
Pair: GRMN-HIG, Correlation: 0.9018961120473228
Pair: GRMN-HCA, Correlation: 0.933933355590868
Pair: GRMN-HLT, Correlation: 0.9281069414445974
Pair: GRMN-HOLX, Correlation: 0.9084236638512309
Pair: GRMN-HD, Correlation: 0.9495022630573055
Pair: GRMN-HON, Correlation: 0.9237321844357221
Pair: GRMN-IEX, Correlation: 0.9159152503715305
Pair: GRMN-IDXX, Correlation: 0.9379195226379345
Pair: GRMN-ITW, Correlation: 0.9358779397463913
Pair: GRMN-ICE, Correlation: 0.9624951192406341
Pair: GRMN-INTU, Correlation: 0.9653270814501257
Pair: GRMN-ISRG, Correlation: 0.9758825630059695
Pair: GRMN-IQV, Correlation: 0.9166968040965109
Pair: GRMN-J, Correlation: 0.9550448482560053
Pair: GRMN-JCI, Correlation: 0.9220689344572353
Pair: GRMN-JPM, Correlation: 0.9631675964144297
Pair: GRMN-KDP, Correlation: 0.9040404497256908
Pair: GRMN-KKR, Correlation: 0.9346818550124214
Pair: GRMN-KLAC, Correlation: 0.9160612598296128
Pair: GRMN-LHX, Correlation: 0.908135660955071
Pair: GRMN-LH, Correlation: 0.930104068640399
Pair: GRMN-LRCX, Correlation: 0.9429039853652672
Pair: GRMN-LDOS, Correlation: 0.9489515341203612
Pair: GRMN-LEN, Correlation: 0.9239216196525109
Pair: GRMN-LII, Correlation: 0.9443240245672927
Pair: GRMN-LIN, Correlation: 0.9415698092871729
Pair: GRMN-LYV, Correlation: 0.9321837835747553
Pair: GRMN-LOW, Correlation: 0.9446664499066099
Pair: GRMN-MAR, Correlation: 0.9030605723372651
Pair: GRMN-MMC, Correlation: 0.9359872675352165
Pair: GRMN-MLM, Correlation: 0.9341603194854683
Pair: GRMN-MAS, Correlation: 0.945288657973243
Pair: GRMN-MA, Correlation: 0.9557828875891408
Pair: GRMN-MCD, Correlation: 0.9154609602751279
Pair: GRMN-META, Correlation: 0.9325988522006993
Pair: GRMN-MTD, Correlation: 0.9249100294410266
Pair: GRMN-MCHP, Correlation: 0.9308670117075927
Pair: GRMN-MU, Correlation: 0.946515562021034
Pair: GRMN-MSFT, Correlation: 0.9567205486146557
Pair: GRMN-MOH, Correlation: 0.9073073401962682
Pair: GRMN-MPWR, Correlation: 0.9379711806946726
Pair: GRMN-MCO, Correlation: 0.9749891745816271
Pair: GRMN-MS, Correlation: 0.9377005757445377
Pair: GRMN-MSI, Correlation: 0.9416843833036534
Pair: GRMN-MSCI, Correlation: 0.9451298670963691
Pair: GRMN-NDAQ, Correlation: 0.9488256277829029
Pair: GRMN-NTAP, Correlation: 0.9070015967857683
Pair: GRMN-NFLX, Correlation: 0.937664712103083
Pair: GRMN-NEE, Correlation: 0.916674619719517
Pair: GRMN-NDSN, Correlation: 0.9363871283607533
Pair: GRMN-NSC, Correlation: 0.9350264200390759
Pair: GRMN-NVR, Correlation: 0.951553140167178
Pair: GRMN-NXPI, Correlation: 0.9334259187110865
Pair: GRMN-ORLY, Correlation: 0.9056137063498352
Pair: GRMN-ODFL, Correlation: 0.9233812916224504
Pair: GRMN-ORCL, Correlation: 0.9221843333227274
Pair: GRMN-PKG, Correlation: 0.9351856283800821
Pair: GRMN-PH, Correlation: 0.9299841555344991
Pair: GRMN-PAYX, Correlation: 0.9310718191542764
Pair: GRMN-PNR, Correlation: 0.9251034014806686
Pair: GRMN-PNC, Correlation: 0.909072081779026
Pair: GRMN-POOL, Correlation: 0.9278084486497671
Pair: GRMN-PG, Correlation: 0.9451470063273998
Pair: GRMN-PGR, Correlation: 0.9218792431135404
Pair: GRMN-PLD, Correlation: 0.9200947187995087
Pair: GRMN-PEG, Correlation: 0.9376777058843824
Pair: GRMN-PTC, Correlation: 0.9456317571841658
Pair: GRMN-PHM, Correlation: 0.9032776734308839
Pair: GRMN-QCOM, Correlation: 0.9413649476013677
Pair: GRMN-DGX, Correlation: 0.9182113443905361
Pair: GRMN-RJF, Correlation: 0.9127217528333283
Pair: GRMN-RSG, Correlation: 0.9380317246227248
Pair: GRMN-RMD, Correlation: 0.9276160200436107
Pair: GRMN-ROK, Correlation: 0.9210155328679737
Pair: GRMN-ROL, Correlation: 0.9398589063484363
Pair: GRMN-ROP, Correlation: 0.9470433278492201
Pair: GRMN-ROST, Correlation: 0.9206266693607233
Pair: GRMN-SPGI, Correlation: 0.9659212310269217
Pair: GRMN-CRM, Correlation: 0.9550193923122293
Pair: GRMN-STX, Correlation: 0.9419089770405639
Pair: GRMN-NOW, Correlation: 0.9734317354480452
Pair: GRMN-SHW, Correlation: 0.9708101195952037
Pair: GRMN-SO, Correlation: 0.9290551981365577
Pair: GRMN-STE, Correlation: 0.9407842358476434
Pair: GRMN-SYK, Correlation: 0.9536260257353182
Pair: GRMN-SNPS, Correlation: 0.9153848518868232
Pair: GRMN-TMUS, Correlation: 0.9503421880204898
Pair: GRMN-TEL, Correlation: 0.9395563750849403
Pair: GRMN-TDY, Correlation: 0.9335819003237811
Pair: GRMN-TER, Correlation: 0.9474473992261419
Pair: GRMN-TXN, Correlation: 0.95398467841307
Pair: GRMN-TMO, Correlation: 0.9335859433223817
Pair: GRMN-TJX, Correlation: 0.9373721169396998
Pair: GRMN-TSCO, Correlation: 0.9269040692519008
Pair: GRMN-TT, Correlation: 0.9487122448866174
Pair: GRMN-TDG, Correlation: 0.9377651148463656
Pair: GRMN-TRV, Correlation: 0.9027078555300525
Pair: GRMN-TYL, Correlation: 0.9614476755184768
Pair: GRMN-UNP, Correlation: 0.9393918392286829
Pair: GRMN-URI, Correlation: 0.9126794274274863
Pair: GRMN-UNH, Correlation: 0.9148051761199132
Pair: GRMN-VRSK, Correlation: 0.953976591629512
Pair: GRMN-V, Correlation: 0.9483945349557702
Pair: GRMN-VMC, Correlation: 0.9214659456183124
Pair: GRMN-WRB, Correlation: 0.9157775874110078
Pair: GRMN-WMT, Correlation: 0.9616516340419781
Pair: GRMN-WM, Correlation: 0.9445636348254692
Pair: GRMN-WAT, Correlation: 0.925564221976332
Pair: GRMN-WELL, Correlation: 0.9008436120626534
Pair: GRMN-WST, Correlation: 0.92063778106487
Pair: GRMN-WTW, Correlation: 0.9537339899653704
Pair: GRMN-WDAY, Correlation: 0.9164181125398619
Pair: GRMN-XYL, Correlation: 0.9514540486940781
Pair: GRMN-YUM, Correlation: 0.9253954162387718
Pair: GRMN-ZBRA, Correlation: 0.9036610939261178
Pair: GRMN-ZTS, Correlation: 0.9184324548366459
Pair: IT-GD, Correlation: 0.9223866322881955
Pair: IT-GPC, Correlation: 0.9134669303659169
Pair: IT-GS, Correlation: 0.9594655348395332
Pair: IT-HIG, Correlation: 0.9644937386770046
Pair: IT-HCA, Correlation: 0.9787670586528029
Pair: IT-HLT, Correlation: 0.970895205470663
Pair: IT-HD, Correlation: 0.9319090173295838
Pair: IT-HUBB, Correlation: 0.9715002951262255
Pair: IT-ITW, Correlation: 0.9293537586589158
Pair: IT-IR, Correlation: 0.9587014572905167
Pair: IT-ICE, Correlation: 0.9237723758089487
Pair: IT-IPG, Correlation: 0.9125115977258879
Pair: IT-INTU, Correlation: 0.9559628125776739
Pair: IT-ISRG, Correlation: 0.9440573415787158
Pair: IT-IRM, Correlation: 0.9513412375368709
Pair: IT-JBHT, Correlation: 0.915375119325063
Pair: IT-JBL, Correlation: 0.9583519076325993
Pair: IT-J, Correlation: 0.9296948126977708
Pair: IT-JCI, Correlation: 0.9226942284040948
Pair: IT-JPM, Correlation: 0.95032231584178
Pair: IT-KKR, Correlation: 0.9548907244166888
Pair: IT-KLAC, Correlation: 0.9699045606200493
Pair: IT-LH, Correlation: 0.9017792372000252
Pair: IT-LRCX, Correlation: 0.9485630465718159
Pair: IT-LDOS, Correlation: 0.9046790920966088
Pair: IT-LEN, Correlation: 0.9648828391940771
Pair: IT-LII, Correlation: 0.9323070522438204
Pair: IT-LLY, Correlation: 0.9415797664990115
Pair: IT-LIN, Correlation: 0.9770509996632348
Pair: IT-LYV, Correlation: 0.9021996333726929
Pair: IT-L, Correlation: 0.938456401963047
Pair: IT-LOW, Correlation: 0.9524667239237515
Pair: IT-MPC, Correlation: 0.9398803691628751
Pair: IT-MAR, Correlation: 0.9520317751693201
Pair: IT-MMC, Correlation: 0.9774150429650821
Pair: IT-MLM, Correlation: 0.9738949561857804
Pair: IT-MAS, Correlation: 0.9148371103302848
Pair: IT-MA, Correlation: 0.9211967456755785
Pair: IT-MCD, Correlation: 0.934026009229218
Pair: IT-MCK, Correlation: 0.9270024833155189
Pair: IT-MRK, Correlation: 0.9432292533685362
Pair: IT-MET, Correlation: 0.9550594969497289
Pair: IT-MCHP, Correlation: 0.9298663163259436
Pair: IT-MSFT, Correlation: 0.9636551409892073
Pair: IT-MOH, Correlation: 0.9427364590605878
Pair: IT-MDLZ, Correlation: 0.9185410812106491
Pair: IT-MPWR, Correlation: 0.9673253524544717
Pair: IT-MCO, Correlation: 0.9362794519527864
Pair: IT-MS, Correlation: 0.9538337112908563
Pair: IT-MSI, Correlation: 0.9810147157057219
Pair: IT-MSCI, Correlation: 0.9184425047510174
Pair: IT-NDAQ, Correlation: 0.9367868037588131
Pair: IT-NTAP, Correlation: 0.9145080500398295
Pair: IT-NDSN, Correlation: 0.924807151354472
Pair: IT-NOC, Correlation: 0.9038942538810784
Pair: IT-NUE, Correlation: 0.9576812201985133
Pair: IT-NVR, Correlation: 0.9619399800301656
Pair: IT-NXPI, Correlation: 0.9362944091518192
Pair: IT-ORLY, Correlation: 0.9815338693835705
Pair: IT-ODFL, Correlation: 0.9654239671887632
Pair: IT-ON, Correlation: 0.935923696064689
Pair: IT-OKE, Correlation: 0.9270871394831234
Pair: IT-ORCL, Correlation: 0.9722601614735978
Pair: IT-OTIS, Correlation: 0.9331784468556198
Pair: IT-PCAR, Correlation: 0.9592413307984514
Pair: IT-PKG, Correlation: 0.9431329442046957
Pair: IT-PANW, Correlation: 0.9769405147108301
Pair: IT-PH, Correlation: 0.9734149288554665
Pair: IT-PAYX, Correlation: 0.9519403522993749
Pair: IT-PNR, Correlation: 0.9121325800935134
Pair: IT-PEP, Correlation: 0.9246780577987692
Pair: IT-PFG, Correlation: 0.93535127844748
Pair: IT-PG, Correlation: 0.9318225429265403
Pair: IT-PGR, Correlation: 0.9678490005949135
Pair: IT-PEG, Correlation: 0.9249881361351402
Pair: IT-PTC, Correlation: 0.9488592007770124
Pair: IT-PSA, Correlation: 0.9155424087898514
Pair: IT-PHM, Correlation: 0.9458651607687756
Pair: IT-PWR, Correlation: 0.9566642005850772
Pair: IT-QCOM, Correlation: 0.9002931729544272
Pair: IT-DGX, Correlation: 0.906378427887365
Pair: IT-RJF, Correlation: 0.9736916618885566
Pair: IT-RTX, Correlation: 0.908617788001952
Pair: IT-RF, Correlation: 0.900033614015441
Pair: IT-RSG, Correlation: 0.9807795456634877
Pair: IT-ROK, Correlation: 0.9014003893525921
Pair: IT-ROL, Correlation: 0.9242425237660626
Pair: IT-ROP, Correlation: 0.9189677285368683
Pair: IT-SPGI, Correlation: 0.9207541454930401
Pair: IT-STX, Correlation: 0.91060227966001
Pair: IT-NOW, Correlation: 0.9234150727461103
Pair: IT-SHW, Correlation: 0.933185756166917
Pair: IT-SNA, Correlation: 0.9475009710419128
Pair: IT-SO, Correlation: 0.9471516675870185
Pair: IT-STLD, Correlation: 0.9707217153029017
Pair: IT-STE, Correlation: 0.9065114187797654
Pair: IT-SYK, Correlation: 0.9453370656589248
Pair: IT-SNPS, Correlation: 0.9725337048196183
Pair: IT-TMUS, Correlation: 0.9419505810393075
Pair: IT-TEL, Correlation: 0.9239069297030572
Pair: IT-TXN, Correlation: 0.9154071358400725
Pair: IT-TPL, Correlation: 0.9355756985562917
Pair: IT-TXT, Correlation: 0.9194084099231769
Pair: IT-TMO, Correlation: 0.9113384564613805
Pair: IT-TJX, Correlation: 0.962505427677325
Pair: IT-TSCO, Correlation: 0.9699197924891646
Pair: IT-TT, Correlation: 0.9682329763932538
Pair: IT-TDG, Correlation: 0.9655850260659302
Pair: IT-TRV, Correlation: 0.9538518587909891
Pair: IT-UNP, Correlation: 0.9095157745689172
Pair: IT-URI, Correlation: 0.973197168507627
Pair: IT-UNH, Correlation: 0.9482004312936733
Pair: IT-VLO, Correlation: 0.9284760049189794
Pair: IT-VRSK, Correlation: 0.9320820329943299
Pair: IT-VRTX, Correlation: 0.9327428116859566
Pair: IT-V, Correlation: 0.9127575951598933
Pair: IT-VMC, Correlation: 0.952115666266995
Pair: IT-WRB, Correlation: 0.9686766852625888
Pair: IT-GWW, Correlation: 0.9689491647920173
Pair: IT-WMT, Correlation: 0.9414636759993952
Pair: IT-WM, Correlation: 0.966382596939629
Pair: IT-WELL, Correlation: 0.9193894621173287
Pair: IT-WTW, Correlation: 0.9269614877113337
Pair: IT-XYL, Correlation: 0.910407725768163
Pair: IT-YUM, Correlation: 0.9240017734790029
Pair: GE-VLTO, Correlation: 0.9603222913451082
Pair: GEV-GILD, Correlation: 0.9122435547614233
Pair: GEV-HLT, Correlation: 0.9246981526559077
Pair: GEV-HWM, Correlation: 0.9009083422062173
Pair: GEV-PODD, Correlation: 0.9399810512688631
Pair: GEV-JCI, Correlation: 0.9345211493332044
Pair: GEV-KMI, Correlation: 0.9590086039522685
Pair: GEV-KKR, Correlation: 0.9570628384479803
Pair: GEV-LYV, Correlation: 0.9029540570783413
Pair: GEV-MTB, Correlation: 0.9453395381900646
Pair: GEV-MS, Correlation: 0.9287590106405241
Pair: GEV-MSI, Correlation: 0.9201696632931989
Pair: GEV-NFLX, Correlation: 0.9155913739021556
Pair: GEV-NI, Correlation: 0.9157694924585555
Pair: GEV-NTRS, Correlation: 0.9306821108084082
Pair: GEV-OKE, Correlation: 0.950801830132007
Pair: GEV-ORCL, Correlation: 0.9461838746444454
Pair: GEV-PKG, Correlation: 0.9480113203978887
Pair: GEV-PLTR, Correlation: 0.9567432673286264
Pair: GEV-PH, Correlation: 0.9128718955236051
Pair: GEV-PAYX, Correlation: 0.9344762851360348
Pair: GEV-PYPL, Correlation: 0.9051072991442983
Pair: GEV-PNR, Correlation: 0.9341076697064876
Pair: GEV-PCG, Correlation: 0.9112628465294521
Pair: GEV-PWR, Correlation: 0.9293024594492865
Pair: GEV-RL, Correlation: 0.909933388580082
Pair: GEV-RCL, Correlation: 0.9633867700986426
Pair: GEV-SRE, Correlation: 0.9123703243484783
Pair: GEV-NOW, Correlation: 0.929143409761737
Pair: GEV-SPG, Correlation: 0.9282580027393311
Pair: GEV-STT, Correlation: 0.904630491257318
Pair: GEV-SYF, Correlation: 0.9152738610861587
Pair: GEV-TMUS, Correlation: 0.9477629723853156
Pair: GEV-TRGP, Correlation: 0.9521366177464523
Pair: GEV-TPL, Correlation: 0.9394572834805851
Pair: GEV-TT, Correlation: 0.9524089264883394
Pair: GEV-VST, Correlation: 0.9261631003767893
Pair: GEV-GWW, Correlation: 0.9051961713350454
Pair: GEV-WAB, Correlation: 0.9479497832604608
Pair: GEV-WMT, Correlation: 0.9146930873601793
Pair: GEV-WELL, Correlation: 0.9084075436726127
Pair: GEV-WMB, Correlation: 0.9675367263319343
Pair: GEV-XEL, Correlation: 0.9180911126778322
Pair: GEV-ZBRA, Correlation: 0.9316762138395671
Pair: GEN-GS, Correlation: 0.9075576704125281
Pair: GEN-HOLX, Correlation: 0.9211943484634139
Pair: GEN-HD, Correlation: 0.9445543486889161
Pair: GEN-HON, Correlation: 0.9190127010781253
Pair: GEN-IEX, Correlation: 0.9153774480246959
Pair: GEN-IDXX, Correlation: 0.9186949364993919
Pair: GEN-ITW, Correlation: 0.9366587274156798
Pair: GEN-ICE, Correlation: 0.9390231387210802
Pair: GEN-INTU, Correlation: 0.9185017083755755
Pair: GEN-ISRG, Correlation: 0.9045299622087896
Pair: GEN-IQV, Correlation: 0.9006987722130434
Pair: GEN-JBHT, Correlation: 0.9218423564841287
Pair: GEN-JKHY, Correlation: 0.9010444516679352
Pair: GEN-J, Correlation: 0.9224712814233106
Pair: GEN-JNJ, Correlation: 0.9242950699936107
Pair: GEN-JCI, Correlation: 0.9165894909965326
Pair: GEN-JPM, Correlation: 0.9057399280487451
Pair: GEN-KDP, Correlation: 0.9073327970141867
Pair: GEN-LHX, Correlation: 0.9165844382984868
Pair: GEN-LH, Correlation: 0.943205701384918
Pair: GEN-LDOS, Correlation: 0.9188852592688173
Pair: GEN-LYV, Correlation: 0.9163505507111641
Pair: GEN-LOW, Correlation: 0.9351787355779206
Pair: GEN-MMC, Correlation: 0.9152402090502828
Pair: GEN-MAS, Correlation: 0.9376997545340783
Pair: GEN-MA, Correlation: 0.9153710807257278
Pair: GEN-MCD, Correlation: 0.9051146490921109
Pair: GEN-MTD, Correlation: 0.9402066649519583
Pair: GEN-MCHP, Correlation: 0.9192406294764187
Pair: GEN-MSFT, Correlation: 0.9078562080626313
Pair: GEN-MAA, Correlation: 0.931885453196336
Pair: GEN-MOH, Correlation: 0.9001657175171038
Pair: GEN-MDLZ, Correlation: 0.9009849217970033
Pair: GEN-MCO, Correlation: 0.9427389335005559
Pair: GEN-MS, Correlation: 0.9302747263081446
Pair: GEN-MSCI, Correlation: 0.9260275781651707
Pair: GEN-NDAQ, Correlation: 0.9500813135800238
Pair: GEN-NEE, Correlation: 0.9322312256759785
Pair: GEN-NDSN, Correlation: 0.9468659110987764
Pair: GEN-NSC, Correlation: 0.9284166657065285
Pair: GEN-NXPI, Correlation: 0.9209850541793628
Pair: GEN-PKG, Correlation: 0.9222756547895108
Pair: GEN-PAYX, Correlation: 0.9282556217774672
Pair: GEN-PEP, Correlation: 0.9133719276998525
Pair: GEN-PNC, Correlation: 0.9258791012301731
Pair: GEN-POOL, Correlation: 0.9369174282168478
Pair: GEN-PG, Correlation: 0.9325280479736808
Pair: GEN-PLD, Correlation: 0.9402361765780644
Pair: GEN-PEG, Correlation: 0.9065696685795005
Pair: GEN-PSA, Correlation: 0.9086303348693167
Pair: GEN-QCOM, Correlation: 0.9036091761902184
Pair: GEN-DGX, Correlation: 0.9439406858399764
Pair: GEN-RJF, Correlation: 0.9106682965257058
Pair: GEN-RF, Correlation: 0.906831513812568
Pair: GEN-RMD, Correlation: 0.9340989370683592
Pair: GEN-RVTY, Correlation: 0.909770600254445
Pair: GEN-ROK, Correlation: 0.9270143195920206
Pair: GEN-ROL, Correlation: 0.9162489330731173
Pair: GEN-ROP, Correlation: 0.9237424914488032
Pair: GEN-SPGI, Correlation: 0.9471430315700994
Pair: GEN-CRM, Correlation: 0.9005223635203148
Pair: GEN-STX, Correlation: 0.9119711519682883
Pair: GEN-NOW, Correlation: 0.9041607293565517
Pair: GEN-SHW, Correlation: 0.9457858375968007
Pair: GEN-SO, Correlation: 0.9112149529554854
Pair: GEN-STE, Correlation: 0.9299979317057581
Pair: GEN-SYK, Correlation: 0.9080801986949671
Pair: GEN-TMUS, Correlation: 0.9373650728455811
Pair: GEN-TEL, Correlation: 0.9350723359688587
Pair: GEN-TDY, Correlation: 0.9204789389996806
Pair: GEN-TER, Correlation: 0.9291510431561834
Pair: GEN-TXN, Correlation: 0.9426579706237866
Pair: GEN-TMO, Correlation: 0.9374970628195151
Pair: GEN-TYL, Correlation: 0.9425568986005124
Pair: GEN-UNP, Correlation: 0.930350241842435
Pair: GEN-UPS, Correlation: 0.9084343440468398
Pair: GEN-UNH, Correlation: 0.9241908200968438
Pair: GEN-VRSK, Correlation: 0.911640487459162
Pair: GEN-V, Correlation: 0.9166527117046818
Pair: GEN-WMT, Correlation: 0.9024081513043222
Pair: GEN-WM, Correlation: 0.915508178268687
Pair: GEN-WAT, Correlation: 0.9356580683945461
Pair: GEN-WEC, Correlation: 0.9049408066231799
Pair: GEN-WST, Correlation: 0.9189581377409944
Pair: GEN-WTW, Correlation: 0.9310461400425665
Pair: GEN-XEL, Correlation: 0.9070046460666081
Pair: GEN-ZTS, Correlation: 0.904624050272529
Pair: GNRC-TROW, Correlation: 0.9216659713438523
Pair: GNRC-TGT, Correlation: 0.9281089718446427
Pair: GNRC-TRMB, Correlation: 0.9265058508548036
Pair: GNRC-ZBRA, Correlation: 0.9412460189210005
Pair: GD-GPC, Correlation: 0.9095302878678984
Pair: GD-GL, Correlation: 0.9162593350273838
Pair: GD-GS, Correlation: 0.917792922247033
Pair: GD-HIG, Correlation: 0.9654861089054377
Pair: GD-HCA, Correlation: 0.9160783300534128
Pair: GD-HLT, Correlation: 0.9229092132043746
Pair: GD-HD, Correlation: 0.9185669628645672
Pair: GD-HON, Correlation: 0.9123575812285747
Pair: GD-HWM, Correlation: 0.9021576274005703
Pair: GD-HBAN, Correlation: 0.925785447687634
Pair: GD-HII, Correlation: 0.936783693796634
Pair: GD-IEX, Correlation: 0.9047612154106982
Pair: GD-ITW, Correlation: 0.9315900279770136
Pair: GD-ICE, Correlation: 0.9199887010900144
Pair: GD-IPG, Correlation: 0.9118661564709585
Pair: GD-JBHT, Correlation: 0.9080684135748688
Pair: GD-JNJ, Correlation: 0.9197648833627936
Pair: GD-JPM, Correlation: 0.9360864869255299
Pair: GD-KR, Correlation: 0.9023128271572638
Pair: GD-LHX, Correlation: 0.9052236249057173
Pair: GD-LDOS, Correlation: 0.9056162978330375
Pair: GD-LII, Correlation: 0.9163365203688839
Pair: GD-LMT, Correlation: 0.9549375872235473
Pair: GD-LOW, Correlation: 0.9053436691038416
Pair: GD-LYB, Correlation: 0.9119173926588319
Pair: GD-MTB, Correlation: 0.900644884037434
Pair: GD-MAR, Correlation: 0.967436384971196
Pair: GD-MMC, Correlation: 0.9360424730777123
Pair: GD-MLM, Correlation: 0.9374531459505512
Pair: GD-MAS, Correlation: 0.9292816876672636
Pair: GD-MCD, Correlation: 0.9160731713742581
Pair: GD-MRK, Correlation: 0.9237107154571099
Pair: GD-MET, Correlation: 0.934509851424287
Pair: GD-MGM, Correlation: 0.907250108502524
Pair: GD-MCHP, Correlation: 0.9086179247203079
Pair: GD-MDLZ, Correlation: 0.9250558967736375
Pair: GD-MNST, Correlation: 0.9201260642747336
Pair: GD-MS, Correlation: 0.9048895076331228
Pair: GD-MSI, Correlation: 0.9028965476628906
Pair: GD-NDAQ, Correlation: 0.9072617454998534
Pair: GD-NI, Correlation: 0.9438897201022081
Pair: GD-NDSN, Correlation: 0.9107135980520747
Pair: GD-NOC, Correlation: 0.9602667962677409
Pair: GD-NVR, Correlation: 0.9243939969750957
Pair: GD-NXPI, Correlation: 0.9313933808728119
Pair: GD-ORLY, Correlation: 0.917371180183021
Pair: GD-OMC, Correlation: 0.9280182667235868
Pair: GD-OKE, Correlation: 0.9233374394652664
Pair: GD-PKG, Correlation: 0.9626052951517574
Pair: GD-PAYX, Correlation: 0.9297847013041959
Pair: GD-PEP, Correlation: 0.9274653208255559
Pair: GD-PM, Correlation: 0.9273893378480922
Pair: GD-PSX, Correlation: 0.9116225559737554
Pair: GD-PNC, Correlation: 0.9119949460940594
Pair: GD-PFG, Correlation: 0.9662186579369128
Pair: GD-PRU, Correlation: 0.963940399694647
Pair: GD-PEG, Correlation: 0.94097368606831
Pair: GD-PTC, Correlation: 0.9200255711552376
Pair: GD-PSA, Correlation: 0.9204484981002072
Pair: GD-DGX, Correlation: 0.9230292172024771
Pair: GD-RJF, Correlation: 0.9443917762729508
Pair: GD-RTX, Correlation: 0.9478749607408854
Pair: GD-REGN, Correlation: 0.9033669115596231
Pair: GD-RF, Correlation: 0.9302344931387597
Pair: GD-RSG, Correlation: 0.9311520509348096
Pair: GD-ROL, Correlation: 0.9166245863920779
Pair: GD-ROP, Correlation: 0.9161562170391743
Pair: GD-ROST, Correlation: 0.9108523182840514
Pair: GD-SRE, Correlation: 0.9377440700229753
Pair: GD-SHW, Correlation: 0.9032856760577956
Pair: GD-SNA, Correlation: 0.9529521995833568
Pair: GD-SO, Correlation: 0.9148962637757302
Pair: GD-SYK, Correlation: 0.9337556613605147
Pair: GD-SYY, Correlation: 0.9112361160208492
Pair: GD-TMUS, Correlation: 0.9143958178182993
Pair: GD-TEL, Correlation: 0.9308005817193091
Pair: GD-TXN, Correlation: 0.9062011002871979
Pair: GD-TXT, Correlation: 0.9588072320016202
Pair: GD-TJX, Correlation: 0.9300849171338647
Pair: GD-TDG, Correlation: 0.9004490418040065
Pair: GD-TRV, Correlation: 0.9749942077684323
Pair: GD-ULTA, Correlation: 0.9147038187037383
Pair: GD-UNP, Correlation: 0.9079758819535164
Pair: GD-UNH, Correlation: 0.9246233085651243
Pair: GD-VLO, Correlation: 0.9513154234212083
Pair: GD-VLTO, Correlation: 0.919703340933742
Pair: GD-VRTX, Correlation: 0.9124443112439761
Pair: GD-V, Correlation: 0.9109783049892414
Pair: GD-VMC, Correlation: 0.9546128255859138
Pair: GD-WRB, Correlation: 0.9369594006556956
Pair: GD-WM, Correlation: 0.9359963757436071
Pair: GD-WAT, Correlation: 0.904090937690039
Pair: GD-WELL, Correlation: 0.9073518566918086
Pair: GD-WTW, Correlation: 0.9155177889411144
Pair: GD-YUM, Correlation: 0.9212154826518248
Pair: GIS-GPC, Correlation: 0.952761573820138
Pair: GIS-HSY, Correlation: 0.954877461547886
Pair: GIS-HOLX, Correlation: 0.9245084073120922
Pair: GIS-ITW, Correlation: 0.9084185103097195
Pair: GIS-IPG, Correlation: 0.9204625787018964
Pair: GIS-JBHT, Correlation: 0.904952485532844
Pair: GIS-JNJ, Correlation: 0.9145275477337509
Pair: GIS-KMB, Correlation: 0.9068849627063091
Pair: GIS-KR, Correlation: 0.9317260212897608
Pair: GIS-LKQ, Correlation: 0.909558344493582
Pair: GIS-LMT, Correlation: 0.9154911909743276
Pair: GIS-LOW, Correlation: 0.9096299504691622
Pair: GIS-MMC, Correlation: 0.9106796223179637
Pair: GIS-MCD, Correlation: 0.9054787358123901
Pair: GIS-MRK, Correlation: 0.9106536942971631
Pair: GIS-MDLZ, Correlation: 0.9479124097125741
Pair: GIS-MNST, Correlation: 0.9293533067187045
Pair: GIS-NDAQ, Correlation: 0.9027326349783447
Pair: GIS-NDSN, Correlation: 0.901354880244779
Pair: GIS-NOC, Correlation: 0.920173587072223
Pair: GIS-ORLY, Correlation: 0.9084431415070704
Pair: GIS-PAYX, Correlation: 0.9108906903983148
Pair: GIS-PEP, Correlation: 0.9512465523535352
Pair: GIS-PFG, Correlation: 0.9077234771011705
Pair: GIS-PG, Correlation: 0.9148558364133488
Pair: GIS-PSA, Correlation: 0.9280968563351311
Pair: GIS-DGX, Correlation: 0.9002024366437759
Pair: GIS-REGN, Correlation: 0.9091888382297526
Pair: GIS-SRE, Correlation: 0.9254236727264588
Pair: GIS-SJM, Correlation: 0.9475461642515752
Pair: GIS-SNA, Correlation: 0.9163524838057471
Pair: GIS-SO, Correlation: 0.916354500542113
Pair: GIS-TMO, Correlation: 0.9034004153746372
Pair: GIS-TSCO, Correlation: 0.9052568085842145
Pair: GIS-TRV, Correlation: 0.9035512757534062
Pair: GIS-ULTA, Correlation: 0.9098910395357993
Pair: GIS-UNH, Correlation: 0.912232041013227
Pair: GM-PNC, Correlation: 0.9007102109057205
Pair: GPC-GL, Correlation: 0.907479413973562
Pair: GPC-HCA, Correlation: 0.9225265345481493
Pair: GPC-HSY, Correlation: 0.964897151593256
Pair: GPC-HOLX, Correlation: 0.9226028073716904
Pair: GPC-HD, Correlation: 0.9178902409487446
Pair: GPC-HON, Correlation: 0.9149876634396221
Pair: GPC-IEX, Correlation: 0.9249010182107021
Pair: GPC-ITW, Correlation: 0.9293974562000052
Pair: GPC-IPG, Correlation: 0.9576195346433145
Pair: GPC-JBHT, Correlation: 0.9465389136194408
Pair: GPC-JNJ, Correlation: 0.9229562347245744
Pair: GPC-JCI, Correlation: 0.923035485067525
Pair: GPC-KDP, Correlation: 0.9096588107388205
Pair: GPC-KR, Correlation: 0.9167827442709701
Pair: GPC-LIN, Correlation: 0.9077942953999099
Pair: GPC-LKQ, Correlation: 0.941466022925189
Pair: GPC-LMT, Correlation: 0.9163296319290947
Pair: GPC-LOW, Correlation: 0.9337632709583252
Pair: GPC-MMC, Correlation: 0.9392801569276253
Pair: GPC-MLM, Correlation: 0.9031493418584221
Pair: GPC-MCD, Correlation: 0.9352131444336482
Pair: GPC-MRK, Correlation: 0.9406895889275187
Pair: GPC-MET, Correlation: 0.9241776005387695
Pair: GPC-MTD, Correlation: 0.9201129510510389
Pair: GPC-MCHP, Correlation: 0.9227996155985178
Pair: GPC-MOH, Correlation: 0.9284404183805339
Pair: GPC-MDLZ, Correlation: 0.9499959453774095
Pair: GPC-MNST, Correlation: 0.940486508484678
Pair: GPC-MS, Correlation: 0.9087473337116749
Pair: GPC-NDAQ, Correlation: 0.9216888785063914
Pair: GPC-NDSN, Correlation: 0.9274209377736118
Pair: GPC-NOC, Correlation: 0.934375397855087
Pair: GPC-NUE, Correlation: 0.9129466421951601
Pair: GPC-NXPI, Correlation: 0.9062163874493959
Pair: GPC-ORLY, Correlation: 0.9362715092474869
Pair: GPC-ODFL, Correlation: 0.914477656251407
Pair: GPC-ON, Correlation: 0.9170273870096595
Pair: GPC-PAYX, Correlation: 0.9426571746580107
Pair: GPC-PEP, Correlation: 0.9609463205243319
Pair: GPC-PFG, Correlation: 0.9522331312880403
Pair: GPC-PG, Correlation: 0.9202439554340182
Pair: GPC-PLD, Correlation: 0.9046327187134227
Pair: GPC-PSA, Correlation: 0.9365410696110913
Pair: GPC-DGX, Correlation: 0.9128004824108052
Pair: GPC-RJF, Correlation: 0.9381206922052984
Pair: GPC-RTX, Correlation: 0.9111257900425411
Pair: GPC-RF, Correlation: 0.9045652226659483
Pair: GPC-RSG, Correlation: 0.9109604220957501
Pair: GPC-ROK, Correlation: 0.9173514392285084
Pair: GPC-ROL, Correlation: 0.9059381811461988
Pair: GPC-ROP, Correlation: 0.9047099511063411
Pair: GPC-SRE, Correlation: 0.9332730518510385
Pair: GPC-SJM, Correlation: 0.9211601058080384
Pair: GPC-SNA, Correlation: 0.943837440861604
Pair: GPC-SO, Correlation: 0.9209255830210457
Pair: GPC-STLD, Correlation: 0.9006150882452553
Pair: GPC-STE, Correlation: 0.9018795801648655
Pair: GPC-SYK, Correlation: 0.9038087156656408
Pair: GPC-SYY, Correlation: 0.9015586726365753
Pair: GPC-TMUS, Correlation: 0.901793590465784
Pair: GPC-TEL, Correlation: 0.9241686360704602
Pair: GPC-TXN, Correlation: 0.9122851189678236
Pair: GPC-TXT, Correlation: 0.9015286961447868
Pair: GPC-TMO, Correlation: 0.9214961952535258
Pair: GPC-TJX, Correlation: 0.9143433412242274
Pair: GPC-TSCO, Correlation: 0.9283479878506999
Pair: GPC-TRV, Correlation: 0.9329215743132356
Pair: GPC-ULTA, Correlation: 0.9462362216892424
Pair: GPC-UNP, Correlation: 0.9175315871189972
Pair: GPC-UPS, Correlation: 0.9135728835135642
Pair: GPC-UNH, Correlation: 0.941830396113623
Pair: GPC-VLO, Correlation: 0.916623094027752
Pair: GPC-VICI, Correlation: 0.9208557466851115
Pair: GPC-VMC, Correlation: 0.9111400350817885
Pair: GPC-WRB, Correlation: 0.9276884988133918
Pair: GPC-WM, Correlation: 0.926192435054584
Pair: GPC-WAT, Correlation: 0.909588292562561
Pair: GPC-WTW, Correlation: 0.9050068080351411
Pair: GPC-YUM, Correlation: 0.9368960474630754
Pair: GPN-INTC, Correlation: 0.9332556247529554
Pair: GPN-MKTX, Correlation: 0.955640091468153
Pair: GPN-MKC, Correlation: 0.9109015303603648
Pair: GPN-MDT, Correlation: 0.9386526481137425
Pair: GPN-TTWO, Correlation: 0.9242552846435887
Pair: GPN-TFX, Correlation: 0.9807136966087278
Pair: GPN-VRSN, Correlation: 0.9240778754014759
Pair: GL-HSIC, Correlation: 0.9134885715003745
Pair: GL-HOLX, Correlation: 0.9159886416293171
Pair: GL-HD, Correlation: 0.9195137892705566
Pair: GL-HON, Correlation: 0.9543569802867604
Pair: GL-HUM, Correlation: 0.932513400454341
Pair: GL-HBAN, Correlation: 0.9259793578801366
Pair: GL-HII, Correlation: 0.9280899973604197
Pair: GL-IEX, Correlation: 0.9503567639246222
Pair: GL-ITW, Correlation: 0.9399046510639144
Pair: GL-ICE, Correlation: 0.9085455649305407
Pair: GL-IPG, Correlation: 0.908410943405084
Pair: GL-JBHT, Correlation: 0.9311397290555977
Pair: GL-JKHY, Correlation: 0.9413995929378012
Pair: GL-JNJ, Correlation: 0.9632070375069592
Pair: GL-KDP, Correlation: 0.9230675439052028
Pair: GL-KMB, Correlation: 0.9159732495318565
Pair: GL-LHX, Correlation: 0.9324236800584426
Pair: GL-LH, Correlation: 0.9068217070476885
Pair: GL-LYV, Correlation: 0.901042253658247
Pair: GL-LMT, Correlation: 0.9493224098695531
Pair: GL-LYB, Correlation: 0.9086261429289096
Pair: GL-MAR, Correlation: 0.9079938793668112
Pair: GL-MAS, Correlation: 0.9080817895744895
Pair: GL-MA, Correlation: 0.910026436475561
Pair: GL-MKC, Correlation: 0.9002385538804999
Pair: GL-MCD, Correlation: 0.9319983989753524
Pair: GL-MGM, Correlation: 0.907126963639773
Pair: GL-MCHP, Correlation: 0.9064525441839434
Pair: GL-MDLZ, Correlation: 0.9412780243208952
Pair: GL-MNST, Correlation: 0.9420390647537191
Pair: GL-NI, Correlation: 0.9407749976718862
Pair: GL-NDSN, Correlation: 0.9235587207774638
Pair: GL-NSC, Correlation: 0.913539055924168
Pair: GL-NOC, Correlation: 0.9552536838540693
Pair: GL-PKG, Correlation: 0.9073727579613227
Pair: GL-PAYX, Correlation: 0.914738543284621
Pair: GL-PEP, Correlation: 0.9363003663355653
Pair: GL-PNW, Correlation: 0.9249423953823913
Pair: GL-PNC, Correlation: 0.9086654829464483
Pair: GL-PPG, Correlation: 0.9179062934680986
Pair: GL-PFG, Correlation: 0.914517437606477
Pair: GL-PEG, Correlation: 0.9086870354708839
Pair: GL-DGX, Correlation: 0.9225071317887309
Pair: GL-O, Correlation: 0.9311386570002067
Pair: GL-RF, Correlation: 0.9166386537664685
Pair: GL-ROK, Correlation: 0.9208293724185622
Pair: GL-ROL, Correlation: 0.9074622391177001
Pair: GL-ROP, Correlation: 0.9281578577734373
Pair: GL-ROST, Correlation: 0.9325745355945015
Pair: GL-SRE, Correlation: 0.9504242025564741
Pair: GL-SJM, Correlation: 0.9020125953339148
Pair: GL-SNA, Correlation: 0.9119890024756105
Pair: GL-SBUX, Correlation: 0.9353933790714253
Pair: GL-STE, Correlation: 0.9037095790353873
Pair: GL-SYK, Correlation: 0.9140824496157539
Pair: GL-SYY, Correlation: 0.9563138698736925
Pair: GL-TEL, Correlation: 0.9228194560275929
Pair: GL-TDY, Correlation: 0.9170773622958983
Pair: GL-TXN, Correlation: 0.9111476897184925
Pair: GL-TRV, Correlation: 0.9184983719442855
Pair: GL-ULTA, Correlation: 0.9393567330015427
Pair: GL-UNP, Correlation: 0.9272291103287761
Pair: GL-UNH, Correlation: 0.9100343741095451
Pair: GL-VRSN, Correlation: 0.9183472579518712
Pair: GL-V, Correlation: 0.9286419907506871
Pair: GL-WAT, Correlation: 0.9135745352896726
Pair: GL-WEC, Correlation: 0.9347875951488014
Pair: GL-WTW, Correlation: 0.9174062954367806
Pair: GL-XEL, Correlation: 0.9349664603930489
Pair: GL-YUM, Correlation: 0.9383115998157213
Pair: GDDY-HLT, Correlation: 0.9037330430459977
Pair: GDDY-ISRG, Correlation: 0.9214706460524259
Pair: GDDY-JPM, Correlation: 0.9205089790699857
Pair: GDDY-LDOS, Correlation: 0.9330012899479979
Pair: GDDY-LII, Correlation: 0.9409455195716413
Pair: GDDY-NTAP, Correlation: 0.9209863906906774
Pair: GDDY-NRG, Correlation: 0.9551707889982525
Pair: GDDY-NVR, Correlation: 0.9061715215346718
Pair: GDDY-PKG, Correlation: 0.9058346467091223
Pair: GDDY-PGR, Correlation: 0.9214649534735295
Pair: GDDY-PEG, Correlation: 0.9160227484834306
Pair: GDDY-TJX, Correlation: 0.902175355714624
Pair: GDDY-TT, Correlation: 0.9086535997669912
Pair: GDDY-TDG, Correlation: 0.9126852164969249
Pair: GDDY-VLTO, Correlation: 0.9274078671135827
Pair: GDDY-WMT, Correlation: 0.9206340702690013
Pair: GS-HIG, Correlation: 0.9636911689794915
Pair: GS-HCA, Correlation: 0.9602368877059728
Pair: GS-HLT, Correlation: 0.9536603627523499
Pair: GS-HD, Correlation: 0.9287782339927537
Pair: GS-HPQ, Correlation: 0.9247414144844388
Pair: GS-HUBB, Correlation: 0.9308641780426992
Pair: GS-ITW, Correlation: 0.9248053984161804
Pair: GS-IR, Correlation: 0.9353250261535536
Pair: GS-ICE, Correlation: 0.9284741225933022
Pair: GS-IPG, Correlation: 0.9069830908265333
Pair: GS-INTU, Correlation: 0.9389002544407647
Pair: GS-ISRG, Correlation: 0.9392478857876176
Pair: GS-IRM, Correlation: 0.9258486230170315
Pair: GS-JBHT, Correlation: 0.9072117890980966
Pair: GS-J, Correlation: 0.9297711408509823
Pair: GS-JCI, Correlation: 0.9446379555496963
Pair: GS-JPM, Correlation: 0.9631001045025412
Pair: GS-KKR, Correlation: 0.954978360241106
Pair: GS-KLAC, Correlation: 0.9398369787899932
Pair: GS-LH, Correlation: 0.9199316620661702
Pair: GS-LRCX, Correlation: 0.9334144980045757
Pair: GS-LDOS, Correlation: 0.915497516057386
Pair: GS-LEN, Correlation: 0.9484051427822014
Pair: GS-LII, Correlation: 0.9258442614815816
Pair: GS-LIN, Correlation: 0.9411756719739192
Pair: GS-LYV, Correlation: 0.9075182520102769
Pair: GS-L, Correlation: 0.9184321209882832
Pair: GS-LOW, Correlation: 0.9441905892602059
Pair: GS-MAR, Correlation: 0.9331274073228888
Pair: GS-MMC, Correlation: 0.9474463031669578
Pair: GS-MLM, Correlation: 0.9599658909880144
Pair: GS-MAS, Correlation: 0.9255354220362136
Pair: GS-MA, Correlation: 0.9058729774141849
Pair: GS-MCD, Correlation: 0.9000150937041312
Pair: GS-MET, Correlation: 0.9680275374914146
Pair: GS-MTD, Correlation: 0.9067055855939576
Pair: GS-MCHP, Correlation: 0.9238332341416695
Pair: GS-MU, Correlation: 0.9254668918515006
Pair: GS-MSFT, Correlation: 0.9382033911965728
Pair: GS-MOH, Correlation: 0.9039727459205364
Pair: GS-MPWR, Correlation: 0.9492176765502915
Pair: GS-MCO, Correlation: 0.937500972600267
Pair: GS-MS, Correlation: 0.9811436722645581
Pair: GS-MSI, Correlation: 0.9504760188723723
Pair: GS-MSCI, Correlation: 0.910490815560645
Pair: GS-NDAQ, Correlation: 0.9424395169397208
Pair: GS-NTAP, Correlation: 0.9231383126506245
Pair: GS-NWS, Correlation: 0.9057705129841456
Pair: GS-NDSN, Correlation: 0.9176774236476066
Pair: GS-NUE, Correlation: 0.9023037166523576
Pair: GS-NVR, Correlation: 0.9498043904417662
Pair: GS-NXPI, Correlation: 0.9547211423891605
Pair: GS-ORLY, Correlation: 0.9320725949664194
Pair: GS-ODFL, Correlation: 0.9324518249837198
Pair: GS-OKE, Correlation: 0.9000133595757848
Pair: GS-ORCL, Correlation: 0.9501256968975588
Pair: GS-OTIS, Correlation: 0.9143527885475767
Pair: GS-PCAR, Correlation: 0.9217958075156392
Pair: GS-PKG, Correlation: 0.9512677631672474
Pair: GS-PANW, Correlation: 0.9285684534431016
Pair: GS-PH, Correlation: 0.9569409262055973
Pair: GS-PAYX, Correlation: 0.9348294836642428
Pair: GS-PNR, Correlation: 0.9338666250250073
Pair: GS-PNC, Correlation: 0.9140817816160426
Pair: GS-PFG, Correlation: 0.9339737832687596
Pair: GS-PG, Correlation: 0.9116649429679381
Pair: GS-PGR, Correlation: 0.9354562083833737
Pair: GS-PRU, Correlation: 0.9258170724257208
Pair: GS-PEG, Correlation: 0.9207210185635247
Pair: GS-PTC, Correlation: 0.939880299998473
Pair: GS-PSA, Correlation: 0.9010949312459646
Pair: GS-PHM, Correlation: 0.9185968881043637
Pair: GS-PWR, Correlation: 0.9182452162613823
Pair: GS-QCOM, Correlation: 0.9077935802120681
Pair: GS-DGX, Correlation: 0.9171990238227797
Pair: GS-RJF, Correlation: 0.9669246525344334
Pair: GS-RTX, Correlation: 0.9120274447419414
Pair: GS-RF, Correlation: 0.9369972176863928
Pair: GS-RSG, Correlation: 0.9511127065332298
Pair: GS-ROK, Correlation: 0.9042180525579755
Pair: GS-ROL, Correlation: 0.9123621653263756
Pair: GS-ROP, Correlation: 0.9028223722597027
Pair: GS-SPGI, Correlation: 0.9205565043252377
Pair: GS-STX, Correlation: 0.9337721033373937
Pair: GS-NOW, Correlation: 0.9183066515450538
Pair: GS-SHW, Correlation: 0.9362335595428523
Pair: GS-SNA, Correlation: 0.9333237438992206
Pair: GS-SO, Correlation: 0.9207272779442127
Pair: GS-STLD, Correlation: 0.9275153500898193
Pair: GS-SYK, Correlation: 0.9325706603177217
Pair: GS-SNPS, Correlation: 0.9278319888446321
Pair: GS-TMUS, Correlation: 0.9432729705851619
Pair: GS-TEL, Correlation: 0.9412227938338915
Pair: GS-TXN, Correlation: 0.9284025476616216
Pair: GS-TPL, Correlation: 0.9354253367079994
Pair: GS-TXT, Correlation: 0.9198304859842815
Pair: GS-TMO, Correlation: 0.9055713275308017
Pair: GS-TJX, Correlation: 0.9338540527215683
Pair: GS-TSCO, Correlation: 0.9436517950671856
Pair: GS-TT, Correlation: 0.9598868663168575
Pair: GS-TDG, Correlation: 0.933648719890104
Pair: GS-TRV, Correlation: 0.9399587375259207
Pair: GS-TYL, Correlation: 0.9103558007067076
Pair: GS-UNP, Correlation: 0.9019607577100032
Pair: GS-URI, Correlation: 0.9574437994742989
Pair: GS-UNH, Correlation: 0.9262894696389213
Pair: GS-VLTO, Correlation: 0.9141484101587786
Pair: GS-VRSK, Correlation: 0.9075636337552175
Pair: GS-VMC, Correlation: 0.9435170041332487
Pair: GS-WRB, Correlation: 0.9346178355850426
Pair: GS-GWW, Correlation: 0.9173331575056177
Pair: GS-WMT, Correlation: 0.9297445972813058
Pair: GS-WM, Correlation: 0.9432491414974207
Pair: GS-WAT, Correlation: 0.9130639608913107
Pair: GS-WELL, Correlation: 0.9028258132545677
Pair: GS-WTW, Correlation: 0.9224744403826486
Pair: GS-XYL, Correlation: 0.9277627349693539
Pair: GS-YUM, Correlation: 0.9008103262009927
Pair: HIG-HCA, Correlation: 0.9592230322572042
Pair: HIG-HLT, Correlation: 0.9652632581880898
Pair: HIG-HD, Correlation: 0.9248794117258261
Pair: HIG-HWM, Correlation: 0.954741509258181
Pair: HIG-HUBB, Correlation: 0.9442322108049453
Pair: HIG-ITW, Correlation: 0.9256724260899719
Pair: HIG-IR, Correlation: 0.9475063538238815
Pair: HIG-ICE, Correlation: 0.9327022541651752
Pair: HIG-IPG, Correlation: 0.9064939736757365
Pair: HIG-INTU, Correlation: 0.9163078436012274
Pair: HIG-ISRG, Correlation: 0.9224370294151977
Pair: HIG-IRM, Correlation: 0.9425350069453248
Pair: HIG-JCI, Correlation: 0.9187029694278566
Pair: HIG-JPM, Correlation: 0.9653064053488707
Pair: HIG-KKR, Correlation: 0.9321354198474303
Pair: HIG-KLAC, Correlation: 0.9324093648028052
Pair: HIG-KR, Correlation: 0.903557747901252
Pair: HIG-LRCX, Correlation: 0.9041739231280356
Pair: HIG-LDOS, Correlation: 0.9242979402260357
Pair: HIG-LEN, Correlation: 0.9502472914025293
Pair: HIG-LII, Correlation: 0.949991155884138
Pair: HIG-LLY, Correlation: 0.9056225389773344
Pair: HIG-LIN, Correlation: 0.9346266763463769
Pair: HIG-LYV, Correlation: 0.9054095392350958
Pair: HIG-LMT, Correlation: 0.9293277006297902
Pair: HIG-L, Correlation: 0.9383651372576484
Pair: HIG-LOW, Correlation: 0.9281721527735687
Pair: HIG-MPC, Correlation: 0.9174865544204552
Pair: HIG-MAR, Correlation: 0.9696079655127608
Pair: HIG-MMC, Correlation: 0.9552173632433042
Pair: HIG-MLM, Correlation: 0.9689143949168935
Pair: HIG-MAS, Correlation: 0.9359618525836929
Pair: HIG-MA, Correlation: 0.9125461907260521
Pair: HIG-MCD, Correlation: 0.9141368378245202
Pair: HIG-MCK, Correlation: 0.9021648935330688
Pair: HIG-MRK, Correlation: 0.9305648356565289
Pair: HIG-MET, Correlation: 0.9639917831734585
Pair: HIG-MCHP, Correlation: 0.9095275077286609
Pair: HIG-MU, Correlation: 0.9089488958196084
Pair: HIG-MSFT, Correlation: 0.9213874627725603
Pair: HIG-MDLZ, Correlation: 0.9184836953438337
Pair: HIG-MPWR, Correlation: 0.9301694925751137
Pair: HIG-MCO, Correlation: 0.9253934584038412
Pair: HIG-MS, Correlation: 0.9369168421330645
Pair: HIG-MSI, Correlation: 0.9557097730807063
Pair: HIG-NDAQ, Correlation: 0.9209666017364143
Pair: HIG-NDSN, Correlation: 0.9050411733674021
Pair: HIG-NOC, Correlation: 0.9227259280178336
Pair: HIG-NVR, Correlation: 0.9607879996613823
Pair: HIG-NXPI, Correlation: 0.9460049225662586
Pair: HIG-ORLY, Correlation: 0.9509307130677985
Pair: HIG-ODFL, Correlation: 0.9099222644740625
Pair: HIG-OMC, Correlation: 0.9248208989760096
Pair: HIG-OKE, Correlation: 0.9446906739634574
Pair: HIG-ORCL, Correlation: 0.9479458758496366
Pair: HIG-OTIS, Correlation: 0.9142591364987865
Pair: HIG-PCAR, Correlation: 0.939891137322578
Pair: HIG-PKG, Correlation: 0.9664793742290307
Pair: HIG-PANW, Correlation: 0.9430706282696645
Pair: HIG-PH, Correlation: 0.9565430872779268
Pair: HIG-PAYX, Correlation: 0.937845659985238
Pair: HIG-PNR, Correlation: 0.9170091316178133
Pair: HIG-PEP, Correlation: 0.9160193140857611
Pair: HIG-PM, Correlation: 0.9211984292929543
Pair: HIG-PSX, Correlation: 0.9149143732711414
Pair: HIG-PFG, Correlation: 0.9540830336158314
Pair: HIG-PG, Correlation: 0.9150858905497884
Pair: HIG-PGR, Correlation: 0.9497274300248235
Pair: HIG-PRU, Correlation: 0.9497552019041801
Pair: HIG-PEG, Correlation: 0.9484412394040044
Pair: HIG-PTC, Correlation: 0.9330937896693748
Pair: HIG-PSA, Correlation: 0.9194659716567155
Pair: HIG-PHM, Correlation: 0.9345508552786078
Pair: HIG-PWR, Correlation: 0.9093212649487861
Pair: HIG-DGX, Correlation: 0.9053087376498656
Pair: HIG-RJF, Correlation: 0.9594719863588888
Pair: HIG-RTX, Correlation: 0.9510905732207936
Pair: HIG-REGN, Correlation: 0.9032863352029579
Pair: HIG-RF, Correlation: 0.9207512882945265
Pair: HIG-RSG, Correlation: 0.9614054364513716
Pair: HIG-ROL, Correlation: 0.9131042980540987
Pair: HIG-ROP, Correlation: 0.9130956466007228
Pair: HIG-ROST, Correlation: 0.9052843652611171
Pair: HIG-SPGI, Correlation: 0.9047307222156638
Pair: HIG-STX, Correlation: 0.9100430371420203
Pair: HIG-SRE, Correlation: 0.9159560500924281
Pair: HIG-SHW, Correlation: 0.9262330543741092
Pair: HIG-SNA, Correlation: 0.9582434641057631
Pair: HIG-SO, Correlation: 0.9395206287667451
Pair: HIG-STLD, Correlation: 0.9313029358132645
Pair: HIG-SYK, Correlation: 0.9483647826193947
Pair: HIG-SNPS, Correlation: 0.9156794607979416
Pair: HIG-TMUS, Correlation: 0.9336215058640382
Pair: HIG-TEL, Correlation: 0.9285374056025812
Pair: HIG-TXN, Correlation: 0.9106237020401361
Pair: HIG-TPL, Correlation: 0.9168925006087411
Pair: HIG-TXT, Correlation: 0.9397048382588279
Pair: HIG-TJX, Correlation: 0.9593145606805248
Pair: HIG-TSCO, Correlation: 0.9331104387901425
Pair: HIG-TT, Correlation: 0.9505710150774369
Pair: HIG-TDG, Correlation: 0.9556974403532988
Pair: HIG-TRV, Correlation: 0.9797434061349467
Pair: HIG-UNP, Correlation: 0.9026516899582724
Pair: HIG-URI, Correlation: 0.9510347617872725
Pair: HIG-UNH, Correlation: 0.9221678725932866
Pair: HIG-VLO, Correlation: 0.9401941546509804
Pair: HIG-VLTO, Correlation: 0.954802397461202
Pair: HIG-VRSK, Correlation: 0.9137076905830076
Pair: HIG-VRTX, Correlation: 0.9259509945569205
Pair: HIG-V, Correlation: 0.9125260092496558
Pair: HIG-VMC, Correlation: 0.9671372042003943
Pair: HIG-WRB, Correlation: 0.9590003170827021
Pair: HIG-GWW, Correlation: 0.9263638773303534
Pair: HIG-WAB, Correlation: 0.9056885174146485
Pair: HIG-WMT, Correlation: 0.9295404168427273
Pair: HIG-WM, Correlation: 0.9539128927403916
Pair: HIG-WELL, Correlation: 0.9492773938174562
Pair: HIG-WTW, Correlation: 0.9310065789475109
Pair: HIG-XYL, Correlation: 0.9063602141348341
Pair: HIG-YUM, Correlation: 0.916848742786156
Pair: HAS-IFF, Correlation: 0.9256902477810965
Pair: HAS-LUV, Correlation: 0.9201589585656079
Pair: HAS-TSN, Correlation: 0.9201466994172879
Pair: HAS-VLTO, Correlation: 0.931325288783272
Pair: HCA-HSY, Correlation: 0.9126681017550505
Pair: HCA-HLT, Correlation: 0.9730855070252342
Pair: HCA-HOLX, Correlation: 0.9254095039099888
Pair: HCA-HD, Correlation: 0.9543473136029561
Pair: HCA-HON, Correlation: 0.9143049446184811
Pair: HCA-HPQ, Correlation: 0.9383992664296003
Pair: HCA-HUBB, Correlation: 0.9477992808452528
Pair: HCA-IEX, Correlation: 0.9144004051256888
Pair: HCA-IDXX, Correlation: 0.9020913928634063
Pair: HCA-ITW, Correlation: 0.9483123685475078
Pair: HCA-IR, Correlation: 0.9454120380191517
Pair: HCA-ICE, Correlation: 0.9532166722840881
Pair: HCA-IPG, Correlation: 0.9350284147290538
Pair: HCA-INTU, Correlation: 0.9642127211331818
Pair: HCA-ISRG, Correlation: 0.9623477447297437
Pair: HCA-IQV, Correlation: 0.9116636579263183
Pair: HCA-IRM, Correlation: 0.924832329445589
Pair: HCA-JBHT, Correlation: 0.9309310805608542
Pair: HCA-JBL, Correlation: 0.9208669414721571
Pair: HCA-J, Correlation: 0.9441598146409017
Pair: HCA-JCI, Correlation: 0.942303524863424
Pair: HCA-JPM, Correlation: 0.9634600887931182
Pair: HCA-KDP, Correlation: 0.9060472298685058
Pair: HCA-KKR, Correlation: 0.9437875192473578
Pair: HCA-KLAC, Correlation: 0.958042369109554
Pair: HCA-KR, Correlation: 0.9072185474522406
Pair: HCA-LH, Correlation: 0.9237732486957153
Pair: HCA-LRCX, Correlation: 0.9520275316890578
Pair: HCA-LDOS, Correlation: 0.922986226730609
Pair: HCA-LEN, Correlation: 0.9574484821987614
Pair: HCA-LII, Correlation: 0.9368073726204038
Pair: HCA-LLY, Correlation: 0.9119287125022928
Pair: HCA-LIN, Correlation: 0.9769461761661198
Pair: HCA-LYV, Correlation: 0.9267440021907329
Pair: HCA-LMT, Correlation: 0.9223703332112398
Pair: HCA-L, Correlation: 0.905360991025865
Pair: HCA-LOW, Correlation: 0.9719949107185495
Pair: HCA-MPC, Correlation: 0.9005056707405583
Pair: HCA-MAR, Correlation: 0.94938056041701
Pair: HCA-MMC, Correlation: 0.981660197025828
Pair: HCA-MLM, Correlation: 0.9698436582955419
Pair: HCA-MAS, Correlation: 0.9345586694624284
Pair: HCA-MA, Correlation: 0.9478224524911555
Pair: HCA-MCD, Correlation: 0.9486798513144054
Pair: HCA-MRK, Correlation: 0.9484927484321976
Pair: HCA-MET, Correlation: 0.949699745004168
Pair: HCA-MTD, Correlation: 0.9273711659072701
Pair: HCA-MCHP, Correlation: 0.944569935256793
Pair: HCA-MU, Correlation: 0.9145948909946917
Pair: HCA-MSFT, Correlation: 0.9707273391882075
Pair: HCA-MOH, Correlation: 0.9484007590841537
Pair: HCA-MDLZ, Correlation: 0.9479612237397526
Pair: HCA-MPWR, Correlation: 0.9703870013671757
Pair: HCA-MNST, Correlation: 0.9229418847104576
Pair: HCA-MCO, Correlation: 0.9604087809045868
Pair: HCA-MS, Correlation: 0.9650460573048859
Pair: HCA-MSI, Correlation: 0.9788323488954456
Pair: HCA-MSCI, Correlation: 0.9384603633179586
Pair: HCA-NDAQ, Correlation: 0.9551575148412349
Pair: HCA-NTAP, Correlation: 0.9231605368448762
Pair: HCA-NDSN, Correlation: 0.9413915692498215
Pair: HCA-NSC, Correlation: 0.9060762752574852
Pair: HCA-NOC, Correlation: 0.9131566476413664
Pair: HCA-NUE, Correlation: 0.9286269064645956
Pair: HCA-NVR, Correlation: 0.9693463346057056
Pair: HCA-NXPI, Correlation: 0.9539023097183389
Pair: HCA-ORLY, Correlation: 0.978341694778038
Pair: HCA-ODFL, Correlation: 0.9639337011255582
Pair: HCA-ON, Correlation: 0.9257087169387871
Pair: HCA-OKE, Correlation: 0.9129079525723713
Pair: HCA-ORCL, Correlation: 0.9625531893607985
Pair: HCA-OTIS, Correlation: 0.9497471141000775
Pair: HCA-PCAR, Correlation: 0.9407090645502795
Pair: HCA-PKG, Correlation: 0.9511233438159803
Pair: HCA-PANW, Correlation: 0.95875403007626
Pair: HCA-PH, Correlation: 0.9601321689876907
Pair: HCA-PAYX, Correlation: 0.9647439938686136
Pair: HCA-PNR, Correlation: 0.9135339036496116
Pair: HCA-PEP, Correlation: 0.9455069922052728
Pair: HCA-PM, Correlation: 0.9074000478842145
Pair: HCA-PFG, Correlation: 0.9240436905274042
Pair: HCA-PG, Correlation: 0.9551106239200191
Pair: HCA-PGR, Correlation: 0.9613006943415878
Pair: HCA-PLD, Correlation: 0.9242246907459827
Pair: HCA-PEG, Correlation: 0.9516380863985385
Pair: HCA-PTC, Correlation: 0.9586146357700316
Pair: HCA-PSA, Correlation: 0.9375481785104006
Pair: HCA-PHM, Correlation: 0.9315329647387954
Pair: HCA-PWR, Correlation: 0.9310056264935064
Pair: HCA-QCOM, Correlation: 0.9130352420173624
Pair: HCA-DGX, Correlation: 0.926114882600536
Pair: HCA-RJF, Correlation: 0.9656942407224227
Pair: HCA-RTX, Correlation: 0.9274652408616835
Pair: HCA-REGN, Correlation: 0.9034280778172455
Pair: HCA-RF, Correlation: 0.913631967896155
Pair: HCA-RSG, Correlation: 0.9795483520705653
Pair: HCA-ROK, Correlation: 0.9240639865279012
Pair: HCA-ROL, Correlation: 0.9467530071945679
Pair: HCA-ROP, Correlation: 0.9434446894596054
Pair: HCA-ROST, Correlation: 0.9100244017254138
Pair: HCA-SPGI, Correlation: 0.946441102610778
Pair: HCA-CRM, Correlation: 0.9001382646886065
Pair: HCA-STX, Correlation: 0.9277295952233114
Pair: HCA-SRE, Correlation: 0.9131115090610986
Pair: HCA-NOW, Correlation: 0.945405379958722
Pair: HCA-SHW, Correlation: 0.9563916717117337
Pair: HCA-SNA, Correlation: 0.954230706764721
Pair: HCA-SO, Correlation: 0.960757526331174
Pair: HCA-STLD, Correlation: 0.9423421459985046
Pair: HCA-STE, Correlation: 0.9390584118075305
Pair: HCA-SYK, Correlation: 0.9679956339547026
Pair: HCA-SNPS, Correlation: 0.9591863140538228
Pair: HCA-TMUS, Correlation: 0.9563924282418276
Pair: HCA-TEL, Correlation: 0.9479378003391317
Pair: HCA-TDY, Correlation: 0.9098303146260006
Pair: HCA-TER, Correlation: 0.9037281843726125
Pair: HCA-TXN, Correlation: 0.9463137348869405
Pair: HCA-TPL, Correlation: 0.9244729734370577
Pair: HCA-TXT, Correlation: 0.911762544229337
Pair: HCA-TMO, Correlation: 0.9398393217876067
Pair: HCA-TJX, Correlation: 0.9746674026465475
Pair: HCA-TSCO, Correlation: 0.9771569464107642
Pair: HCA-TT, Correlation: 0.9637824470366428
Pair: HCA-TDG, Correlation: 0.964860664208431
Pair: HCA-TRV, Correlation: 0.9611955064430966
Pair: HCA-TYL, Correlation: 0.9239963529632514
Pair: HCA-UNP, Correlation: 0.9402700302637379
Pair: HCA-URI, Correlation: 0.9537852056133859
Pair: HCA-UNH, Correlation: 0.9573455830252949
Pair: HCA-VLO, Correlation: 0.9067429465495473
Pair: HCA-VLTO, Correlation: 0.940105294356219
Pair: HCA-VRSK, Correlation: 0.95352954096754
Pair: HCA-VRTX, Correlation: 0.932494989126166
Pair: HCA-V, Correlation: 0.9400420723911401
Pair: HCA-VMC, Correlation: 0.9559544180268549
Pair: HCA-WRB, Correlation: 0.9650118695179315
Pair: HCA-GWW, Correlation: 0.9446417506630507
Pair: HCA-WMT, Correlation: 0.9563720881537796
Pair: HCA-WM, Correlation: 0.9740956962605226
Pair: HCA-WAT, Correlation: 0.9188806854325101
Pair: HCA-WELL, Correlation: 0.9269395016621931
Pair: HCA-WST, Correlation: 0.9073181935014937
Pair: HCA-WTW, Correlation: 0.9504378406347535
Pair: HCA-XYL, Correlation: 0.9419831189652702
Pair: HCA-YUM, Correlation: 0.950522844640821
Pair: HSIC-HRL, Correlation: 0.9143358622154835
Pair: HSIC-JNJ, Correlation: 0.9246327282834654
Pair: HSIC-KMB, Correlation: 0.9344276367373603
Pair: HSIC-MDT, Correlation: 0.9022027555114424
Pair: HSIC-NI, Correlation: 0.9249100333732759
Pair: HSIC-PPG, Correlation: 0.9309329760613753
Pair: HSIC-PPL, Correlation: 0.9292773279016975
Pair: HSIC-O, Correlation: 0.9255071276367884
Pair: HSIC-REG, Correlation: 0.912580793526325
Pair: HSIC-SRE, Correlation: 0.9065325885654245
Pair: HSIC-SJM, Correlation: 0.9389260480504018
Pair: HSIC-TSN, Correlation: 0.902739217783159
Pair: HSIC-UDR, Correlation: 0.9052329109634332
Pair: HSIC-ULTA, Correlation: 0.9060254756183187
Pair: HSIC-ZBH, Correlation: 0.9113997942917756
Pair: HSY-HOLX, Correlation: 0.940920912121646
Pair: HSY-HD, Correlation: 0.928934623471018
Pair: HSY-HON, Correlation: 0.9199296659671563
Pair: HSY-HUM, Correlation: 0.9211906501501054
Pair: HSY-IEX, Correlation: 0.9347536276172874
Pair: HSY-ITW, Correlation: 0.9367739291857425
Pair: HSY-PODD, Correlation: 0.911972372023349
Pair: HSY-ICE, Correlation: 0.9030761609173555
Pair: HSY-IPG, Correlation: 0.9373114950034058
Pair: HSY-INTU, Correlation: 0.903371174807176
Pair: HSY-JBHT, Correlation: 0.9431562043983011
Pair: HSY-J, Correlation: 0.9176657337942924
Pair: HSY-JNJ, Correlation: 0.93127691416575
Pair: HSY-JCI, Correlation: 0.9104481678748095
Pair: HSY-KDP, Correlation: 0.9357003281060757
Pair: HSY-KEYS, Correlation: 0.9162056026815372
Pair: HSY-LHX, Correlation: 0.9101440249499864
Pair: HSY-LH, Correlation: 0.909226197642197
Pair: HSY-LIN, Correlation: 0.9199020699745392
Pair: HSY-LYV, Correlation: 0.9052007543000594
Pair: HSY-LKQ, Correlation: 0.9081893550715473
Pair: HSY-LMT, Correlation: 0.9273395279093763
Pair: HSY-LOW, Correlation: 0.9419994148784295
Pair: HSY-MMC, Correlation: 0.9461740025521568
Pair: HSY-MA, Correlation: 0.9228193639520578
Pair: HSY-MCD, Correlation: 0.9566742004110069
Pair: HSY-MRK, Correlation: 0.9381852673347283
Pair: HSY-MET, Correlation: 0.9013687454466216
Pair: HSY-MTD, Correlation: 0.9444116675068333
Pair: HSY-MCHP, Correlation: 0.9308236042281974
Pair: HSY-MSFT, Correlation: 0.908555195058144
Pair: HSY-MAA, Correlation: 0.9262061565171709
Pair: HSY-MOH, Correlation: 0.9441824300427983
Pair: HSY-MDLZ, Correlation: 0.9594877043275848
Pair: HSY-MNST, Correlation: 0.9356779814081861
Pair: HSY-MCO, Correlation: 0.9113754072643546
Pair: HSY-MS, Correlation: 0.911323944122789
Pair: HSY-MSI, Correlation: 0.9009879063953476
Pair: HSY-MSCI, Correlation: 0.9246902152025606
Pair: HSY-NDAQ, Correlation: 0.9347996810187165
Pair: HSY-NEE, Correlation: 0.9365600435299553
Pair: HSY-NDSN, Correlation: 0.941844399956998
Pair: HSY-NSC, Correlation: 0.9120831040019419
Pair: HSY-NOC, Correlation: 0.9392060028663735
Pair: HSY-ORLY, Correlation: 0.9293702653328214
Pair: HSY-ODFL, Correlation: 0.9272703803219343
Pair: HSY-ON, Correlation: 0.9207367306869547
Pair: HSY-PAYX, Correlation: 0.954173677995062
Pair: HSY-PEP, Correlation: 0.9784596629110578
Pair: HSY-POOL, Correlation: 0.908856419004833
Pair: HSY-PFG, Correlation: 0.9136639764288403
Pair: HSY-PG, Correlation: 0.9547902105574851
Pair: HSY-PLD, Correlation: 0.946327332305416
Pair: HSY-PEG, Correlation: 0.9070323649473045
Pair: HSY-PSA, Correlation: 0.93557563714279
Pair: HSY-DGX, Correlation: 0.9275703015614759
Pair: HSY-RJF, Correlation: 0.923828726051047
Pair: HSY-RSG, Correlation: 0.9190863790974223
Pair: HSY-RMD, Correlation: 0.9218824265654936
Pair: HSY-ROK, Correlation: 0.9266680196634645
Pair: HSY-ROL, Correlation: 0.916855590458821
Pair: HSY-ROP, Correlation: 0.9226401617170727
Pair: HSY-SPGI, Correlation: 0.9180474550781368
Pair: HSY-SRE, Correlation: 0.9412262906893456
Pair: HSY-SHW, Correlation: 0.9091081236522243
Pair: HSY-SNA, Correlation: 0.9065432878623778
Pair: HSY-SO, Correlation: 0.9453587936957736
Pair: HSY-SBUX, Correlation: 0.908236554316313
Pair: HSY-STE, Correlation: 0.9385513309021659
Pair: HSY-SYK, Correlation: 0.9137128277524631
Pair: HSY-SYY, Correlation: 0.9072950954858763
Pair: HSY-TMUS, Correlation: 0.9201427963800918
Pair: HSY-TEL, Correlation: 0.9207299496704854
Pair: HSY-TDY, Correlation: 0.9337115149839087
Pair: HSY-TXN, Correlation: 0.9335535780975928
Pair: HSY-TMO, Correlation: 0.9523401075463721
Pair: HSY-TJX, Correlation: 0.9025516927082836
Pair: HSY-TSCO, Correlation: 0.9300342279679068
Pair: HSY-TRV, Correlation: 0.9093680868056883
Pair: HSY-ULTA, Correlation: 0.9239312625702646
Pair: HSY-UNP, Correlation: 0.9328175069512229
Pair: HSY-UPS, Correlation: 0.929403539353909
Pair: HSY-UNH, Correlation: 0.9565461837856347
Pair: HSY-VRSK, Correlation: 0.9218821405149998
Pair: HSY-VICI, Correlation: 0.9055384750523168
Pair: HSY-V, Correlation: 0.9212525929525889
Pair: HSY-WRB, Correlation: 0.9335316763600585
Pair: HSY-WM, Correlation: 0.9381045747667003
Pair: HSY-WAT, Correlation: 0.9131865827253952
Pair: HSY-WEC, Correlation: 0.9253199723848581
Pair: HSY-WST, Correlation: 0.9150439338008748
Pair: HSY-WTW, Correlation: 0.9228354167767201
Pair: HSY-XEL, Correlation: 0.9204577266207021
Pair: HSY-YUM, Correlation: 0.948900903674206
Pair: HES-MPC, Correlation: 0.9100229788657165
Pair: HES-MCK, Correlation: 0.9069672973746705
Pair: HES-NUE, Correlation: 0.9207432128110387
Pair: HES-PWR, Correlation: 0.9049386813212059
Pair: HES-STLD, Correlation: 0.9056892761018553
Pair: HPE-L, Correlation: 0.9249812617984342
Pair: HPE-MAR, Correlation: 0.9116893899990787
Pair: HPE-OKE, Correlation: 0.9328208703992995
Pair: HPE-PRU, Correlation: 0.9017259661687014
Pair: HLT-HD, Correlation: 0.9404460904812864
Pair: HLT-HWM, Correlation: 0.9069272345329962
Pair: HLT-HPQ, Correlation: 0.923873103286438
Pair: HLT-HUBB, Correlation: 0.950077109761679
Pair: HLT-ITW, Correlation: 0.9386732201218396
Pair: HLT-IR, Correlation: 0.9800416586575514
Pair: HLT-ICE, Correlation: 0.949888182315322
Pair: HLT-INTU, Correlation: 0.9554532113208525
Pair: HLT-ISRG, Correlation: 0.9582695499202081
Pair: HLT-IRM, Correlation: 0.9285217775632251
Pair: HLT-JBL, Correlation: 0.9339236286091627
Pair: HLT-J, Correlation: 0.9396012545226595
Pair: HLT-JPM, Correlation: 0.9737437339861301
Pair: HLT-KKR, Correlation: 0.960946114815003
Pair: HLT-KLAC, Correlation: 0.9677613191260601
Pair: HLT-LRCX, Correlation: 0.9577532882099635
Pair: HLT-LDOS, Correlation: 0.9316655656011239
Pair: HLT-LEN, Correlation: 0.9542620228596405
Pair: HLT-LII, Correlation: 0.943169533799233
Pair: HLT-LLY, Correlation: 0.9256777218359752
Pair: HLT-LIN, Correlation: 0.9762046389026082
Pair: HLT-LYV, Correlation: 0.9155587942782176
Pair: HLT-LMT, Correlation: 0.916564988605016
Pair: HLT-L, Correlation: 0.9350190456055778
Pair: HLT-LOW, Correlation: 0.9459870942078649
Pair: HLT-MAR, Correlation: 0.9729164982157776
Pair: HLT-MMC, Correlation: 0.9720513484323715
Pair: HLT-MLM, Correlation: 0.9718633549034086
Pair: HLT-MAS, Correlation: 0.9360232692910739
Pair: HLT-MA, Correlation: 0.9419924344999742
Pair: HLT-MCD, Correlation: 0.9269556915754381
Pair: HLT-MRK, Correlation: 0.9254562830303076
Pair: HLT-MET, Correlation: 0.9448450026441821
Pair: HLT-MCHP, Correlation: 0.924539772179477
Pair: HLT-MU, Correlation: 0.9236886957167337
Pair: HLT-MSFT, Correlation: 0.9675553466987019
Pair: HLT-MOH, Correlation: 0.9168887181090803
Pair: HLT-MDLZ, Correlation: 0.9224634887117296
Pair: HLT-MPWR, Correlation: 0.9644911827893812
Pair: HLT-MCO, Correlation: 0.950497686559198
Pair: HLT-MS, Correlation: 0.9466526033427163
Pair: HLT-MSI, Correlation: 0.9823421199787885
Pair: HLT-MSCI, Correlation: 0.9036895869675519
Pair: HLT-NDAQ, Correlation: 0.9262126310628952
Pair: HLT-NTAP, Correlation: 0.9416385129601855
Pair: HLT-NDSN, Correlation: 0.9208943093998498
Pair: HLT-NUE, Correlation: 0.9031057839897861
Pair: HLT-NVR, Correlation: 0.9766609321864712
Pair: HLT-NXPI, Correlation: 0.9464639572913265
Pair: HLT-ORLY, Correlation: 0.9569539409189964
Pair: HLT-ODFL, Correlation: 0.9481637267621684
Pair: HLT-OKE, Correlation: 0.9148636190298645
Pair: HLT-ORCL, Correlation: 0.9593996427578042
Pair: HLT-OTIS, Correlation: 0.9169411713237324
Pair: HLT-PCAR, Correlation: 0.9501919437842542
Pair: HLT-PKG, Correlation: 0.9708306693076969
Pair: HLT-PANW, Correlation: 0.9605047886757759
Pair: HLT-PH, Correlation: 0.9747227389198083
Pair: HLT-PAYX, Correlation: 0.9492463448557426
Pair: HLT-PEP, Correlation: 0.9112245633570984
Pair: HLT-PFG, Correlation: 0.90664794806511
Pair: HLT-PG, Correlation: 0.9367785321340508
Pair: HLT-PGR, Correlation: 0.9728178730041208
Pair: HLT-PEG, Correlation: 0.9508612397051803
Pair: HLT-PTC, Correlation: 0.9529730958548364
Pair: HLT-PHM, Correlation: 0.9464430024444114
Pair: HLT-PWR, Correlation: 0.9452398521264291
Pair: HLT-QCOM, Correlation: 0.9087056798721929
Pair: HLT-RJF, Correlation: 0.9615787670509341
Pair: HLT-RTX, Correlation: 0.917601793560425
Pair: HLT-RSG, Correlation: 0.9812301335240634
Pair: HLT-ROL, Correlation: 0.9273116684050152
Pair: HLT-ROP, Correlation: 0.9354703630464717
Pair: HLT-SPGI, Correlation: 0.9285333882229622
Pair: HLT-STX, Correlation: 0.9217111226339095
Pair: HLT-SRE, Correlation: 0.9166361943851289
Pair: HLT-NOW, Correlation: 0.9495142166199289
Pair: HLT-SHW, Correlation: 0.9470048874710139
Pair: HLT-SNA, Correlation: 0.9387989707415767
Pair: HLT-SO, Correlation: 0.9490638584970957
Pair: HLT-STLD, Correlation: 0.9311153031057489
Pair: HLT-STE, Correlation: 0.9091364015494011
Pair: HLT-SYK, Correlation: 0.9668967591789558
Pair: HLT-SNPS, Correlation: 0.9614505170965161
Pair: HLT-TMUS, Correlation: 0.9460879835984424
Pair: HLT-TEL, Correlation: 0.9383264420593985
Pair: HLT-TXN, Correlation: 0.9240488741768038
Pair: HLT-TPL, Correlation: 0.9172482564461524
Pair: HLT-TJX, Correlation: 0.9704681358812082
Pair: HLT-TSCO, Correlation: 0.9513508304417962
Pair: HLT-TT, Correlation: 0.9732560070931084
Pair: HLT-TDG, Correlation: 0.9763125668879383
Pair: HLT-TRV, Correlation: 0.9701068228320351
Pair: HLT-UNP, Correlation: 0.9290114546947718
Pair: HLT-URI, Correlation: 0.9646685223218431
Pair: HLT-UNH, Correlation: 0.9335017619026428
Pair: HLT-VRSK, Correlation: 0.944238142913997
Pair: HLT-VRTX, Correlation: 0.9287496975494799
Pair: HLT-V, Correlation: 0.9329207860902964
Pair: HLT-VMC, Correlation: 0.9575329349518578
Pair: HLT-WRB, Correlation: 0.9685546982173652
Pair: HLT-GWW, Correlation: 0.9543501608071767
Pair: HLT-WMT, Correlation: 0.961930144075163
Pair: HLT-WM, Correlation: 0.9726507607473914
Pair: HLT-WELL, Correlation: 0.9182368412054057
Pair: HLT-WTW, Correlation: 0.9484675872220485
Pair: HLT-XYL, Correlation: 0.9249817249663415
Pair: HLT-YUM, Correlation: 0.9295121061653303
Pair: HOLX-HD, Correlation: 0.9697564157607512
Pair: HOLX-HON, Correlation: 0.9651901233889427
Pair: HOLX-HUM, Correlation: 0.9375655157509379
Pair: HOLX-IEX, Correlation: 0.9649436951866881
Pair: HOLX-IDXX, Correlation: 0.9478157799864678
Pair: HOLX-ITW, Correlation: 0.9711076930724369
Pair: HOLX-PODD, Correlation: 0.9270602448198941
Pair: HOLX-ICE, Correlation: 0.956937274811643
Pair: HOLX-IPG, Correlation: 0.9405222341415448
Pair: HOLX-INTU, Correlation: 0.9337642832381127
Pair: HOLX-ISRG, Correlation: 0.9170483202402661
Pair: HOLX-IQV, Correlation: 0.9477646738665376
Pair: HOLX-JBHT, Correlation: 0.9524720170346102
Pair: HOLX-JKHY, Correlation: 0.9350740021560432
Pair: HOLX-J, Correlation: 0.9234881868109489
Pair: HOLX-JNJ, Correlation: 0.9579779778808691
Pair: HOLX-JCI, Correlation: 0.9222464401398183
Pair: HOLX-JPM, Correlation: 0.9197632702670611
Pair: HOLX-KDP, Correlation: 0.960258259266329
Pair: HOLX-KEYS, Correlation: 0.9366111398073673
Pair: HOLX-KMB, Correlation: 0.917680944236983
Pair: HOLX-KR, Correlation: 0.905755037818102
Pair: HOLX-LHX, Correlation: 0.936801664095256
Pair: HOLX-LH, Correlation: 0.9596363859807225
Pair: HOLX-LDOS, Correlation: 0.9182273921645838
Pair: HOLX-LIN, Correlation: 0.9179490520684721
Pair: HOLX-LYV, Correlation: 0.9340282017902172
Pair: HOLX-LMT, Correlation: 0.9450814057234516
Pair: HOLX-LOW, Correlation: 0.9669969827267657
Pair: HOLX-LULU, Correlation: 0.9162586280042488
Pair: HOLX-MAR, Correlation: 0.9011663883670465
Pair: HOLX-MMC, Correlation: 0.9475128535718519
Pair: HOLX-MLM, Correlation: 0.920633840878626
Pair: HOLX-MAS, Correlation: 0.9526673228194105
Pair: HOLX-MA, Correlation: 0.9564242988899557
Pair: HOLX-MKC, Correlation: 0.9304444326497949
Pair: HOLX-MCD, Correlation: 0.9609520337483014
Pair: HOLX-MRK, Correlation: 0.919076968727935
Pair: HOLX-MET, Correlation: 0.900187205420903
Pair: HOLX-MTD, Correlation: 0.9726108721136175
Pair: HOLX-MCHP, Correlation: 0.9614042074590043
Pair: HOLX-MSFT, Correlation: 0.9268364148746012
Pair: HOLX-MAA, Correlation: 0.94343534208916
Pair: HOLX-MOH, Correlation: 0.9407633145050427
Pair: HOLX-MDLZ, Correlation: 0.9679641393509354
Pair: HOLX-MNST, Correlation: 0.9718360718145035
Pair: HOLX-MCO, Correlation: 0.9539899976260735
Pair: HOLX-MS, Correlation: 0.9327337549063397
Pair: HOLX-MSI, Correlation: 0.9008267796027525
Pair: HOLX-MSCI, Correlation: 0.9500974660977071
Pair: HOLX-NDAQ, Correlation: 0.9645085491148788
Pair: HOLX-NEE, Correlation: 0.9653105172036013
Pair: HOLX-NKE, Correlation: 0.9208902203969273
Pair: HOLX-NI, Correlation: 0.9005026596504684
Pair: HOLX-NDSN, Correlation: 0.9679605008208966
Pair: HOLX-NSC, Correlation: 0.951794719877479
Pair: HOLX-NOC, Correlation: 0.9403455067194846
Pair: HOLX-NVR, Correlation: 0.9227511031324847
Pair: HOLX-NXPI, Correlation: 0.9447966462591088
Pair: HOLX-ORLY, Correlation: 0.9219461264561151
Pair: HOLX-ODFL, Correlation: 0.9264613624056249
Pair: HOLX-PKG, Correlation: 0.9275327952296432
Pair: HOLX-PAYX, Correlation: 0.9615299100868095
Pair: HOLX-PEP, Correlation: 0.9714957467199961
Pair: HOLX-PNC, Correlation: 0.9116052236106809
Pair: HOLX-POOL, Correlation: 0.9505386416844974
Pair: HOLX-PFG, Correlation: 0.9031212903378161
Pair: HOLX-PG, Correlation: 0.9620331126446955
Pair: HOLX-PLD, Correlation: 0.9585035732991167
Pair: HOLX-PEG, Correlation: 0.9419391423161255
Pair: HOLX-PTC, Correlation: 0.9287983776924572
Pair: HOLX-PSA, Correlation: 0.9399858801684259
Pair: HOLX-DGX, Correlation: 0.970773004801541
Pair: HOLX-RJF, Correlation: 0.9225069213029155
Pair: HOLX-O, Correlation: 0.9143998248873905
Pair: HOLX-RF, Correlation: 0.914497693025077
Pair: HOLX-RSG, Correlation: 0.9246818158056253
Pair: HOLX-RMD, Correlation: 0.9519985077404118
Pair: HOLX-RVTY, Correlation: 0.932064710853594
Pair: HOLX-ROK, Correlation: 0.9617385777728397
Pair: HOLX-ROL, Correlation: 0.9617934257292728
Pair: HOLX-ROP, Correlation: 0.9624189652925361
Pair: HOLX-ROST, Correlation: 0.9239550907614578
Pair: HOLX-SPGI, Correlation: 0.9614882536781972
Pair: HOLX-CRM, Correlation: 0.9288493317733096
Pair: HOLX-SBAC, Correlation: 0.9032439010989538
Pair: HOLX-SRE, Correlation: 0.9352445370807714
Pair: HOLX-NOW, Correlation: 0.9186703362856924
Pair: HOLX-SHW, Correlation: 0.9582442928550908
Pair: HOLX-SNA, Correlation: 0.9281338755518102
Pair: HOLX-SO, Correlation: 0.9403470806807164
Pair: HOLX-SBUX, Correlation: 0.9578230058592613
Pair: HOLX-STE, Correlation: 0.9677752087592464
Pair: HOLX-SYK, Correlation: 0.9535757095304151
Pair: HOLX-SYY, Correlation: 0.9374957542904304
Pair: HOLX-TMUS, Correlation: 0.9567143646119762
Pair: HOLX-TTWO, Correlation: 0.9038036401100799
Pair: HOLX-TEL, Correlation: 0.9617083939459095
Pair: HOLX-TDY, Correlation: 0.9563660572300234
Pair: HOLX-TER, Correlation: 0.937908762158295
Pair: HOLX-TXN, Correlation: 0.9725250606632732
Pair: HOLX-TMO, Correlation: 0.9731355893799732
Pair: HOLX-TJX, Correlation: 0.9253740053677604
Pair: HOLX-TSCO, Correlation: 0.9272913137036185
Pair: HOLX-TRV, Correlation: 0.9271142143210418
Pair: HOLX-TYL, Correlation: 0.9554187209911355
Pair: HOLX-UDR, Correlation: 0.902616530595963
Pair: HOLX-ULTA, Correlation: 0.9259753762563259
Pair: HOLX-UNP, Correlation: 0.9586717185865832
Pair: HOLX-UPS, Correlation: 0.9404691386777422
Pair: HOLX-UNH, Correlation: 0.9574449175573548
Pair: HOLX-VRSN, Correlation: 0.9166884914832357
Pair: HOLX-VRSK, Correlation: 0.952857327653393
Pair: HOLX-VICI, Correlation: 0.9007431847070934
Pair: HOLX-V, Correlation: 0.9603417816585745
Pair: HOLX-VMC, Correlation: 0.937788758239017
Pair: HOLX-WRB, Correlation: 0.9267158627468373
Pair: HOLX-WMT, Correlation: 0.913615238376765
Pair: HOLX-WM, Correlation: 0.9461482372028837
Pair: HOLX-WAT, Correlation: 0.9526854818771188
Pair: HOLX-WEC, Correlation: 0.949112496164274
Pair: HOLX-WST, Correlation: 0.9446512479857061
Pair: HOLX-WTW, Correlation: 0.9573238964476629
Pair: HOLX-XEL, Correlation: 0.9500948339312029
Pair: HOLX-XYL, Correlation: 0.9330797974840681
Pair: HOLX-YUM, Correlation: 0.9603532387443094
Pair: HOLX-ZTS, Correlation: 0.9482663493822583
Pair: HD-HON, Correlation: 0.9739393609851135
Pair: HD-HPQ, Correlation: 0.9077920943231378
Pair: HD-HUM, Correlation: 0.9176960774089202
Pair: HD-HBAN, Correlation: 0.9005299221371857
Pair: HD-IEX, Correlation: 0.9791762163271873
Pair: HD-IDXX, Correlation: 0.9588050080890554
Pair: HD-ITW, Correlation: 0.9877583362864951
Pair: HD-PODD, Correlation: 0.9145248219738453
Pair: HD-ICE, Correlation: 0.9886134054356633
Pair: HD-IPG, Correlation: 0.9352595764943805
Pair: HD-INTU, Correlation: 0.9754464555169382
Pair: HD-ISRG, Correlation: 0.9634028773763036
Pair: HD-INVH, Correlation: 0.9235601376934643
Pair: HD-IQV, Correlation: 0.97260424315729
Pair: HD-JBHT, Correlation: 0.9710324183075734
Pair: HD-JKHY, Correlation: 0.9475352826317942
Pair: HD-J, Correlation: 0.9591988204106351
Pair: HD-JNJ, Correlation: 0.9592406162077304
Pair: HD-JCI, Correlation: 0.9407300003329496
Pair: HD-JPM, Correlation: 0.964544388490898
Pair: HD-KDP, Correlation: 0.9673325146450853
Pair: HD-KEYS, Correlation: 0.9467630421974818
Pair: HD-KMB, Correlation: 0.9115839555145887
Pair: HD-KLAC, Correlation: 0.9011865225040582
Pair: HD-KR, Correlation: 0.9000696233920329
Pair: HD-LHX, Correlation: 0.9605433205830716
Pair: HD-LH, Correlation: 0.9755694698236688
Pair: HD-LRCX, Correlation: 0.9263455924737548
Pair: HD-LDOS, Correlation: 0.9540693707461539
Pair: HD-LEN, Correlation: 0.9209302631582187
Pair: HD-LII, Correlation: 0.935206327185948
Pair: HD-LIN, Correlation: 0.9507237602926079
Pair: HD-LYV, Correlation: 0.9667876577221632
Pair: HD-LMT, Correlation: 0.9572902061040968
Pair: HD-LOW, Correlation: 0.9886608855461819
Pair: HD-LULU, Correlation: 0.9283506352080735
Pair: HD-MAR, Correlation: 0.9420608473083153
Pair: HD-MMC, Correlation: 0.9739715260119192
Pair: HD-MLM, Correlation: 0.9537974263822001
Pair: HD-MAS, Correlation: 0.981704350511851
Pair: HD-MA, Correlation: 0.9825807132330887
Pair: HD-MKC, Correlation: 0.9230658392373741
Pair: HD-MCD, Correlation: 0.978392150141706
Pair: HD-MRK, Correlation: 0.9323878654793064
Pair: HD-MET, Correlation: 0.9256035617796285
Pair: HD-MTD, Correlation: 0.972620715167854
Pair: HD-MCHP, Correlation: 0.9729301025703029
Pair: HD-MU, Correlation: 0.9312742865509758
Pair: HD-MSFT, Correlation: 0.962196015628027
Pair: HD-MAA, Correlation: 0.9522809246075162
Pair: HD-MOH, Correlation: 0.958850980761535
Pair: HD-MDLZ, Correlation: 0.9688300102391035
Pair: HD-MPWR, Correlation: 0.9297474490902806
Pair: HD-MNST, Correlation: 0.9648895800587856
Pair: HD-MCO, Correlation: 0.9880532441279462
Pair: HD-MS, Correlation: 0.955937850280883
Pair: HD-MSI, Correlation: 0.9433645037912626
Pair: HD-MSCI, Correlation: 0.9693621516217348
Pair: HD-NDAQ, Correlation: 0.9870232579058918
Pair: HD-NFLX, Correlation: 0.9239532893978817
Pair: HD-NEE, Correlation: 0.966284072475822
Pair: HD-NKE, Correlation: 0.9061141473586386
Pair: HD-NI, Correlation: 0.9140357937285379
Pair: HD-NDSN, Correlation: 0.988124859214497
Pair: HD-NSC, Correlation: 0.972516277644219
Pair: HD-NOC, Correlation: 0.9550161639484481
Pair: HD-NVR, Correlation: 0.9629388061028054
Pair: HD-NXPI, Correlation: 0.9611161210145784
Pair: HD-ORLY, Correlation: 0.9445511777636957
Pair: HD-ODFL, Correlation: 0.9556267065146158
Pair: HD-ORCL, Correlation: 0.9082671731065549
Pair: HD-OTIS, Correlation: 0.9001450998853232
Pair: HD-PKG, Correlation: 0.9592050450473609
Pair: HD-PH, Correlation: 0.9135799936782644
Pair: HD-PAYX, Correlation: 0.9823647105046651
Pair: HD-PEP, Correlation: 0.973186478819717
Pair: HD-PNC, Correlation: 0.9459181659541254
Pair: HD-POOL, Correlation: 0.965349210508055
Pair: HD-PFG, Correlation: 0.9165304767447829
Pair: HD-PG, Correlation: 0.9776236336123626
Pair: HD-PGR, Correlation: 0.9205297274212597
Pair: HD-PLD, Correlation: 0.9753327370191152
Pair: HD-PEG, Correlation: 0.9687491178598922
Pair: HD-PTC, Correlation: 0.9596079045116397
Pair: HD-PSA, Correlation: 0.951911432691445
Pair: HD-QCOM, Correlation: 0.9217847422847802
Pair: HD-DGX, Correlation: 0.9784119082774119
Pair: HD-RJF, Correlation: 0.9551589595082249
Pair: HD-RTX, Correlation: 0.90817270724751
Pair: HD-O, Correlation: 0.9137111252635749
Pair: HD-RF, Correlation: 0.9440607785792804
Pair: HD-RSG, Correlation: 0.9608919770645444
Pair: HD-RMD, Correlation: 0.9581104139306253
Pair: HD-RVTY, Correlation: 0.9270255641307549
Pair: HD-ROK, Correlation: 0.9739705662157863
Pair: HD-ROL, Correlation: 0.9761231230227027
Pair: HD-ROP, Correlation: 0.9871444760726432
Pair: HD-ROST, Correlation: 0.9527889852384815
Pair: HD-SPGI, Correlation: 0.9909013504994238
Pair: HD-CRM, Correlation: 0.9636547962356821
Pair: HD-SBAC, Correlation: 0.9055678951707854
Pair: HD-STX, Correlation: 0.9350937842765884
Pair: HD-SRE, Correlation: 0.9429577002517623
Pair: HD-NOW, Correlation: 0.9654161030610926
Pair: HD-SHW, Correlation: 0.9928798705795039
Pair: HD-SNA, Correlation: 0.939165966282567
Pair: HD-SO, Correlation: 0.9581952242212136
Pair: HD-SBUX, Correlation: 0.9477981901158496
Pair: HD-STE, Correlation: 0.983467349007515
Pair: HD-SYK, Correlation: 0.9792907307027889
Pair: HD-SNPS, Correlation: 0.9246720151615699
Pair: HD-SYY, Correlation: 0.9466526870189476
Pair: HD-TMUS, Correlation: 0.9703935470855155
Pair: HD-TTWO, Correlation: 0.9247596951403737
Pair: HD-TGT, Correlation: 0.900684694606821
Pair: HD-TEL, Correlation: 0.9814951984136776
Pair: HD-TDY, Correlation: 0.9720672232713841
Pair: HD-TER, Correlation: 0.9519625938279391
Pair: HD-TXN, Correlation: 0.9870170302105701
Pair: HD-TMO, Correlation: 0.9802568645143402
Pair: HD-TJX, Correlation: 0.958299410151004
Pair: HD-TSCO, Correlation: 0.9483624074865613
Pair: HD-TT, Correlation: 0.9175604093851351
Pair: HD-TDG, Correlation: 0.9254606879677956
Pair: HD-TRV, Correlation: 0.9512773669383695
Pair: HD-TYL, Correlation: 0.9785125126791681
Pair: HD-UDR, Correlation: 0.91375208149593
Pair: HD-ULTA, Correlation: 0.9134504005596004
Pair: HD-UNP, Correlation: 0.9833265980363165
Pair: HD-UPS, Correlation: 0.9294004158801334
Pair: HD-UNH, Correlation: 0.9747188807224875
Pair: HD-VRSN, Correlation: 0.9265067798931226
Pair: HD-VRSK, Correlation: 0.9797998937146831
Pair: HD-VRTX, Correlation: 0.9240364573868474
Pair: HD-V, Correlation: 0.9836010881006246
Pair: HD-VMC, Correlation: 0.9621390111284482
Pair: HD-WRB, Correlation: 0.9556946937339535
Pair: HD-WMT, Correlation: 0.9536103077337321
Pair: HD-WM, Correlation: 0.9773745120473352
Pair: HD-WAT, Correlation: 0.9677440083520268
Pair: HD-WEC, Correlation: 0.9513549623504942
Pair: HD-WST, Correlation: 0.9525433258897569
Pair: HD-WTW, Correlation: 0.9821532702007005
Pair: HD-WDAY, Correlation: 0.9210748934759164
Pair: HD-XEL, Correlation: 0.9462506707183737
Pair: HD-XYL, Correlation: 0.9699787504557014
Pair: HD-YUM, Correlation: 0.9764892398680226
Pair: HD-ZTS, Correlation: 0.9734487859234182
Pair: HON-HUM, Correlation: 0.9397518135899251
Pair: HON-HBAN, Correlation: 0.935731139628768
Pair: HON-IEX, Correlation: 0.9889089870252119
Pair: HON-IDXX, Correlation: 0.9495067981973222
Pair: HON-ITW, Correlation: 0.977407362225592
Pair: HON-PODD, Correlation: 0.9181127548708119
Pair: HON-ICE, Correlation: 0.9694409347650425
Pair: HON-IPG, Correlation: 0.9352692773460362
Pair: HON-INTU, Correlation: 0.9309973912183189
Pair: HON-ISRG, Correlation: 0.9246440873170774
Pair: HON-IQV, Correlation: 0.9699793413004291
Pair: HON-JBHT, Correlation: 0.9548711708941023
Pair: HON-JKHY, Correlation: 0.9612693074351621
Pair: HON-J, Correlation: 0.9286475809871017
Pair: HON-JNJ, Correlation: 0.9780502950178895
Pair: HON-JCI, Correlation: 0.9253846411462596
Pair: HON-JPM, Correlation: 0.9454815806351948
Pair: HON-KDP, Correlation: 0.9713873242196226
Pair: HON-KEYS, Correlation: 0.946969824127141
Pair: HON-KMB, Correlation: 0.9328629450740654
Pair: HON-LHX, Correlation: 0.97149628126598
Pair: HON-LH, Correlation: 0.9667159378073458
Pair: HON-LDOS, Correlation: 0.9329995958644206
Pair: HON-LII, Correlation: 0.90663499511878
Pair: HON-LYV, Correlation: 0.9577799705214637
Pair: HON-LMT, Correlation: 0.9567348568105003
Pair: HON-LOW, Correlation: 0.9496591587214412
Pair: HON-LULU, Correlation: 0.9020337187896478
Pair: HON-MAR, Correlation: 0.9257785775551357
Pair: HON-MMC, Correlation: 0.9366042011428356
Pair: HON-MLM, Correlation: 0.9141875757339406
Pair: HON-MAS, Correlation: 0.9591263382897136
Pair: HON-MA, Correlation: 0.9656944480193732
Pair: HON-MKC, Correlation: 0.9444036004832846
Pair: HON-MCD, Correlation: 0.9632962050814049
Pair: HON-MDT, Correlation: 0.9168440943957227
Pair: HON-MRK, Correlation: 0.9105689402038559
Pair: HON-MET, Correlation: 0.9027734942716511
Pair: HON-MTD, Correlation: 0.9660565028151611
Pair: HON-MGM, Correlation: 0.9152506991831296
Pair: HON-MCHP, Correlation: 0.9612274802254313
Pair: HON-MU, Correlation: 0.9152195875789846
Pair: HON-MSFT, Correlation: 0.90803105487985
Pair: HON-MAA, Correlation: 0.9435795051955521
Pair: HON-MOH, Correlation: 0.9187263656978228
Pair: HON-MDLZ, Correlation: 0.9616987626196749
Pair: HON-MNST, Correlation: 0.9647345462402069
Pair: HON-MCO, Correlation: 0.9582466894678884
Pair: HON-MS, Correlation: 0.9240901653564448
Pair: HON-MSCI, Correlation: 0.9342665503068168
Pair: HON-NDAQ, Correlation: 0.960891554224456
Pair: HON-NFLX, Correlation: 0.9094047860369838
Pair: HON-NEE, Correlation: 0.9655218866753169
Pair: HON-NKE, Correlation: 0.9330203549129754
Pair: HON-NI, Correlation: 0.934224649439503
Pair: HON-NDSN, Correlation: 0.96967981433058
Pair: HON-NSC, Correlation: 0.976593695659451
Pair: HON-NTRS, Correlation: 0.9172021572124834
Pair: HON-NOC, Correlation: 0.9537374736221794
Pair: HON-NVR, Correlation: 0.9222998788269194
Pair: HON-NXPI, Correlation: 0.9398375803515151
Pair: HON-PKG, Correlation: 0.9431662323438159
Pair: HON-PAYX, Correlation: 0.9609959390679993
Pair: HON-PEP, Correlation: 0.9624512681551304
Pair: HON-PNW, Correlation: 0.9119154299683644
Pair: HON-PNC, Correlation: 0.9572739383865958
Pair: HON-POOL, Correlation: 0.9422644587126777
Pair: HON-PPG, Correlation: 0.9400365969852099
Pair: HON-PFG, Correlation: 0.9101019290712759
Pair: HON-PG, Correlation: 0.949461163479392
Pair: HON-PLD, Correlation: 0.9503974227112181
Pair: HON-PEG, Correlation: 0.9581049131311233
Pair: HON-PTC, Correlation: 0.9449501768181237
Pair: HON-PSA, Correlation: 0.9323915973336878
Pair: HON-DGX, Correlation: 0.9682637477680287
Pair: HON-RJF, Correlation: 0.9242343346510054
Pair: HON-RTX, Correlation: 0.9151751041109021
Pair: HON-O, Correlation: 0.9458823360657024
Pair: HON-RF, Correlation: 0.9467155345295394
Pair: HON-RSG, Correlation: 0.9153968068644459
Pair: HON-RMD, Correlation: 0.9471638938712066
Pair: HON-RVTY, Correlation: 0.9404522287979694
Pair: HON-ROK, Correlation: 0.9680704494196849
Pair: HON-ROL, Correlation: 0.9627710978198603
Pair: HON-ROP, Correlation: 0.977317441496218
Pair: HON-ROST, Correlation: 0.965180303970939
Pair: HON-SPGI, Correlation: 0.9639478959058921
Pair: HON-CRM, Correlation: 0.9476852285089663
Pair: HON-SBAC, Correlation: 0.9227635419435509
Pair: HON-STX, Correlation: 0.9007483246764262
Pair: HON-SRE, Correlation: 0.9545764626435651
Pair: HON-NOW, Correlation: 0.9149137015569468
Pair: HON-SHW, Correlation: 0.9641287164455479
Pair: HON-SNA, Correlation: 0.9267080967198044
Pair: HON-SO, Correlation: 0.928878984887899
Pair: HON-SBUX, Correlation: 0.9720651361658152
Pair: HON-STE, Correlation: 0.966089107973588
Pair: HON-SYK, Correlation: 0.9639794424000708
Pair: HON-SYY, Correlation: 0.9744286993337562
Pair: HON-TMUS, Correlation: 0.9460119694900307
Pair: HON-TROW, Correlation: 0.9154756530186611
Pair: HON-TTWO, Correlation: 0.9436621122686747
Pair: HON-TEL, Correlation: 0.9776299000776129
Pair: HON-TDY, Correlation: 0.9714764426566269
Pair: HON-TER, Correlation: 0.9286729007243563
Pair: HON-TXN, Correlation: 0.9794771558110711
Pair: HON-TMO, Correlation: 0.9564771696645816
Pair: HON-TJX, Correlation: 0.9312575876710388
Pair: HON-TRV, Correlation: 0.938923355722504
Pair: HON-TYL, Correlation: 0.9603806678943129
Pair: HON-UDR, Correlation: 0.9386507076037091
Pair: HON-ULTA, Correlation: 0.9260261233097545
Pair: HON-UNP, Correlation: 0.9752218466176195
Pair: HON-UPS, Correlation: 0.9313957752164156
Pair: HON-UNH, Correlation: 0.9477386115428459
Pair: HON-VRSN, Correlation: 0.9515592705869887
Pair: HON-VRSK, Correlation: 0.951549600578521
Pair: HON-V, Correlation: 0.9762560128255459
Pair: HON-VMC, Correlation: 0.9381139569746562
Pair: HON-WRB, Correlation: 0.9193123728319417
Pair: HON-WMT, Correlation: 0.9148067267557644
Pair: HON-WM, Correlation: 0.9471208448280833
Pair: HON-WAT, Correlation: 0.9709020680161206
Pair: HON-WEC, Correlation: 0.9659990680782339
Pair: HON-WST, Correlation: 0.9190974383183379
Pair: HON-WTW, Correlation: 0.9695703668308469
Pair: HON-WDAY, Correlation: 0.9243971982443766
Pair: HON-XEL, Correlation: 0.9647865465384589
Pair: HON-XYL, Correlation: 0.9730496922356194
Pair: HON-YUM, Correlation: 0.9765172508852284
Pair: HON-ZBRA, Correlation: 0.9014361321408091
Pair: HON-ZTS, Correlation: 0.9592042553162776
Pair: HRL-JKHY, Correlation: 0.9248313667954441
Pair: HRL-JNJ, Correlation: 0.9139944543569404
Pair: HRL-KMB, Correlation: 0.9204634609810788
Pair: HRL-MKC, Correlation: 0.9373865953434215
Pair: HRL-MDT, Correlation: 0.9364320682570583
Pair: HRL-PFE, Correlation: 0.9140184935815884
Pair: HRL-O, Correlation: 0.9263867568995581
Pair: HRL-SBAC, Correlation: 0.9139104816091771
Pair: HRL-TFX, Correlation: 0.906461276684703
Pair: HRL-TSN, Correlation: 0.9214427692653899
Pair: HRL-VRSN, Correlation: 0.9102741278912567
Pair: HRL-VZ, Correlation: 0.9071123031713421
Pair: HRL-WEC, Correlation: 0.9205741283751873
Pair: HRL-XEL, Correlation: 0.9233136311204015
Pair: HRL-ZBH, Correlation: 0.9002799098106592
Pair: HWM-HUBB, Correlation: 0.932802397962381
Pair: HWM-IBM, Correlation: 0.9521812845645594
Pair: HWM-IR, Correlation: 0.9244211453032124
Pair: HWM-IRM, Correlation: 0.9708530527386372
Pair: HWM-JPM, Correlation: 0.9018278103879968
Pair: HWM-KMI, Correlation: 0.9011687333011
Pair: HWM-KKR, Correlation: 0.9218345051522855
Pair: HWM-LEN, Correlation: 0.9109251777008672
Pair: HWM-LII, Correlation: 0.9095364797719053
Pair: HWM-LLY, Correlation: 0.9348000745316031
Pair: HWM-L, Correlation: 0.9060222536336406
Pair: HWM-MAR, Correlation: 0.9030527287938678
Pair: HWM-MSI, Correlation: 0.9070832078309996
Pair: HWM-NVDA, Correlation: 0.9587771907007002
Pair: HWM-NVR, Correlation: 0.9056782483711803
Pair: HWM-OKE, Correlation: 0.9011060485064966
Pair: HWM-ORCL, Correlation: 0.9271606570795264
Pair: HWM-PKG, Correlation: 0.9184779353837123
Pair: HWM-PANW, Correlation: 0.9021747764663944
Pair: HWM-PH, Correlation: 0.9442489484436254
Pair: HWM-PGR, Correlation: 0.920228632244532
Pair: HWM-PHM, Correlation: 0.9418866133939254
Pair: HWM-PWR, Correlation: 0.9311893874425466
Pair: HWM-TRGP, Correlation: 0.9604509632463264
Pair: HWM-TT, Correlation: 0.9337670405998469
Pair: HWM-TDG, Correlation: 0.9244040212330772
Pair: HWM-TRV, Correlation: 0.9151941856329678
Pair: HWM-URI, Correlation: 0.940163875560052
Pair: HWM-VLTO, Correlation: 0.9432926396018184
Pair: HWM-VST, Correlation: 0.9179200906586303
Pair: HWM-GWW, Correlation: 0.9136898470434904
Pair: HWM-WAB, Correlation: 0.9366443604565138
Pair: HWM-WMB, Correlation: 0.937484908054731
Pair: HPQ-ITW, Correlation: 0.901980680358981
Pair: HPQ-ICE, Correlation: 0.9027305034556846
Pair: HPQ-INTU, Correlation: 0.9159580890843847
Pair: HPQ-ISRG, Correlation: 0.9035444961357001
Pair: HPQ-IQV, Correlation: 0.9281974019094935
Pair: HPQ-J, Correlation: 0.9248771892909493
Pair: HPQ-JPM, Correlation: 0.9102001065753489
Pair: HPQ-LH, Correlation: 0.9176263077951878
Pair: HPQ-LIN, Correlation: 0.9056418326815046
Pair: HPQ-LYV, Correlation: 0.9305221090757383
Pair: HPQ-LOW, Correlation: 0.9245654478999121
Pair: HPQ-MMC, Correlation: 0.9153771639230827
Pair: HPQ-MLM, Correlation: 0.9029545626438862
Pair: HPQ-MET, Correlation: 0.9216501797779038
Pair: HPQ-MTD, Correlation: 0.9128488498472126
Pair: HPQ-MCHP, Correlation: 0.9187342201239876
Pair: HPQ-MU, Correlation: 0.9061454931769265
Pair: HPQ-MSFT, Correlation: 0.9165362277343009
Pair: HPQ-MOH, Correlation: 0.9099444434332573
Pair: HPQ-MPWR, Correlation: 0.904237951262601
Pair: HPQ-MCO, Correlation: 0.9049748586911699
Pair: HPQ-MS, Correlation: 0.9520707576026972
Pair: HPQ-MSCI, Correlation: 0.9092066389036584
Pair: HPQ-NDAQ, Correlation: 0.9193383953480339
Pair: HPQ-NTAP, Correlation: 0.909411553020528
Pair: HPQ-NDSN, Correlation: 0.9006427908886876
Pair: HPQ-NSC, Correlation: 0.9062265354474335
Pair: HPQ-NXPI, Correlation: 0.9188902024911465
Pair: HPQ-ODFL, Correlation: 0.9114966957113619
Pair: HPQ-PKG, Correlation: 0.9010716754701789
Pair: HPQ-PAYX, Correlation: 0.9292210705287788
Pair: HPQ-PLD, Correlation: 0.9140215204140766
Pair: HPQ-PEG, Correlation: 0.9037011827064173
Pair: HPQ-PTC, Correlation: 0.9142428241084216
Pair: HPQ-DGX, Correlation: 0.9092088045469171
Pair: HPQ-RJF, Correlation: 0.9291793786739668
Pair: HPQ-RF, Correlation: 0.929003406250464
Pair: HPQ-RSG, Correlation: 0.9174083542492433
Pair: HPQ-SPGI, Correlation: 0.907721396717337
Pair: HPQ-NOW, Correlation: 0.9007247115003287
Pair: HPQ-SHW, Correlation: 0.9041118544129011
Pair: HPQ-STE, Correlation: 0.9158293925263307
Pair: HPQ-SYK, Correlation: 0.906023016546895
Pair: HPQ-TMUS, Correlation: 0.9071488096395047
Pair: HPQ-TEL, Correlation: 0.9178098396471969
Pair: HPQ-TER, Correlation: 0.9053465628156624
Pair: HPQ-TXN, Correlation: 0.9267420191461551
Pair: HPQ-TMO, Correlation: 0.9156129099475279
Pair: HPQ-UNP, Correlation: 0.9051712390516504
Pair: HPQ-UNH, Correlation: 0.930608369517627
Pair: HPQ-WRB, Correlation: 0.9014280674521222
Pair: HPQ-WM, Correlation: 0.9215998592953122
Pair: HPQ-WAT, Correlation: 0.9038360753792397
Pair: HPQ-XYL, Correlation: 0.9276921476530183
Pair: HPQ-ZTS, Correlation: 0.9062248770466127
Pair: HUBB-IR, Correlation: 0.975425353376729
Pair: HUBB-INTU, Correlation: 0.9115919958978993
Pair: HUBB-ISRG, Correlation: 0.9154654731359616
Pair: HUBB-IRM, Correlation: 0.9635385185168907
Pair: HUBB-JBL, Correlation: 0.9690042489779724
Pair: HUBB-JPM, Correlation: 0.9237030906367216
Pair: HUBB-KKR, Correlation: 0.9559174307992804
Pair: HUBB-KLAC, Correlation: 0.9735742676477682
Pair: HUBB-LRCX, Correlation: 0.9412370063137329
Pair: HUBB-LEN, Correlation: 0.9740787007320285
Pair: HUBB-LII, Correlation: 0.9270696751040118
Pair: HUBB-LLY, Correlation: 0.970721580051193
Pair: HUBB-LIN, Correlation: 0.965054123178765
Pair: HUBB-L, Correlation: 0.9246419065500926
Pair: HUBB-LOW, Correlation: 0.9128830479884872
Pair: HUBB-MPC, Correlation: 0.9513572455624064
Pair: HUBB-MAR, Correlation: 0.9279531291715599
Pair: HUBB-MMC, Correlation: 0.9482309001678222
Pair: HUBB-MLM, Correlation: 0.9570890522783803
Pair: HUBB-MCK, Correlation: 0.9530225096840815
Pair: HUBB-MRK, Correlation: 0.9336499775495297
Pair: HUBB-MET, Correlation: 0.9196621049633721
Pair: HUBB-MSFT, Correlation: 0.9405511333930745
Pair: HUBB-MPWR, Correlation: 0.9529371211998197
Pair: HUBB-MCO, Correlation: 0.9006767597871523
Pair: HUBB-MS, Correlation: 0.9085735746131276
Pair: HUBB-MSI, Correlation: 0.9677923762269599
Pair: HUBB-NUE, Correlation: 0.9333950002625765
Pair: HUBB-NVDA, Correlation: 0.9097373767954063
Pair: HUBB-NVR, Correlation: 0.9496241861253009
Pair: HUBB-NXPI, Correlation: 0.906067730177366
Pair: HUBB-ORLY, Correlation: 0.9674917138426656
Pair: HUBB-ODFL, Correlation: 0.9386777750396001
Pair: HUBB-ON, Correlation: 0.9110736113348938
Pair: HUBB-OKE, Correlation: 0.9097658131371259
Pair: HUBB-ORCL, Correlation: 0.9770521457382889
Pair: HUBB-PCAR, Correlation: 0.9824159179217867
Pair: HUBB-PKG, Correlation: 0.9217866628556878
Pair: HUBB-PANW, Correlation: 0.9700703131290245
Pair: HUBB-PH, Correlation: 0.9843408918071722
Pair: HUBB-PAYX, Correlation: 0.9002597260529067
Pair: HUBB-PNR, Correlation: 0.9158383414612876
Pair: HUBB-PG, Correlation: 0.9034548123708338
Pair: HUBB-PGR, Correlation: 0.9684235890758746
Pair: HUBB-PTC, Correlation: 0.9223092622353558
Pair: HUBB-PHM, Correlation: 0.9747454588834723
Pair: HUBB-PWR, Correlation: 0.9799672489443452
Pair: HUBB-RJF, Correlation: 0.9358080354467757
Pair: HUBB-RSG, Correlation: 0.95785661558251
Pair: HUBB-SNA, Correlation: 0.9283831342123575
Pair: HUBB-SO, Correlation: 0.9247354029468999
Pair: HUBB-STLD, Correlation: 0.961061169364957
Pair: HUBB-SYK, Correlation: 0.9148199665858089
Pair: HUBB-SNPS, Correlation: 0.9638426382616211
Pair: HUBB-TMUS, Correlation: 0.918099772406459
Pair: HUBB-TPL, Correlation: 0.9138346537925667
Pair: HUBB-TJX, Correlation: 0.9526501280924927
Pair: HUBB-TSCO, Correlation: 0.9507268373289485
Pair: HUBB-TT, Correlation: 0.9728209821835708
Pair: HUBB-TDG, Correlation: 0.9721364617118156
Pair: HUBB-TRV, Correlation: 0.9262750800383497
Pair: HUBB-URI, Correlation: 0.983622527418524
Pair: HUBB-VLO, Correlation: 0.911692431209925
Pair: HUBB-VRSK, Correlation: 0.907460440150632
Pair: HUBB-VRTX, Correlation: 0.9365328733916755
Pair: HUBB-VMC, Correlation: 0.9287848180570418
Pair: HUBB-WRB, Correlation: 0.9419242688136032
Pair: HUBB-GWW, Correlation: 0.9890641281127333
Pair: HUBB-WMT, Correlation: 0.9402104295568007
Pair: HUBB-WM, Correlation: 0.9318234181413951
Pair: HUM-IEX, Correlation: 0.9536313098933176
Pair: HUM-IDXX, Correlation: 0.90659147025044
Pair: HUM-ITW, Correlation: 0.9266733795184385
Pair: HUM-PODD, Correlation: 0.9192105599582604
Pair: HUM-JBHT, Correlation: 0.9310270941300803
Pair: HUM-JKHY, Correlation: 0.9512660228021367
Pair: HUM-JNJ, Correlation: 0.9554521778854947
Pair: HUM-KDP, Correlation: 0.952172425284494
Pair: HUM-LHX, Correlation: 0.9279968620540743
Pair: HUM-LH, Correlation: 0.9189355172855576
Pair: HUM-LMT, Correlation: 0.9179265617560893
Pair: HUM-MA, Correlation: 0.9073407562302753
Pair: HUM-MKC, Correlation: 0.9319875360070579
Pair: HUM-MCD, Correlation: 0.9282258187682705
Pair: HUM-MTD, Correlation: 0.9309344173702722
Pair: HUM-MCHP, Correlation: 0.9140270808806256
Pair: HUM-MAA, Correlation: 0.9113499245019632
Pair: HUM-MOH, Correlation: 0.9045053917935935
Pair: HUM-MDLZ, Correlation: 0.9222901305619878
Pair: HUM-MNST, Correlation: 0.9418990558685972
Pair: HUM-NDAQ, Correlation: 0.911862011995731
Pair: HUM-NEE, Correlation: 0.9415352141031428
Pair: HUM-NKE, Correlation: 0.9264027818316526
Pair: HUM-NDSN, Correlation: 0.9309178647209622
Pair: HUM-NSC, Correlation: 0.9255581320523351
Pair: HUM-NOC, Correlation: 0.9335459266995901
Pair: HUM-PAYX, Correlation: 0.9096053798793554
Pair: HUM-PEP, Correlation: 0.9411676798075813
Pair: HUM-PFE, Correlation: 0.9062749222785333
Pair: HUM-POOL, Correlation: 0.9123249822563668
Pair: HUM-PLD, Correlation: 0.9247321348030383
Pair: HUM-DGX, Correlation: 0.9350585238126065
Pair: HUM-O, Correlation: 0.9022189084204721
Pair: HUM-RMD, Correlation: 0.9177275465837248
Pair: HUM-RVTY, Correlation: 0.9222768322162994
Pair: HUM-ROK, Correlation: 0.933998106725998
Pair: HUM-ROL, Correlation: 0.9154581713246276
Pair: HUM-ROP, Correlation: 0.9231600017811348
Pair: HUM-SPGI, Correlation: 0.9098637665148398
Pair: HUM-SBAC, Correlation: 0.9265843565032851
Pair: HUM-SRE, Correlation: 0.9085131353495679
Pair: HUM-SBUX, Correlation: 0.9328748676376506
Pair: HUM-STE, Correlation: 0.9291887791902445
Pair: HUM-SYY, Correlation: 0.9321184200582843
Pair: HUM-TTWO, Correlation: 0.9041263888969205
Pair: HUM-TEL, Correlation: 0.9081233171970139
Pair: HUM-TDY, Correlation: 0.9397098520374058
Pair: HUM-TXN, Correlation: 0.9264963951607598
Pair: HUM-TMO, Correlation: 0.9292876903873832
Pair: HUM-ULTA, Correlation: 0.9041860574408803
Pair: HUM-UNP, Correlation: 0.9250060475873798
Pair: HUM-UPS, Correlation: 0.9294655905020583
Pair: HUM-UNH, Correlation: 0.929335671754623
Pair: HUM-VRSN, Correlation: 0.9415955135659212
Pair: HUM-V, Correlation: 0.9204872005318263
Pair: HUM-WAT, Correlation: 0.911760165540249
Pair: HUM-WEC, Correlation: 0.9450301822503071
Pair: HUM-XEL, Correlation: 0.9552386266302161
Pair: HUM-YUM, Correlation: 0.9233119250902304
Pair: HUM-ZTS, Correlation: 0.9085343670826503
Pair: HBAN-HII, Correlation: 0.9099193342856312
Pair: HBAN-IEX, Correlation: 0.912671127643989
Pair: HBAN-ICE, Correlation: 0.9052236431766458
Pair: HBAN-JNJ, Correlation: 0.9184790519402684
Pair: HBAN-JPM, Correlation: 0.9110440216436829
Pair: HBAN-KEY, Correlation: 0.9576777642989476
Pair: HBAN-LHX, Correlation: 0.9175630774032888
Pair: HBAN-LH, Correlation: 0.9058093508973375
Pair: HBAN-LYV, Correlation: 0.9121596056289921
Pair: HBAN-LMT, Correlation: 0.9018962983906662
Pair: HBAN-LYB, Correlation: 0.91316591843862
Pair: HBAN-MTB, Correlation: 0.9618019376478225
Pair: HBAN-MAR, Correlation: 0.9065654693088909
Pair: HBAN-MAS, Correlation: 0.9023645467397998
Pair: HBAN-MGM, Correlation: 0.9158980085442189
Pair: HBAN-NI, Correlation: 0.9208651392732341
Pair: HBAN-NSC, Correlation: 0.9046269542909605
Pair: HBAN-NTRS, Correlation: 0.9607239181668132
Pair: HBAN-NOC, Correlation: 0.9069751456257217
Pair: HBAN-PKG, Correlation: 0.9150619183162839
Pair: HBAN-PNC, Correlation: 0.972115021378847
Pair: HBAN-PPG, Correlation: 0.900858656621651
Pair: HBAN-PFG, Correlation: 0.9121163664043113
Pair: HBAN-PRU, Correlation: 0.9483554794456012
Pair: HBAN-PEG, Correlation: 0.9102029277075432
Pair: HBAN-DGX, Correlation: 0.9056815768598525
Pair: HBAN-RTX, Correlation: 0.92275070948109
Pair: HBAN-RF, Correlation: 0.9602562101754892
Pair: HBAN-ROST, Correlation: 0.9107472486002673
Pair: HBAN-SRE, Correlation: 0.906468198105353
Pair: HBAN-STT, Correlation: 0.9134666963235301
Pair: HBAN-SYY, Correlation: 0.9374742212149298
Pair: HBAN-TEL, Correlation: 0.9307911364860125
Pair: HBAN-TXN, Correlation: 0.9002632742576425
Pair: HBAN-TXT, Correlation: 0.9238133555586728
Pair: HBAN-TRV, Correlation: 0.9185580543322166
Pair: HBAN-TFC, Correlation: 0.9412861813809262
Pair: HBAN-USB, Correlation: 0.9458913159387804
Pair: HBAN-UDR, Correlation: 0.917952182934846
Pair: HBAN-UNP, Correlation: 0.9035242192736284
Pair: HBAN-WAT, Correlation: 0.9212606109911414
Pair: HBAN-WY, Correlation: 0.9009552777416249
Pair: HII-JNJ, Correlation: 0.9009980987282782
Pair: HII-LMT, Correlation: 0.9196734804472989
Pair: HII-NI, Correlation: 0.942806250163048
Pair: HII-NOC, Correlation: 0.9245280433506168
Pair: HII-PNW, Correlation: 0.9283417107511381
Pair: HII-ROST, Correlation: 0.9001367639570004
Pair: HII-SYY, Correlation: 0.9099094201793616
Pair: IBM-IR, Correlation: 0.9161598115635
Pair: IEX-IDXX, Correlation: 0.9580162929593724
Pair: IEX-ITW, Correlation: 0.9825010425676933
Pair: IEX-PODD, Correlation: 0.9333344226010621
Pair: IEX-ICE, Correlation: 0.9662469362714763
Pair: IEX-IPG, Correlation: 0.9290931824949976
Pair: IEX-INTU, Correlation: 0.9425082958705683
Pair: IEX-ISRG, Correlation: 0.9261688316709082
Pair: IEX-IQV, Correlation: 0.9728653795566575
Pair: IEX-JBHT, Correlation: 0.9656361546882093
Pair: IEX-JKHY, Correlation: 0.9653074483751244
Pair: IEX-J, Correlation: 0.9386110915031547
Pair: IEX-JNJ, Correlation: 0.9745829266642914
Pair: IEX-JCI, Correlation: 0.9151486950871698
Pair: IEX-JPM, Correlation: 0.9385319290781812
Pair: IEX-KDP, Correlation: 0.976192734449707
Pair: IEX-KEYS, Correlation: 0.9604359070109455
Pair: IEX-KMB, Correlation: 0.9128325688932943
Pair: IEX-LHX, Correlation: 0.9720550290240103
Pair: IEX-LH, Correlation: 0.9663574875074932
Pair: IEX-LDOS, Correlation: 0.9331423566038163
Pair: IEX-LIN, Correlation: 0.9147646746782556
Pair: IEX-LYV, Correlation: 0.9563481082682028
Pair: IEX-LMT, Correlation: 0.9561658869944445
Pair: IEX-LOW, Correlation: 0.9589040575069623
Pair: IEX-LULU, Correlation: 0.925802932814059
Pair: IEX-MAR, Correlation: 0.9239721512283279
Pair: IEX-MMC, Correlation: 0.9456594829174205
Pair: IEX-MLM, Correlation: 0.915395997021018
Pair: IEX-MAS, Correlation: 0.954525743235934
Pair: IEX-MA, Correlation: 0.9732711801026226
Pair: IEX-MKC, Correlation: 0.942990298535291
Pair: IEX-MCD, Correlation: 0.9754933121922891
Pair: IEX-MRK, Correlation: 0.9227172930775572
Pair: IEX-MET, Correlation: 0.901768269813856
Pair: IEX-MTD, Correlation: 0.9734947337949196
Pair: IEX-MGM, Correlation: 0.9053840299334681
Pair: IEX-MCHP, Correlation: 0.9702236341383917
Pair: IEX-MU, Correlation: 0.9123257301361155
Pair: IEX-MSFT, Correlation: 0.921337536807312
Pair: IEX-MAA, Correlation: 0.9415639116973267
Pair: IEX-MOH, Correlation: 0.9416823281127298
Pair: IEX-MDLZ, Correlation: 0.9610997279301434
Pair: IEX-MNST, Correlation: 0.9665592213196059
Pair: IEX-MCO, Correlation: 0.9604416909945287
Pair: IEX-MS, Correlation: 0.9293942603165755
Pair: IEX-MSI, Correlation: 0.9004463959715722
Pair: IEX-MSCI, Correlation: 0.9523319301345916
Pair: IEX-NDAQ, Correlation: 0.9676604667247997
Pair: IEX-NFLX, Correlation: 0.9068481461843302
Pair: IEX-NEE, Correlation: 0.9707213246930854
Pair: IEX-NKE, Correlation: 0.9309825018471618
Pair: IEX-NI, Correlation: 0.9164165755493241
Pair: IEX-NDSN, Correlation: 0.9819128785735263
Pair: IEX-NSC, Correlation: 0.9803108718612081
Pair: IEX-NOC, Correlation: 0.9601739700294942
Pair: IEX-NVR, Correlation: 0.9251882419089319
Pair: IEX-NXPI, Correlation: 0.930649297632661
Pair: IEX-ORLY, Correlation: 0.9070723634692983
Pair: IEX-ODFL, Correlation: 0.9236082252686109
Pair: IEX-PKG, Correlation: 0.9344471278232398
Pair: IEX-PAYX, Correlation: 0.9655728960276179
Pair: IEX-PEP, Correlation: 0.9708511758296108
Pair: IEX-PNC, Correlation: 0.9417066061437466
Pair: IEX-POOL, Correlation: 0.9538527624244878
Pair: IEX-PPG, Correlation: 0.9166076899631642
Pair: IEX-PFG, Correlation: 0.9096604044174815
Pair: IEX-PG, Correlation: 0.9560092752335295
Pair: IEX-PLD, Correlation: 0.9636524882654486
Pair: IEX-PEG, Correlation: 0.9487619746792663
Pair: IEX-PTC, Correlation: 0.9491110898775227
Pair: IEX-PSA, Correlation: 0.9232956775517018
Pair: IEX-DGX, Correlation: 0.9709389005801478
Pair: IEX-RJF, Correlation: 0.931654274847362
Pair: IEX-RTX, Correlation: 0.9008245073784278
Pair: IEX-O, Correlation: 0.9279912142602416
Pair: IEX-RF, Correlation: 0.9443811962812562
Pair: IEX-RSG, Correlation: 0.9246379679758301
Pair: IEX-RMD, Correlation: 0.9551990174385881
Pair: IEX-RVTY, Correlation: 0.941083527629829
Pair: IEX-ROK, Correlation: 0.9768912701230342
Pair: IEX-ROL, Correlation: 0.9677367237281574
Pair: IEX-ROP, Correlation: 0.9804948162030206
Pair: IEX-ROST, Correlation: 0.9533429319816819
Pair: IEX-SPGI, Correlation: 0.9702795904389495
Pair: IEX-CRM, Correlation: 0.9492318155934879
Pair: IEX-SBAC, Correlation: 0.9277129160356579
Pair: IEX-SRE, Correlation: 0.9462190025495408
Pair: IEX-NOW, Correlation: 0.9136996358958807
Pair: IEX-SHW, Correlation: 0.964042385323048
Pair: IEX-SNA, Correlation: 0.9156555214590112
Pair: IEX-SO, Correlation: 0.926443136081756
Pair: IEX-SBUX, Correlation: 0.9643973111452225
Pair: IEX-STE, Correlation: 0.9731698562895932
Pair: IEX-SYK, Correlation: 0.9653898196457661
Pair: IEX-SYY, Correlation: 0.9693071105245856
Pair: IEX-TMUS, Correlation: 0.9484952743342849
Pair: IEX-TROW, Correlation: 0.9097842872787626
Pair: IEX-TTWO, Correlation: 0.9417780947675896
Pair: IEX-TEL, Correlation: 0.9739746166047676
Pair: IEX-TDY, Correlation: 0.9800940224298009
Pair: IEX-TER, Correlation: 0.9326468925373546
Pair: IEX-TXN, Correlation: 0.9822174164933767
Pair: IEX-TMO, Correlation: 0.9707765229361481
Pair: IEX-TJX, Correlation: 0.9275924179972268
Pair: IEX-TSCO, Correlation: 0.903553087275285
Pair: IEX-TRV, Correlation: 0.9302210492772995
Pair: IEX-TYL, Correlation: 0.9524681352072835
Pair: IEX-UDR, Correlation: 0.9179090229170127
Pair: IEX-ULTA, Correlation: 0.9286018820337948
Pair: IEX-UNP, Correlation: 0.9791309130598028
Pair: IEX-UPS, Correlation: 0.9390407554466863
Pair: IEX-UNH, Correlation: 0.9603515346477267
Pair: IEX-VRSN, Correlation: 0.9577697183805971
Pair: IEX-VRSK, Correlation: 0.9556984649100111
Pair: IEX-VICI, Correlation: 0.9104080135821896
Pair: IEX-V, Correlation: 0.9797919453124736
Pair: IEX-VMC, Correlation: 0.93350503451425
Pair: IEX-WRB, Correlation: 0.9284595814450516
Pair: IEX-WMT, Correlation: 0.9164726185438802
Pair: IEX-WM, Correlation: 0.9557519594289898
Pair: IEX-WAT, Correlation: 0.9705679201156396
Pair: IEX-WEC, Correlation: 0.9646381394367405
Pair: IEX-WST, Correlation: 0.9356814697123421
Pair: IEX-WTW, Correlation: 0.9714100556011737
Pair: IEX-WDAY, Correlation: 0.9242046176220153
Pair: IEX-XEL, Correlation: 0.9645184804418475
Pair: IEX-XYL, Correlation: 0.9692690851170402
Pair: IEX-YUM, Correlation: 0.9812670287741261
Pair: IEX-ZTS, Correlation: 0.9661416138868354
Pair: IDXX-ITW, Correlation: 0.9519338487778872
Pair: IDXX-PODD, Correlation: 0.9453956214369658
Pair: IDXX-ICE, Correlation: 0.9483777862991773
Pair: IDXX-IPG, Correlation: 0.9085206711785115
Pair: IDXX-INTU, Correlation: 0.958178051545272
Pair: IDXX-ISRG, Correlation: 0.9357878859833209
Pair: IDXX-IQV, Correlation: 0.9705131717880929
Pair: IDXX-JBHT, Correlation: 0.9406324527192951
Pair: IDXX-JKHY, Correlation: 0.9013773915638802
Pair: IDXX-J, Correlation: 0.9453711486620564
Pair: IDXX-JNJ, Correlation: 0.916027490014227
Pair: IDXX-JCI, Correlation: 0.9121737009012661
Pair: IDXX-JPM, Correlation: 0.914615501967399
Pair: IDXX-KDP, Correlation: 0.9407431867201475
Pair: IDXX-KEYS, Correlation: 0.9434272426481742
Pair: IDXX-LHX, Correlation: 0.9233394118756405
Pair: IDXX-LH, Correlation: 0.9706373109870694
Pair: IDXX-LRCX, Correlation: 0.911922768901327
Pair: IDXX-LIN, Correlation: 0.9108984733236067
Pair: IDXX-LYV, Correlation: 0.9366610818287795
Pair: IDXX-LOW, Correlation: 0.951382877259661
Pair: IDXX-LULU, Correlation: 0.9573214375219933
Pair: IDXX-MMC, Correlation: 0.9187936822632283
Pair: IDXX-MAS, Correlation: 0.9264586764043958
Pair: IDXX-MA, Correlation: 0.9491660752939914
Pair: IDXX-MKC, Correlation: 0.9050259776329946
Pair: IDXX-MCD, Correlation: 0.9377166236831439
Pair: IDXX-MTD, Correlation: 0.973056981516611
Pair: IDXX-MCHP, Correlation: 0.962410563235928
Pair: IDXX-MU, Correlation: 0.904306182833683
Pair: IDXX-MSFT, Correlation: 0.9349908717542385
Pair: IDXX-MAA, Correlation: 0.9398089198917259
Pair: IDXX-MOH, Correlation: 0.9342436627435611
Pair: IDXX-MDLZ, Correlation: 0.9166554067329935
Pair: IDXX-MNST, Correlation: 0.9237483623422882
Pair: IDXX-MCO, Correlation: 0.9574397012303058
Pair: IDXX-MS, Correlation: 0.9291406275316699
Pair: IDXX-MSCI, Correlation: 0.9773198490992897
Pair: IDXX-NDAQ, Correlation: 0.9553683188077113
Pair: IDXX-NFLX, Correlation: 0.9107657683591309
Pair: IDXX-NEE, Correlation: 0.9508927595146862
Pair: IDXX-NKE, Correlation: 0.9441999301406698
Pair: IDXX-NDSN, Correlation: 0.9611056080436423
Pair: IDXX-NSC, Correlation: 0.9651497747611573
Pair: IDXX-NVR, Correlation: 0.9058594419075733
Pair: IDXX-NXPI, Correlation: 0.920479782254322
Pair: IDXX-ODFL, Correlation: 0.9284681140038783
Pair: IDXX-PAYX, Correlation: 0.936570008257843
Pair: IDXX-PEP, Correlation: 0.9245344162825969
Pair: IDXX-PNC, Correlation: 0.910988934418363
Pair: IDXX-POOL, Correlation: 0.9844888771912356
Pair: IDXX-PG, Correlation: 0.9386910283859754
Pair: IDXX-PLD, Correlation: 0.967192518623538
Pair: IDXX-PEG, Correlation: 0.9000207579769204
Pair: IDXX-PTC, Correlation: 0.9292152773806214
Pair: IDXX-QCOM, Correlation: 0.911638916018195
Pair: IDXX-DGX, Correlation: 0.9472142627401277
Pair: IDXX-RMD, Correlation: 0.9650341368567592
Pair: IDXX-RVTY, Correlation: 0.9469049685104636
Pair: IDXX-ROK, Correlation: 0.9692134674057671
Pair: IDXX-ROL, Correlation: 0.938661453280908
Pair: IDXX-ROP, Correlation: 0.9538712965249769
Pair: IDXX-ROST, Correlation: 0.9072374082357384
Pair: IDXX-SPGI, Correlation: 0.9690867392428544
Pair: IDXX-CRM, Correlation: 0.9525308500107253
Pair: IDXX-SBAC, Correlation: 0.9071716541124664
Pair: IDXX-NOW, Correlation: 0.9314002930260735
Pair: IDXX-SHW, Correlation: 0.9572334854964879
Pair: IDXX-SBUX, Correlation: 0.9383514177792606
Pair: IDXX-STE, Correlation: 0.966845488041432
Pair: IDXX-SYK, Correlation: 0.9395115671681906
Pair: IDXX-SYY, Correlation: 0.909464447263571
Pair: IDXX-TMUS, Correlation: 0.9264062472849197
Pair: IDXX-TROW, Correlation: 0.9419823254430647
Pair: IDXX-TTWO, Correlation: 0.927358912137155
Pair: IDXX-TGT, Correlation: 0.9497601037712566
Pair: IDXX-TEL, Correlation: 0.953829280863636
Pair: IDXX-TDY, Correlation: 0.966884165130697
Pair: IDXX-TER, Correlation: 0.9714214144890112
Pair: IDXX-TXN, Correlation: 0.9685293618316717
Pair: IDXX-TMO, Correlation: 0.9686699472583191
Pair: IDXX-TRMB, Correlation: 0.9258323934642331
Pair: IDXX-TYL, Correlation: 0.9531665597666574
Pair: IDXX-UNP, Correlation: 0.9515922927334408
Pair: IDXX-UPS, Correlation: 0.9414487067209956
Pair: IDXX-UNH, Correlation: 0.928690021878685
Pair: IDXX-VRSN, Correlation: 0.920900762218093
Pair: IDXX-VRSK, Correlation: 0.9391136663116536
Pair: IDXX-V, Correlation: 0.9488745620473915
Pair: IDXX-WM, Correlation: 0.9242570817140116
Pair: IDXX-WAT, Correlation: 0.9521831183818001
Pair: IDXX-WEC, Correlation: 0.9093297241026076
Pair: IDXX-WST, Correlation: 0.9772094915369753
Pair: IDXX-WTW, Correlation: 0.939360438048013
Pair: IDXX-WDAY, Correlation: 0.9411658192835175
Pair: IDXX-XEL, Correlation: 0.9148286248481153
Pair: IDXX-XYL, Correlation: 0.9520022985503104
Pair: IDXX-YUM, Correlation: 0.9434856163295736
Pair: IDXX-ZBRA, Correlation: 0.9499220122644666
Pair: IDXX-ZTS, Correlation: 0.9752109582694515
Pair: ITW-IR, Correlation: 0.9203320428581155
Pair: ITW-PODD, Correlation: 0.9063716749806682
Pair: ITW-ICE, Correlation: 0.9787475526364341
Pair: ITW-IPG, Correlation: 0.940993883078992
Pair: ITW-INTU, Correlation: 0.9607750953582219
Pair: ITW-ISRG, Correlation: 0.95078697823788
Pair: ITW-IQV, Correlation: 0.9529780701814486
Pair: ITW-JBHT, Correlation: 0.9712686501906544
Pair: ITW-JKHY, Correlation: 0.9412390400044733
Pair: ITW-J, Correlation: 0.9480654037073039
Pair: ITW-JNJ, Correlation: 0.9644537479411299
Pair: ITW-JCI, Correlation: 0.9351899618556917
Pair: ITW-JPM, Correlation: 0.96414098287855
Pair: ITW-KDP, Correlation: 0.9546459718588177
Pair: ITW-KEYS, Correlation: 0.923480005850743
Pair: ITW-KMB, Correlation: 0.9136161931286263
Pair: ITW-LHX, Correlation: 0.9522409155452739
Pair: ITW-LH, Correlation: 0.9670580489491468
Pair: ITW-LRCX, Correlation: 0.9240332688953482
Pair: ITW-LDOS, Correlation: 0.9488204813862454
Pair: ITW-LEN, Correlation: 0.9227889979426146
Pair: ITW-LII, Correlation: 0.9349755215438424
Pair: ITW-LIN, Correlation: 0.9509441012065554
Pair: ITW-LYV, Correlation: 0.9506327446505505
Pair: ITW-LMT, Correlation: 0.9666706054169661
Pair: ITW-LOW, Correlation: 0.9772023218587333
Pair: ITW-LULU, Correlation: 0.9195590092077549
Pair: ITW-MAR, Correlation: 0.9522366507428137
Pair: ITW-MMC, Correlation: 0.9746473985069581
Pair: ITW-MLM, Correlation: 0.9582921546724935
Pair: ITW-MAS, Correlation: 0.9796840142932056
Pair: ITW-MA, Correlation: 0.9796153410288234
Pair: ITW-MKC, Correlation: 0.9118932982285235
Pair: ITW-MCD, Correlation: 0.9816004644996076
Pair: ITW-MRK, Correlation: 0.9455435646558066
Pair: ITW-MET, Correlation: 0.9261069837549429
Pair: ITW-MTD, Correlation: 0.9681621316901596
Pair: ITW-MGM, Correlation: 0.9144600135989271
Pair: ITW-MCHP, Correlation: 0.9844349149022656
Pair: ITW-MU, Correlation: 0.9307780851716567
Pair: ITW-MSFT, Correlation: 0.9549596527312825
Pair: ITW-MAA, Correlation: 0.9306321544752871
Pair: ITW-MOH, Correlation: 0.9488069399266555
Pair: ITW-MDLZ, Correlation: 0.9755341974429458
Pair: ITW-MPWR, Correlation: 0.9200859245127241
Pair: ITW-MNST, Correlation: 0.9768216718880568
Pair: ITW-MCO, Correlation: 0.977486281124957
Pair: ITW-MS, Correlation: 0.952609966920662
Pair: ITW-MSI, Correlation: 0.9371268346119876
Pair: ITW-MSCI, Correlation: 0.957807050786402
Pair: ITW-NDAQ, Correlation: 0.972314704561826
Pair: ITW-NFLX, Correlation: 0.9100891301268008
Pair: ITW-NEE, Correlation: 0.9533605429599753
Pair: ITW-NI, Correlation: 0.9174262167783577
Pair: ITW-NDSN, Correlation: 0.9893885157993515
Pair: ITW-NSC, Correlation: 0.9616431634136496
Pair: ITW-NOC, Correlation: 0.9628529384388228
Pair: ITW-NVR, Correlation: 0.964749294747978
Pair: ITW-NXPI, Correlation: 0.9661119757711326
Pair: ITW-ORLY, Correlation: 0.9455962465683709
Pair: ITW-ODFL, Correlation: 0.9550569814219164
Pair: ITW-ORCL, Correlation: 0.9073809320579417
Pair: ITW-OTIS, Correlation: 0.9414048415625382
Pair: ITW-PCAR, Correlation: 0.9146491395658439
Pair: ITW-PKG, Correlation: 0.9661430345345656
Pair: ITW-PH, Correlation: 0.9194411412876206
Pair: ITW-PAYX, Correlation: 0.9747466114282484
Pair: ITW-PEP, Correlation: 0.9783095407694156
Pair: ITW-PM, Correlation: 0.9037818556041342
Pair: ITW-PNC, Correlation: 0.9332048943130946
Pair: ITW-POOL, Correlation: 0.9479440855736423
Pair: ITW-PPG, Correlation: 0.908168004515971
Pair: ITW-PFG, Correlation: 0.9332812722275623
Pair: ITW-PG, Correlation: 0.9732714798210423
Pair: ITW-PGR, Correlation: 0.9179633619362875
Pair: ITW-PLD, Correlation: 0.9630187753168902
Pair: ITW-PRU, Correlation: 0.9007761793360052
Pair: ITW-PEG, Correlation: 0.9599579127891259
Pair: ITW-PTC, Correlation: 0.9654323312331298
Pair: ITW-PSA, Correlation: 0.9348283730178869
Pair: ITW-QCOM, Correlation: 0.9028889226943644
Pair: ITW-DGX, Correlation: 0.9771217602496443
Pair: ITW-RJF, Correlation: 0.9550117656044774
Pair: ITW-RTX, Correlation: 0.911843949382055
Pair: ITW-O, Correlation: 0.9060257686585718
Pair: ITW-RF, Correlation: 0.9414054483899723
Pair: ITW-RSG, Correlation: 0.9579242529623444
Pair: ITW-RMD, Correlation: 0.9396932957612931
Pair: ITW-RVTY, Correlation: 0.9056369661572644
Pair: ITW-ROK, Correlation: 0.9824237557892352
Pair: ITW-ROL, Correlation: 0.9784436442141468
Pair: ITW-ROP, Correlation: 0.9853286893569536
Pair: ITW-ROST, Correlation: 0.9554850324057657
Pair: ITW-SPGI, Correlation: 0.9795547674254017
Pair: ITW-CRM, Correlation: 0.9523271864091027
Pair: ITW-STX, Correlation: 0.9157316721184107
Pair: ITW-SRE, Correlation: 0.9469320879586035
Pair: ITW-NOW, Correlation: 0.9470425227249477
Pair: ITW-SHW, Correlation: 0.9791023964758332
Pair: ITW-SNA, Correlation: 0.9509026611121182
Pair: ITW-SO, Correlation: 0.9539378225962744
Pair: ITW-SBUX, Correlation: 0.9478970367853311
Pair: ITW-STE, Correlation: 0.9725894419327217
Pair: ITW-SYK, Correlation: 0.9828885561242675
Pair: ITW-SNPS, Correlation: 0.9268238665645698
Pair: ITW-SYY, Correlation: 0.9460391045377434
Pair: ITW-TMUS, Correlation: 0.9715631956364346
Pair: ITW-TTWO, Correlation: 0.9237823453150967
Pair: ITW-TEL, Correlation: 0.9815894360236799
Pair: ITW-TDY, Correlation: 0.9661127757114547
Pair: ITW-TER, Correlation: 0.9402279622080352
Pair: ITW-TXN, Correlation: 0.9831227363972368
Pair: ITW-TXT, Correlation: 0.905085233114607
Pair: ITW-TMO, Correlation: 0.9689450822024559
Pair: ITW-TJX, Correlation: 0.9584022689934816
Pair: ITW-TSCO, Correlation: 0.9363759715842781
Pair: ITW-TT, Correlation: 0.9120045410432787
Pair: ITW-TDG, Correlation: 0.926641446767116
Pair: ITW-TRV, Correlation: 0.955126611020016
Pair: ITW-TYL, Correlation: 0.9626197907591624
Pair: ITW-ULTA, Correlation: 0.9276903445343702
Pair: ITW-UNP, Correlation: 0.9759560502920218
Pair: ITW-UPS, Correlation: 0.9262841195330102
Pair: ITW-UNH, Correlation: 0.9716901894185508
Pair: ITW-VRSN, Correlation: 0.9202848792081961
Pair: ITW-VRSK, Correlation: 0.9723806438713068
Pair: ITW-VRTX, Correlation: 0.9300962532068164
Pair: ITW-VICI, Correlation: 0.9163447717866741
Pair: ITW-V, Correlation: 0.9832598109329653
Pair: ITW-VMC, Correlation: 0.9690325395521622
Pair: ITW-WRB, Correlation: 0.9519485775556936
Pair: ITW-WMT, Correlation: 0.9473038315594218
Pair: ITW-WM, Correlation: 0.97375064523203
Pair: ITW-WAT, Correlation: 0.9589811041401493
Pair: ITW-WEC, Correlation: 0.9468456617284053
Pair: ITW-WST, Correlation: 0.9441628784003723
Pair: ITW-WTW, Correlation: 0.980329810558837
Pair: ITW-WDAY, Correlation: 0.9093615755913679
Pair: ITW-XEL, Correlation: 0.9438374115734967
Pair: ITW-XYL, Correlation: 0.9709846412185619
Pair: ITW-YUM, Correlation: 0.9779678590001867
Pair: ITW-ZTS, Correlation: 0.9548004900106073
Pair: IR-ICE, Correlation: 0.9095677645487635
Pair: IR-INTU, Correlation: 0.9117925067708313
Pair: IR-ISRG, Correlation: 0.9319625196249226
Pair: IR-IRM, Correlation: 0.936484650794889
Pair: IR-JBL, Correlation: 0.9413275283961235
Pair: IR-JPM, Correlation: 0.9599117133973232
Pair: IR-KKR, Correlation: 0.9630361234925031
Pair: IR-KLAC, Correlation: 0.9788105128579107
Pair: IR-LRCX, Correlation: 0.9493560783986101
Pair: IR-LEN, Correlation: 0.9799254314870736
Pair: IR-LII, Correlation: 0.9296758007452924
Pair: IR-LLY, Correlation: 0.9543550037380407
Pair: IR-LIN, Correlation: 0.9619073241386445
Pair: IR-MAR, Correlation: 0.9494524664684612
Pair: IR-MMC, Correlation: 0.9441075804658572
Pair: IR-MLM, Correlation: 0.976508733466926
Pair: IR-MAS, Correlation: 0.9261073415570954
Pair: IR-MCK, Correlation: 0.9315575196826477
Pair: IR-MSFT, Correlation: 0.9431898829813034
Pair: IR-MPWR, Correlation: 0.9541014908628156
Pair: IR-MCO, Correlation: 0.9024420908757413
Pair: IR-MSI, Correlation: 0.960111516712423
Pair: IR-NWS, Correlation: 0.9125862288649573
Pair: IR-NVDA, Correlation: 0.922219111361968
Pair: IR-NVR, Correlation: 0.9785893727890781
Pair: IR-NXPI, Correlation: 0.9358892876104731
Pair: IR-ORLY, Correlation: 0.9407605448975577
Pair: IR-ODFL, Correlation: 0.9141062703332424
Pair: IR-ORCL, Correlation: 0.9595468355438928
Pair: IR-OTIS, Correlation: 0.9184236297656595
Pair: IR-PCAR, Correlation: 0.9664662745452985
Pair: IR-PKG, Correlation: 0.9526803613293946
Pair: IR-PANW, Correlation: 0.9628686043162353
Pair: IR-PH, Correlation: 0.9876369776212772
Pair: IR-PNR, Correlation: 0.9230729278471285
Pair: IR-PGR, Correlation: 0.9570316491865608
Pair: IR-PTC, Correlation: 0.9359522058688762
Pair: IR-PHM, Correlation: 0.9639101863926034
Pair: IR-PWR, Correlation: 0.9700066958374179
Pair: IR-RJF, Correlation: 0.9150006970044984
Pair: IR-RSG, Correlation: 0.9630306066781689
Pair: IR-ROL, Correlation: 0.9029967691287595
Pair: IR-ROP, Correlation: 0.9002391085096623
Pair: IR-NOW, Correlation: 0.9066441072551601
Pair: IR-SNA, Correlation: 0.9396579725134323
Pair: IR-STLD, Correlation: 0.9179585203478964
Pair: IR-SYK, Correlation: 0.9563402442365987
Pair: IR-SNPS, Correlation: 0.9542143757789611
Pair: IR-TMUS, Correlation: 0.9040977564141541
Pair: IR-TJX, Correlation: 0.9576776396396606
Pair: IR-TSCO, Correlation: 0.9306453224330508
Pair: IR-TT, Correlation: 0.976936347648961
Pair: IR-TDG, Correlation: 0.9692194584503805
Pair: IR-TRV, Correlation: 0.9435860946236638
Pair: IR-URI, Correlation: 0.9858053301846699
Pair: IR-VMC, Correlation: 0.9753223472049463
Pair: IR-WRB, Correlation: 0.9167677602773148
Pair: IR-GWW, Correlation: 0.9688279258781426
Pair: IR-WMT, Correlation: 0.9284996597035555
Pair: IR-WM, Correlation: 0.9435501206718977
Pair: IR-WMB, Correlation: 0.9013948342135983
Pair: PODD-IQV, Correlation: 0.9149656062851069
Pair: PODD-J, Correlation: 0.9095660474668429
Pair: PODD-KDP, Correlation: 0.9350445897359616
Pair: PODD-KEYS, Correlation: 0.9466717907525598
Pair: PODD-LHX, Correlation: 0.9124174523277718
Pair: PODD-LH, Correlation: 0.9154178266587958
Pair: PODD-LOW, Correlation: 0.9096288057743142
Pair: PODD-LULU, Correlation: 0.9333029930831279
Pair: PODD-MA, Correlation: 0.9137636394856397
Pair: PODD-MKC, Correlation: 0.9190872602042053
Pair: PODD-MCD, Correlation: 0.9114686657703192
Pair: PODD-MTD, Correlation: 0.9525964634148691
Pair: PODD-MCHP, Correlation: 0.9064202780266093
Pair: PODD-MAA, Correlation: 0.9256674777142303
Pair: PODD-MCO, Correlation: 0.9085413933082946
Pair: PODD-MSCI, Correlation: 0.9461901953994153
Pair: PODD-NDAQ, Correlation: 0.9287794080898044
Pair: PODD-NEE, Correlation: 0.966580267319227
Pair: PODD-NKE, Correlation: 0.9311778341894902
Pair: PODD-NDSN, Correlation: 0.9237681081486216
Pair: PODD-NSC, Correlation: 0.9412426668628894
Pair: PODD-PAYX, Correlation: 0.9005088741746984
Pair: PODD-PAYC, Correlation: 0.9271903028737389
Pair: PODD-PEP, Correlation: 0.9088449592738137
Pair: PODD-POOL, Correlation: 0.9476451892947187
Pair: PODD-PG, Correlation: 0.9135239075385315
Pair: PODD-PLD, Correlation: 0.9416720653837442
Pair: PODD-DGX, Correlation: 0.9159415231337757
Pair: PODD-RMD, Correlation: 0.9728339234434917
Pair: PODD-RVTY, Correlation: 0.9397990852647048
Pair: PODD-ROK, Correlation: 0.9249241206638615
Pair: PODD-ROP, Correlation: 0.903161095596757
Pair: PODD-SPGI, Correlation: 0.9284070663508739
Pair: PODD-SBAC, Correlation: 0.9339839066988315
Pair: PODD-SHW, Correlation: 0.902963114108083
Pair: PODD-SBUX, Correlation: 0.9206167791731141
Pair: PODD-STE, Correlation: 0.9324444883247105
Pair: PODD-TROW, Correlation: 0.9098647249991703
Pair: PODD-TGT, Correlation: 0.9344827340183928
Pair: PODD-TDY, Correlation: 0.959076750756114
Pair: PODD-TER, Correlation: 0.9345462347288173
Pair: PODD-TXN, Correlation: 0.9392702776928743
Pair: PODD-TMO, Correlation: 0.9511790433487846
Pair: PODD-TYL, Correlation: 0.9111212380183042
Pair: PODD-UNP, Correlation: 0.912841644676895
Pair: PODD-UPS, Correlation: 0.9298288032702332
Pair: PODD-UNH, Correlation: 0.9036968976902185
Pair: PODD-VRSN, Correlation: 0.9142303121951447
Pair: PODD-V, Correlation: 0.9086472820451057
Pair: PODD-WAT, Correlation: 0.9100806177278531
Pair: PODD-WEC, Correlation: 0.9230926823747283
Pair: PODD-WST, Correlation: 0.9278096424713598
Pair: PODD-WTW, Correlation: 0.9085770528014789
Pair: PODD-XEL, Correlation: 0.9311111721348097
Pair: PODD-YUM, Correlation: 0.9043808867181224
Pair: PODD-ZBRA, Correlation: 0.9240644548195963
Pair: PODD-ZTS, Correlation: 0.936677070472978
Pair: INTC-TFX, Correlation: 0.9393860273361351
Pair: ICE-IPG, Correlation: 0.9142284858628461
Pair: ICE-INTU, Correlation: 0.9692957994170641
Pair: ICE-ISRG, Correlation: 0.9726141679358716
Pair: ICE-IQV, Correlation: 0.952893352359922
Pair: ICE-JBHT, Correlation: 0.9460108105404558
Pair: ICE-JKHY, Correlation: 0.9417347297693722
Pair: ICE-J, Correlation: 0.9520674113726865
Pair: ICE-JNJ, Correlation: 0.9494630344861074
Pair: ICE-JCI, Correlation: 0.929016191249797
Pair: ICE-JPM, Correlation: 0.9773345171846215
Pair: ICE-KDP, Correlation: 0.9576841049164341
Pair: ICE-KEYS, Correlation: 0.9056580236528396
Pair: ICE-KMB, Correlation: 0.912086067211143
Pair: ICE-KKR, Correlation: 0.9003478694779715
Pair: ICE-KLAC, Correlation: 0.9028616234524913
Pair: ICE-LHX, Correlation: 0.9622907031746518
Pair: ICE-LH, Correlation: 0.9605666132553985
Pair: ICE-LRCX, Correlation: 0.9233715532919399
Pair: ICE-LDOS, Correlation: 0.9709837710706629
Pair: ICE-LEN, Correlation: 0.9213621344682209
Pair: ICE-LII, Correlation: 0.9565400174545464
Pair: ICE-LIN, Correlation: 0.9437486884151673
Pair: ICE-LYV, Correlation: 0.9677844293618185
Pair: ICE-LMT, Correlation: 0.9590925650975834
Pair: ICE-LOW, Correlation: 0.9724093599046777
Pair: ICE-LULU, Correlation: 0.9034399826502205
Pair: ICE-MAR, Correlation: 0.9479243231187796
Pair: ICE-MMC, Correlation: 0.9659423506932227
Pair: ICE-MLM, Correlation: 0.9535448030176882
Pair: ICE-MAS, Correlation: 0.9829673336998618
Pair: ICE-MA, Correlation: 0.9840441437986479
Pair: ICE-MKC, Correlation: 0.9210224532303032
Pair: ICE-MCD, Correlation: 0.9666692552991969
Pair: ICE-MRK, Correlation: 0.9272018887456499
Pair: ICE-META, Correlation: 0.9227454137208698
Pair: ICE-MET, Correlation: 0.9171568872823781
Pair: ICE-MTD, Correlation: 0.9558538207046233
Pair: ICE-MCHP, Correlation: 0.9623889300857371
Pair: ICE-MU, Correlation: 0.9459862498266396
Pair: ICE-MSFT, Correlation: 0.9584755849626675
Pair: ICE-MAA, Correlation: 0.9358779668977979
Pair: ICE-MOH, Correlation: 0.9363955282946671
Pair: ICE-MDLZ, Correlation: 0.9583421414126505
Pair: ICE-MPWR, Correlation: 0.9309153682928165
Pair: ICE-MNST, Correlation: 0.9465137487304527
Pair: ICE-MCO, Correlation: 0.9890369433548671
Pair: ICE-MS, Correlation: 0.9437186293603007
Pair: ICE-MSI, Correlation: 0.9462027171887273
Pair: ICE-MSCI, Correlation: 0.9526188878975472
Pair: ICE-NDAQ, Correlation: 0.9749753330866908
Pair: ICE-NFLX, Correlation: 0.9454082749259344
Pair: ICE-NEE, Correlation: 0.9564168580536668
Pair: ICE-NI, Correlation: 0.9208681063772747
Pair: ICE-NDSN, Correlation: 0.9738497023798032
Pair: ICE-NSC, Correlation: 0.9659644894025906
Pair: ICE-NOC, Correlation: 0.9448868811743083
Pair: ICE-NVR, Correlation: 0.9701664290285528
Pair: ICE-NXPI, Correlation: 0.9564198709118187
Pair: ICE-ORLY, Correlation: 0.9340673371808282
Pair: ICE-ODFL, Correlation: 0.9363101828398138
Pair: ICE-ORCL, Correlation: 0.9129599632336513
Pair: ICE-PCAR, Correlation: 0.9007331312188304
Pair: ICE-PKG, Correlation: 0.9672619916944698
Pair: ICE-PH, Correlation: 0.9211270572538497
Pair: ICE-PAYX, Correlation: 0.9707258820456617
Pair: ICE-PNR, Correlation: 0.9020838086561447
Pair: ICE-PEP, Correlation: 0.9569607384236448
Pair: ICE-PNC, Correlation: 0.9475804753113011
Pair: ICE-POOL, Correlation: 0.9454531267181584
Pair: ICE-PFG, Correlation: 0.900596326729308
Pair: ICE-PG, Correlation: 0.9723109680390836
Pair: ICE-PGR, Correlation: 0.927254380741378
Pair: ICE-PLD, Correlation: 0.9600837802300041
Pair: ICE-PEG, Correlation: 0.9772165975145851
Pair: ICE-PTC, Correlation: 0.9607855520245914
Pair: ICE-PSA, Correlation: 0.9372596318157735
Pair: ICE-QCOM, Correlation: 0.9172774239172036
Pair: ICE-DGX, Correlation: 0.964867580217515
Pair: ICE-RJF, Correlation: 0.9415249146009925
Pair: ICE-RTX, Correlation: 0.916862414772827
Pair: ICE-O, Correlation: 0.9092152353516395
Pair: ICE-RF, Correlation: 0.9364018582819236
Pair: ICE-RSG, Correlation: 0.9593993869449772
Pair: ICE-RMD, Correlation: 0.9464275708581151
Pair: ICE-RVTY, Correlation: 0.9097733400590509
Pair: ICE-ROK, Correlation: 0.958617495760371
Pair: ICE-ROL, Correlation: 0.974245026164714
Pair: ICE-ROP, Correlation: 0.9860745771095278
Pair: ICE-ROST, Correlation: 0.9647132511916034
Pair: ICE-SPGI, Correlation: 0.9878847370270702
Pair: ICE-CRM, Correlation: 0.9696437517641714
Pair: ICE-STX, Correlation: 0.9376002924993116
Pair: ICE-SRE, Correlation: 0.9396435594534833
Pair: ICE-NOW, Correlation: 0.9703897850355829
Pair: ICE-SHW, Correlation: 0.9888986787018248
Pair: ICE-SNA, Correlation: 0.9279605729275716
Pair: ICE-SO, Correlation: 0.955840018095646
Pair: ICE-SBUX, Correlation: 0.9374391770654067
Pair: ICE-STE, Correlation: 0.9770636324163665
Pair: ICE-SYK, Correlation: 0.9856565129636804
Pair: ICE-SNPS, Correlation: 0.9144416398591304
Pair: ICE-SYY, Correlation: 0.9422364034921537
Pair: ICE-TMUS, Correlation: 0.9695452692676193
Pair: ICE-TTWO, Correlation: 0.9349044575523658
Pair: ICE-TEL, Correlation: 0.9741347860921677
Pair: ICE-TDY, Correlation: 0.9660334034305885
Pair: ICE-TER, Correlation: 0.9465509615092905
Pair: ICE-TXN, Correlation: 0.9817041867170153
Pair: ICE-TMO, Correlation: 0.9637276339225648
Pair: ICE-TJX, Correlation: 0.9628335004442562
Pair: ICE-TSCO, Correlation: 0.9347412350015467
Pair: ICE-TT, Correlation: 0.9273741758414064
Pair: ICE-TDG, Correlation: 0.9390647324271071
Pair: ICE-TRV, Correlation: 0.9523663096924916
Pair: ICE-TYL, Correlation: 0.9844217304968513
Pair: ICE-UDR, Correlation: 0.9145357735720062
Pair: ICE-UNP, Correlation: 0.9788832895457845
Pair: ICE-UNH, Correlation: 0.9588704295252327
Pair: ICE-VLTO, Correlation: 0.9353661155367066
Pair: ICE-VRSN, Correlation: 0.9230861769247967
Pair: ICE-VRSK, Correlation: 0.98174687120386
Pair: ICE-VRTX, Correlation: 0.9293119188432671
Pair: ICE-V, Correlation: 0.9849445755853254
Pair: ICE-VMC, Correlation: 0.9617115173533445
Pair: ICE-WRB, Correlation: 0.9494479024875626
Pair: ICE-WMT, Correlation: 0.9638088029710726
Pair: ICE-WM, Correlation: 0.973278816449007
Pair: ICE-WAT, Correlation: 0.9541473526196865
Pair: ICE-WEC, Correlation: 0.945480033646115
Pair: ICE-WELL, Correlation: 0.9167772496656077
Pair: ICE-WST, Correlation: 0.9321753051175709
Pair: ICE-WTW, Correlation: 0.9846883178843596
Pair: ICE-WDAY, Correlation: 0.9335557390616169
Pair: ICE-XEL, Correlation: 0.9367165814741534
Pair: ICE-XYL, Correlation: 0.9703800143440556
Pair: ICE-YUM, Correlation: 0.9695357249320501
Pair: ICE-ZTS, Correlation: 0.9581635051926314
Pair: IFF-LUV, Correlation: 0.9142659785322083
Pair: IFF-TSN, Correlation: 0.9039719692382087
Pair: IFF-VLTO, Correlation: 0.934701413847741
Pair: IP-STT, Correlation: 0.9193481696137186
Pair: IP-USB, Correlation: 0.9200991346717814
Pair: IPG-INTU, Correlation: 0.9097065397811167
Pair: IPG-IQV, Correlation: 0.9074496309024894
Pair: IPG-JBHT, Correlation: 0.957211978176845
Pair: IPG-JNJ, Correlation: 0.9314538832161509
Pair: IPG-JCI, Correlation: 0.9567322900155247
Pair: IPG-JPM, Correlation: 0.9044545556848121
Pair: IPG-KDP, Correlation: 0.9124499815461491
Pair: IPG-KR, Correlation: 0.9230562843228904
Pair: IPG-LH, Correlation: 0.9469095615684093
Pair: IPG-LYV, Correlation: 0.9178314166431037
Pair: IPG-LKQ, Correlation: 0.94437722876376
Pair: IPG-LMT, Correlation: 0.9067986916629762
Pair: IPG-LOW, Correlation: 0.9457082957912392
Pair: IPG-MAR, Correlation: 0.9036477138895382
Pair: IPG-MMC, Correlation: 0.9343637003314905
Pair: IPG-MLM, Correlation: 0.9200945532144917
Pair: IPG-MAS, Correlation: 0.9073456679681264
Pair: IPG-MCD, Correlation: 0.9277711848293789
Pair: IPG-MRK, Correlation: 0.9011197261066481
Pair: IPG-MET, Correlation: 0.9281084380251975
Pair: IPG-MTD, Correlation: 0.9418110120358661
Pair: IPG-MGM, Correlation: 0.9472213873304406
Pair: IPG-MCHP, Correlation: 0.9386353004103083
Pair: IPG-MAA, Correlation: 0.9331252481237726
Pair: IPG-MOH, Correlation: 0.9150107121093135
Pair: IPG-MDLZ, Correlation: 0.9502371844804338
Pair: IPG-MNST, Correlation: 0.9414921362149401
Pair: IPG-MCO, Correlation: 0.9129728166419295
Pair: IPG-MS, Correlation: 0.9378334060343823
Pair: IPG-MSCI, Correlation: 0.910705966511471
Pair: IPG-NDAQ, Correlation: 0.9373884239118636
Pair: IPG-NEE, Correlation: 0.900659007479905
Pair: IPG-NDSN, Correlation: 0.9332251697426632
Pair: IPG-NSC, Correlation: 0.9089540596489977
Pair: IPG-NOC, Correlation: 0.9202628313438731
Pair: IPG-NXPI, Correlation: 0.9408708431917622
Pair: IPG-ORLY, Correlation: 0.9158483856386083
Pair: IPG-ODFL, Correlation: 0.9134977470945631
Pair: IPG-OMC, Correlation: 0.9107764687180689
Pair: IPG-PKG, Correlation: 0.9113849226902164
Pair: IPG-PAYX, Correlation: 0.94741139549346
Pair: IPG-PEP, Correlation: 0.9505670344211887
Pair: IPG-PM, Correlation: 0.9018786898900173
Pair: IPG-PNC, Correlation: 0.9108427739874401
Pair: IPG-POOL, Correlation: 0.9115657928135176
Pair: IPG-PPG, Correlation: 0.9139295746217537
Pair: IPG-PFG, Correlation: 0.943449494790276
Pair: IPG-PG, Correlation: 0.9173258213017138
Pair: IPG-PLD, Correlation: 0.9300466912361409
Pair: IPG-PRU, Correlation: 0.9065665084948589
Pair: IPG-PEG, Correlation: 0.9072066033423943
Pair: IPG-PTC, Correlation: 0.907201520585033
Pair: IPG-PSA, Correlation: 0.9587719565002191
Pair: IPG-DGX, Correlation: 0.9348441646410436
Pair: IPG-RJF, Correlation: 0.9380271778435214
Pair: IPG-RTX, Correlation: 0.9139891050216726
Pair: IPG-RF, Correlation: 0.9292198948354552
Pair: IPG-RSG, Correlation: 0.9032936803124187
Pair: IPG-ROK, Correlation: 0.9440593637773422
Pair: IPG-ROL, Correlation: 0.9008514467358458
Pair: IPG-ROP, Correlation: 0.9158141014178276
Pair: IPG-SPGI, Correlation: 0.9116286926370396
Pair: IPG-SRE, Correlation: 0.9171568432651818
Pair: IPG-SHW, Correlation: 0.9191104868858917
Pair: IPG-SJM, Correlation: 0.9176984142466197
Pair: IPG-SNA, Correlation: 0.9521339386350895
Pair: IPG-SO, Correlation: 0.9092408377337907
Pair: IPG-SBUX, Correlation: 0.921987256708194
Pair: IPG-STE, Correlation: 0.9231862494594234
Pair: IPG-SYK, Correlation: 0.9218581518803215
Pair: IPG-SYY, Correlation: 0.911114645692462
Pair: IPG-TMUS, Correlation: 0.9027660231114579
Pair: IPG-TEL, Correlation: 0.9556929702619652
Pair: IPG-TDY, Correlation: 0.9040659052462974
Pair: IPG-TXN, Correlation: 0.9309880661886923
Pair: IPG-TXT, Correlation: 0.9243687501757817
Pair: IPG-TMO, Correlation: 0.9305459760529953
Pair: IPG-TJX, Correlation: 0.9073967433268288
Pair: IPG-TSCO, Correlation: 0.9196693181393664
Pair: IPG-TRV, Correlation: 0.9332503242722892
Pair: IPG-TYL, Correlation: 0.9018464704726714
Pair: IPG-ULTA, Correlation: 0.9447892068406398
Pair: IPG-UNP, Correlation: 0.9254739141459162
Pair: IPG-UPS, Correlation: 0.9360907754245275
Pair: IPG-UNH, Correlation: 0.9332677679118637
Pair: IPG-V, Correlation: 0.9078101187429117
Pair: IPG-VMC, Correlation: 0.9310896113243073
Pair: IPG-WRB, Correlation: 0.9035857510153854
Pair: IPG-WM, Correlation: 0.9213104124873102
Pair: IPG-WAT, Correlation: 0.9402638747565814
Pair: IPG-WST, Correlation: 0.9130542680396635
Pair: IPG-WY, Correlation: 0.910433635734953
Pair: IPG-WTW, Correlation: 0.9140386635369405
Pair: IPG-XYL, Correlation: 0.903538985796969
Pair: IPG-YUM, Correlation: 0.9392581708896477
Pair: INTU-ISRG, Correlation: 0.9758833969723976
Pair: INTU-INVH, Correlation: 0.9162080856417978
Pair: INTU-IQV, Correlation: 0.9605427640778007
Pair: INTU-JBHT, Correlation: 0.9443582144552289
Pair: INTU-JBL, Correlation: 0.9051107455813269
Pair: INTU-J, Correlation: 0.9722743458858363
Pair: INTU-JCI, Correlation: 0.9288203606962232
Pair: INTU-JPM, Correlation: 0.9612183765600396
Pair: INTU-KDP, Correlation: 0.9315617214469099
Pair: INTU-KEYS, Correlation: 0.9253286684704128
Pair: INTU-KKR, Correlation: 0.9314881197526512
Pair: INTU-KLAC, Correlation: 0.9442232472762215
Pair: INTU-LHX, Correlation: 0.919951186580034
Pair: INTU-LH, Correlation: 0.9566566817871113
Pair: INTU-LRCX, Correlation: 0.9684568642572339
Pair: INTU-LDOS, Correlation: 0.9374200251399785
Pair: INTU-LEN, Correlation: 0.93640791461583
Pair: INTU-LII, Correlation: 0.9344820272588776
Pair: INTU-LIN, Correlation: 0.9741103788471039
Pair: INTU-LYV, Correlation: 0.9549603469122747
Pair: INTU-LMT, Correlation: 0.9048334959121819
Pair: INTU-LOW, Correlation: 0.9794596574427065
Pair: INTU-LULU, Correlation: 0.9384331218981693
Pair: INTU-MAR, Correlation: 0.9311844835469549
Pair: INTU-MMC, Correlation: 0.974721770561461
Pair: INTU-MLM, Correlation: 0.9633199862267449
Pair: INTU-MAS, Correlation: 0.9503169080414546
Pair: INTU-MA, Correlation: 0.9688450453149123
Pair: INTU-MCD, Correlation: 0.9584360199122921
Pair: INTU-MRK, Correlation: 0.9237786369614458
Pair: INTU-META, Correlation: 0.9009322383434728
Pair: INTU-MET, Correlation: 0.9206955789791835
Pair: INTU-MTD, Correlation: 0.9519186372593776
Pair: INTU-MCHP, Correlation: 0.9665328339108391
Pair: INTU-MU, Correlation: 0.9366287350572401
Pair: INTU-MSFT, Correlation: 0.9886948971415714
Pair: INTU-MAA, Correlation: 0.9236478446032252
Pair: INTU-MOH, Correlation: 0.9681709385579228
Pair: INTU-MDLZ, Correlation: 0.9355412832785353
Pair: INTU-MPWR, Correlation: 0.9632406975722931
Pair: INTU-MNST, Correlation: 0.9240454037444014
Pair: INTU-MCO, Correlation: 0.9823908843155652
Pair: INTU-MS, Correlation: 0.9606468331576172
Pair: INTU-MSI, Correlation: 0.9628392147184794
Pair: INTU-MSCI, Correlation: 0.9789048604962427
Pair: INTU-NDAQ, Correlation: 0.9724512775363071
Pair: INTU-NTAP, Correlation: 0.9126762062505707
Pair: INTU-NFLX, Correlation: 0.9130138556438818
Pair: INTU-NEE, Correlation: 0.9291609826436636
Pair: INTU-NDSN, Correlation: 0.9679837324100449
Pair: INTU-NSC, Correlation: 0.9466721472234708
Pair: INTU-NOC, Correlation: 0.9061507141874542
Pair: INTU-NVR, Correlation: 0.9641215738705955
Pair: INTU-NXPI, Correlation: 0.9529413675314227
Pair: INTU-ORLY, Correlation: 0.95159707076393
Pair: INTU-ODFL, Correlation: 0.9765857949922252
Pair: INTU-ON, Correlation: 0.9081363489684164
Pair: INTU-ORCL, Correlation: 0.9347740818937877
Pair: INTU-PCAR, Correlation: 0.920632286376586
Pair: INTU-PKG, Correlation: 0.9368486092353564
Pair: INTU-PANW, Correlation: 0.9264367813970074
Pair: INTU-PH, Correlation: 0.9397199031764915
Pair: INTU-PAYX, Correlation: 0.97035072872371
Pair: INTU-PNR, Correlation: 0.9030463479836285
Pair: INTU-PEP, Correlation: 0.9426417965997623
Pair: INTU-PNC, Correlation: 0.9074440226300063
Pair: INTU-POOL, Correlation: 0.9575689953648356
Pair: INTU-PG, Correlation: 0.9678853277220996
Pair: INTU-PGR, Correlation: 0.9392904322334107
Pair: INTU-PLD, Correlation: 0.962757550039107
Pair: INTU-PEG, Correlation: 0.9411573354846883
Pair: INTU-PTC, Correlation: 0.9631409745463118
Pair: INTU-PSA, Correlation: 0.9205845767433468
Pair: INTU-PHM, Correlation: 0.9050019196081809
Pair: INTU-QCOM, Correlation: 0.9489069156571521
Pair: INTU-DGX, Correlation: 0.9424669207423158
Pair: INTU-RJF, Correlation: 0.9520266028310669
Pair: INTU-RF, Correlation: 0.910879186416264
Pair: INTU-RSG, Correlation: 0.972086532183823
Pair: INTU-RMD, Correlation: 0.9370361088396542
Pair: INTU-ROK, Correlation: 0.9537897577206235
Pair: INTU-ROL, Correlation: 0.9561810737665744
Pair: INTU-ROP, Correlation: 0.967243850869334
Pair: INTU-ROST, Correlation: 0.9186580478505492
Pair: INTU-SPGI, Correlation: 0.9801610250521281
Pair: INTU-CRM, Correlation: 0.9551575778611487
Pair: INTU-STX, Correlation: 0.9423435898219357
Pair: INTU-NOW, Correlation: 0.9804876050137226
Pair: INTU-SHW, Correlation: 0.9804792837832335
Pair: INTU-SNA, Correlation: 0.912577871544819
Pair: INTU-SO, Correlation: 0.9473705795727682
Pair: INTU-STE, Correlation: 0.9707380712791854
Pair: INTU-SYK, Correlation: 0.968707848859578
Pair: INTU-SNPS, Correlation: 0.9639863641475787
Pair: INTU-TMUS, Correlation: 0.9583179998050352
Pair: INTU-TEL, Correlation: 0.9609427251685646
Pair: INTU-TDY, Correlation: 0.9500183282382852
Pair: INTU-TER, Correlation: 0.9556133620535116
Pair: INTU-TSLA, Correlation: 0.9031253226220419
Pair: INTU-TXN, Correlation: 0.96691296343279
Pair: INTU-TMO, Correlation: 0.9688608146069714
Pair: INTU-TJX, Correlation: 0.9517296551029828
Pair: INTU-TSCO, Correlation: 0.961453936446846
Pair: INTU-TT, Correlation: 0.9478257691380049
Pair: INTU-TDG, Correlation: 0.9468428426875503
Pair: INTU-TRV, Correlation: 0.9232261509682016
Pair: INTU-TYL, Correlation: 0.9581915367393343
Pair: INTU-UNP, Correlation: 0.9619379451860172
Pair: INTU-URI, Correlation: 0.9249547128255319
Pair: INTU-UNH, Correlation: 0.9619981101588916
Pair: INTU-VRSK, Correlation: 0.9746073325165162
Pair: INTU-VRTX, Correlation: 0.9158099324338893
Pair: INTU-V, Correlation: 0.9611816858424738
Pair: INTU-VMC, Correlation: 0.947574989811198
Pair: INTU-WRB, Correlation: 0.9514859867123773
Pair: INTU-GWW, Correlation: 0.9115997310344254
Pair: INTU-WMT, Correlation: 0.9542644183407647
Pair: INTU-WM, Correlation: 0.9764650796389285
Pair: INTU-WAT, Correlation: 0.9433543940514143
Pair: INTU-WST, Correlation: 0.9621245882376018
Pair: INTU-WTW, Correlation: 0.9598837590760984
Pair: INTU-WDAY, Correlation: 0.9279254693059036
Pair: INTU-XYL, Correlation: 0.9597278955832264
Pair: INTU-YUM, Correlation: 0.9555650529801852
Pair: INTU-ZTS, Correlation: 0.9586000453368674
Pair: ISRG-IQV, Correlation: 0.926286944156788
Pair: ISRG-JBHT, Correlation: 0.9109428613932995
Pair: ISRG-J, Correlation: 0.9507549529854324
Pair: ISRG-JCI, Correlation: 0.9109410267372426
Pair: ISRG-JPM, Correlation: 0.976440083608001
Pair: ISRG-KDP, Correlation: 0.9129454048601943
Pair: ISRG-KKR, Correlation: 0.9421145062803763
Pair: ISRG-KLAC, Correlation: 0.9390160434915564
Pair: ISRG-LHX, Correlation: 0.9134643871218894
Pair: ISRG-LH, Correlation: 0.9336091696614262
Pair: ISRG-LRCX, Correlation: 0.9516093163501714
Pair: ISRG-LDOS, Correlation: 0.9556392952940481
Pair: ISRG-LEN, Correlation: 0.9426361245351742
Pair: ISRG-LII, Correlation: 0.9624903240586853
Pair: ISRG-LIN, Correlation: 0.9629419024398597
Pair: ISRG-LYV, Correlation: 0.9364848170728952
Pair: ISRG-LMT, Correlation: 0.9122489158269522
Pair: ISRG-LOW, Correlation: 0.9599311033312656
Pair: ISRG-MAR, Correlation: 0.9361748853727894
Pair: ISRG-MMC, Correlation: 0.9603603576955738
Pair: ISRG-MLM, Correlation: 0.9527923468139301
Pair: ISRG-MAS, Correlation: 0.9534826221092283
Pair: ISRG-MA, Correlation: 0.9671414451543917
Pair: ISRG-MCD, Correlation: 0.9472798952365814
Pair: ISRG-MRK, Correlation: 0.9126179947678701
Pair: ISRG-META, Correlation: 0.9379670447613568
Pair: ISRG-MTD, Correlation: 0.9311181548122385
Pair: ISRG-MCHP, Correlation: 0.9459792574015978
Pair: ISRG-MU, Correlation: 0.9383379060519215
Pair: ISRG-MSFT, Correlation: 0.9734382019064362
Pair: ISRG-MOH, Correlation: 0.9281547589498678
Pair: ISRG-MDLZ, Correlation: 0.9137424830960471
Pair: ISRG-MPWR, Correlation: 0.9582061593989345
Pair: ISRG-MNST, Correlation: 0.9074008987363961
Pair: ISRG-MCO, Correlation: 0.9786282994033512
Pair: ISRG-MS, Correlation: 0.94487695977796
Pair: ISRG-MSI, Correlation: 0.9685643002602528
Pair: ISRG-MSCI, Correlation: 0.9508592477199709
Pair: ISRG-NDAQ, Correlation: 0.9574233171179787
Pair: ISRG-NTAP, Correlation: 0.9337775126765065
Pair: ISRG-NFLX, Correlation: 0.9454946400583082
Pair: ISRG-NEE, Correlation: 0.91624964421012
Pair: ISRG-NDSN, Correlation: 0.9489100122738474
Pair: ISRG-NSC, Correlation: 0.9323665130288954
Pair: ISRG-NVR, Correlation: 0.9778205492759687
Pair: ISRG-NXPI, Correlation: 0.9333576410040999
Pair: ISRG-ORLY, Correlation: 0.9401502238466634
Pair: ISRG-ODFL, Correlation: 0.9466006941584267
Pair: ISRG-ORCL, Correlation: 0.949199272516368
Pair: ISRG-PCAR, Correlation: 0.9196344410012046
Pair: ISRG-PKG, Correlation: 0.9466175301099843
Pair: ISRG-PANW, Correlation: 0.918162323145239
Pair: ISRG-PH, Correlation: 0.9513542691264074
Pair: ISRG-PAYX, Correlation: 0.9474840071385596
Pair: ISRG-PNR, Correlation: 0.9111923485557335
Pair: ISRG-PEP, Correlation: 0.9174552987791852
Pair: ISRG-PNC, Correlation: 0.9030227550907032
Pair: ISRG-POOL, Correlation: 0.9214300550128012
Pair: ISRG-PG, Correlation: 0.9502256979931177
Pair: ISRG-PGR, Correlation: 0.9520221005391559
Pair: ISRG-PLD, Correlation: 0.930453973835218
Pair: ISRG-PEG, Correlation: 0.9529973367654437
Pair: ISRG-PTC, Correlation: 0.9663858787355444
Pair: ISRG-PHM, Correlation: 0.9286564030163849
Pair: ISRG-QCOM, Correlation: 0.9235545400956072
Pair: ISRG-DGX, Correlation: 0.9368207787691709
Pair: ISRG-RJF, Correlation: 0.9371116572652887
Pair: ISRG-RF, Correlation: 0.9056803086580291
Pair: ISRG-RSG, Correlation: 0.9663828894048568
Pair: ISRG-RMD, Correlation: 0.9220642736621648
Pair: ISRG-ROK, Correlation: 0.9329616670657538
Pair: ISRG-ROL, Correlation: 0.9651886968098871
Pair: ISRG-ROP, Correlation: 0.9606821095508556
Pair: ISRG-ROST, Correlation: 0.933182247311947
Pair: ISRG-SPGI, Correlation: 0.9717209435043813
Pair: ISRG-CRM, Correlation: 0.9568287715383974
Pair: ISRG-STX, Correlation: 0.92253553432758
Pair: ISRG-NOW, Correlation: 0.9776705848585221
Pair: ISRG-SHW, Correlation: 0.9736125402620411
Pair: ISRG-SNA, Correlation: 0.9024920708006063
Pair: ISRG-SO, Correlation: 0.9417141294103446
Pair: ISRG-STE, Correlation: 0.9480822548088762
Pair: ISRG-SYK, Correlation: 0.9744274418327331
Pair: ISRG-SNPS, Correlation: 0.941410118946014
Pair: ISRG-TMUS, Correlation: 0.9603970102404815
Pair: ISRG-TEL, Correlation: 0.9436368181222994
Pair: ISRG-TDY, Correlation: 0.9342938145535529
Pair: ISRG-TER, Correlation: 0.9374108552358138
Pair: ISRG-TXN, Correlation: 0.9604173044387615
Pair: ISRG-TPL, Correlation: 0.9082339929613068
Pair: ISRG-TMO, Correlation: 0.9393056502959699
Pair: ISRG-TJX, Correlation: 0.9595840662680342
Pair: ISRG-TSCO, Correlation: 0.9422001759786288
Pair: ISRG-TT, Correlation: 0.9616958861126552
Pair: ISRG-TDG, Correlation: 0.9598034649062427
Pair: ISRG-TRV, Correlation: 0.9262197378947304
Pair: ISRG-TYL, Correlation: 0.9564055286669676
Pair: ISRG-UNP, Correlation: 0.9429118585437279
Pair: ISRG-URI, Correlation: 0.9342199335576812
Pair: ISRG-UNH, Correlation: 0.9421675072033494
Pair: ISRG-VLTO, Correlation: 0.9167076392329361
Pair: ISRG-VRSK, Correlation: 0.9687356778973879
Pair: ISRG-VRTX, Correlation: 0.9256729337883549
Pair: ISRG-V, Correlation: 0.9589698439754294
Pair: ISRG-VMC, Correlation: 0.9419960549512388
Pair: ISRG-WRB, Correlation: 0.940373194189504
Pair: ISRG-GWW, Correlation: 0.9155560852921436
Pair: ISRG-WMT, Correlation: 0.9734427713265605
Pair: ISRG-WM, Correlation: 0.9659654018909306
Pair: ISRG-WAT, Correlation: 0.9253427152563717
Pair: ISRG-WELL, Correlation: 0.905099222469111
Pair: ISRG-WST, Correlation: 0.9193744328579363
Pair: ISRG-WTW, Correlation: 0.9611914496921344
Pair: ISRG-WDAY, Correlation: 0.9153399815722693
Pair: ISRG-XYL, Correlation: 0.9644796145269389
Pair: ISRG-YUM, Correlation: 0.9446027464123804
Pair: ISRG-ZTS, Correlation: 0.9284268233609179
Pair: INVH-IQV, Correlation: 0.9612281059355678
Pair: INVH-J, Correlation: 0.9359053127533744
Pair: INVH-KEYS, Correlation: 0.9228851085325064
Pair: INVH-LH, Correlation: 0.9304407693829495
Pair: INVH-LYV, Correlation: 0.9192548443099519
Pair: INVH-LOW, Correlation: 0.9213054770744427
Pair: INVH-MTD, Correlation: 0.9194604546002976
Pair: INVH-MAA, Correlation: 0.9511875403695209
Pair: INVH-MCO, Correlation: 0.9031659929925457
Pair: INVH-MSCI, Correlation: 0.9292508146543399
Pair: INVH-NDAQ, Correlation: 0.9245127205720977
Pair: INVH-NDSN, Correlation: 0.9187040629698474
Pair: INVH-NSC, Correlation: 0.911995309960493
Pair: INVH-PAYX, Correlation: 0.9285669829621507
Pair: INVH-POOL, Correlation: 0.938941681218169
Pair: INVH-PG, Correlation: 0.9065431183060401
Pair: INVH-PLD, Correlation: 0.9652826472237976
Pair: INVH-PSA, Correlation: 0.925099789921086
Pair: INVH-RMD, Correlation: 0.9048361100597059
Pair: INVH-SPGI, Correlation: 0.9255529832624713
Pair: INVH-SHW, Correlation: 0.9116950053679531
Pair: INVH-STE, Correlation: 0.9458601330021487
Pair: INVH-TEL, Correlation: 0.9181370488748107
Pair: INVH-TDY, Correlation: 0.9130317412832363
Pair: INVH-TER, Correlation: 0.9026657973320876
Pair: INVH-TXN, Correlation: 0.92311785283428
Pair: INVH-TMO, Correlation: 0.938975278801551
Pair: INVH-UNP, Correlation: 0.928256202271776
Pair: INVH-WST, Correlation: 0.9258304124944218
Pair: INVH-ZTS, Correlation: 0.943763340188005
Pair: IQV-JBHT, Correlation: 0.9479884726696816
Pair: IQV-JKHY, Correlation: 0.9201348996020849
Pair: IQV-J, Correlation: 0.9516343979399717
Pair: IQV-JNJ, Correlation: 0.9564634736491178
Pair: IQV-JPM, Correlation: 0.9068769234604301
Pair: IQV-KDP, Correlation: 0.9645472473613687
Pair: IQV-KEYS, Correlation: 0.9713435318078125
Pair: IQV-LHX, Correlation: 0.9460474249913837
Pair: IQV-LH, Correlation: 0.9725498644630676
Pair: IQV-LRCX, Correlation: 0.9027061557458963
Pair: IQV-LIN, Correlation: 0.9100693382169146
Pair: IQV-LYV, Correlation: 0.9600752391653147
Pair: IQV-LOW, Correlation: 0.9588239122657831
Pair: IQV-LULU, Correlation: 0.9326189355822219
Pair: IQV-MMC, Correlation: 0.9278503790069594
Pair: IQV-MAS, Correlation: 0.9248948812756573
Pair: IQV-MA, Correlation: 0.9521027728658951
Pair: IQV-MCD, Correlation: 0.951531176156002
Pair: IQV-MTD, Correlation: 0.9756319590333535
Pair: IQV-MCHP, Correlation: 0.9531410092827168
Pair: IQV-MSFT, Correlation: 0.9332009406940098
Pair: IQV-MAA, Correlation: 0.9567183495493824
Pair: IQV-MOH, Correlation: 0.9483906783507589
Pair: IQV-MDLZ, Correlation: 0.9367994301295272
Pair: IQV-MNST, Correlation: 0.9275027856687141
Pair: IQV-MCO, Correlation: 0.9568261257360562
Pair: IQV-MS, Correlation: 0.9302530603281257
Pair: IQV-MSCI, Correlation: 0.9743234512139819
Pair: IQV-NDAQ, Correlation: 0.9681824811969945
Pair: IQV-NEE, Correlation: 0.9578847632042251
Pair: IQV-NKE, Correlation: 0.9038640356183538
Pair: IQV-NDSN, Correlation: 0.9678301763002257
Pair: IQV-NSC, Correlation: 0.9759986385082733
Pair: IQV-NOC, Correlation: 0.9030212991537097
Pair: IQV-NXPI, Correlation: 0.9143626944458325
Pair: IQV-ODFL, Correlation: 0.9255291756345525
Pair: IQV-PAYX, Correlation: 0.9620399454643687
Pair: IQV-PEP, Correlation: 0.9455290202946196
Pair: IQV-PNC, Correlation: 0.9209741998458226
Pair: IQV-POOL, Correlation: 0.9749047250256154
Pair: IQV-PPG, Correlation: 0.9133653276808598
Pair: IQV-PG, Correlation: 0.9454558085499148
Pair: IQV-PLD, Correlation: 0.9782327507039631
Pair: IQV-PEG, Correlation: 0.9192319358741976
Pair: IQV-PTC, Correlation: 0.9153557944959609
Pair: IQV-PSA, Correlation: 0.9160406213877047
Pair: IQV-DGX, Correlation: 0.9504085561258951
Pair: IQV-RJF, Correlation: 0.9054719660961663
Pair: IQV-RF, Correlation: 0.9094380808848627
Pair: IQV-RSG, Correlation: 0.9091649441205122
Pair: IQV-RMD, Correlation: 0.9595140823542494
Pair: IQV-RVTY, Correlation: 0.9362655149835538
Pair: IQV-ROK, Correlation: 0.9571653811654602
Pair: IQV-ROL, Correlation: 0.9325479844476362
Pair: IQV-ROP, Correlation: 0.9625008213518836
Pair: IQV-SPGI, Correlation: 0.9709818796890223
Pair: IQV-CRM, Correlation: 0.9238078975089431
Pair: IQV-SRE, Correlation: 0.9043242330254376
Pair: IQV-NOW, Correlation: 0.9279090204575579
Pair: IQV-SHW, Correlation: 0.9635581703941781
Pair: IQV-SO, Correlation: 0.9082109971238027
Pair: IQV-SBUX, Correlation: 0.9389731207522998
Pair: IQV-STE, Correlation: 0.9803423628701848
Pair: IQV-SYK, Correlation: 0.9368644085220851
Pair: IQV-SYY, Correlation: 0.9326375683985699
Pair: IQV-TMUS, Correlation: 0.9215824004631954
Pair: IQV-TGT, Correlation: 0.9203520897107054
Pair: IQV-TEL, Correlation: 0.9649702765305559
Pair: IQV-TDY, Correlation: 0.9706017354025455
Pair: IQV-TER, Correlation: 0.9527191031983065
Pair: IQV-TXN, Correlation: 0.9747139042674644
Pair: IQV-TMO, Correlation: 0.977401741453727
Pair: IQV-TYL, Correlation: 0.9413792821967554
Pair: IQV-UDR, Correlation: 0.90500689175209
Pair: IQV-UNP, Correlation: 0.9732331286202885
Pair: IQV-UPS, Correlation: 0.9257569863021149
Pair: IQV-UNH, Correlation: 0.94732494913962
Pair: IQV-VRSN, Correlation: 0.908685158009817
Pair: IQV-VRSK, Correlation: 0.9361422403545606
Pair: IQV-V, Correlation: 0.9543953196385926
Pair: IQV-WRB, Correlation: 0.9008609606616347
Pair: IQV-WM, Correlation: 0.9418572280226072
Pair: IQV-WAT, Correlation: 0.9708887329346593
Pair: IQV-WEC, Correlation: 0.9285524535937271
Pair: IQV-WST, Correlation: 0.9553061122094443
Pair: IQV-WTW, Correlation: 0.9481118233905895
Pair: IQV-WDAY, Correlation: 0.9207842575505676
Pair: IQV-XEL, Correlation: 0.9247378029348953
Pair: IQV-XYL, Correlation: 0.9528307520988635
Pair: IQV-YUM, Correlation: 0.9655243202097399
Pair: IQV-ZBRA, Correlation: 0.9133502621166241
Pair: IQV-ZTS, Correlation: 0.9801530039482945
Pair: IRM-JBL, Correlation: 0.9197112549640678
Pair: IRM-JPM, Correlation: 0.900758021502396
Pair: IRM-KKR, Correlation: 0.960457993966422
Pair: IRM-KLAC, Correlation: 0.9513426259334076
Pair: IRM-LEN, Correlation: 0.9472361010445634
Pair: IRM-LII, Correlation: 0.9140845536378368
Pair: IRM-LLY, Correlation: 0.9680637185476557
Pair: IRM-LIN, Correlation: 0.9228668559388493
Pair: IRM-L, Correlation: 0.9209161648516504
Pair: IRM-MPC, Correlation: 0.9203232761278
Pair: IRM-MMC, Correlation: 0.9133961185911326
Pair: IRM-MLM, Correlation: 0.9211041235046162
Pair: IRM-MCK, Correlation: 0.9293335202265708
Pair: IRM-MPWR, Correlation: 0.9387243118968127
Pair: IRM-MSI, Correlation: 0.951457362733933
Pair: IRM-NRG, Correlation: 0.9077268697301335
Pair: IRM-NVDA, Correlation: 0.944965366092017
Pair: IRM-NVR, Correlation: 0.9259918109105572
Pair: IRM-ORLY, Correlation: 0.9310556264538402
Pair: IRM-OKE, Correlation: 0.9073526295213519
Pair: IRM-ORCL, Correlation: 0.9675278169633977
Pair: IRM-PCAR, Correlation: 0.9327044345568338
Pair: IRM-PKG, Correlation: 0.904930332703007
Pair: IRM-PANW, Correlation: 0.9549302826087002
Pair: IRM-PH, Correlation: 0.9633399896806217
Pair: IRM-PGR, Correlation: 0.9574229134732216
Pair: IRM-PHM, Correlation: 0.9604997599045804
Pair: IRM-PWR, Correlation: 0.9658217748274373
Pair: IRM-RJF, Correlation: 0.907426701041129
Pair: IRM-RSG, Correlation: 0.9341953557650718
Pair: IRM-SO, Correlation: 0.9067856846539537
Pair: IRM-STLD, Correlation: 0.9321697637562629
Pair: IRM-SNPS, Correlation: 0.916695671477645
Pair: IRM-TPL, Correlation: 0.9185585849566199
Pair: IRM-TJX, Correlation: 0.9195447147061802
Pair: IRM-TSCO, Correlation: 0.91887723046584
Pair: IRM-TT, Correlation: 0.9625609989888471
Pair: IRM-TDG, Correlation: 0.9478018714425102
Pair: IRM-TRV, Correlation: 0.9065002147043159
Pair: IRM-URI, Correlation: 0.969228232944865
Pair: IRM-VLTO, Correlation: 0.9265002081845691
Pair: IRM-VRTX, Correlation: 0.9035751556360676
Pair: IRM-WRB, Correlation: 0.9164534858089421
Pair: IRM-GWW, Correlation: 0.9604131690217165
Pair: IRM-WMT, Correlation: 0.9170628529796531
Pair: IRM-WELL, Correlation: 0.9160561852461868
Pair: JBHT-JKHY, Correlation: 0.9226380676290349
Pair: JBHT-J, Correlation: 0.9395745376336234
Pair: JBHT-JNJ, Correlation: 0.9542105217912151
Pair: JBHT-JCI, Correlation: 0.938608198742076
Pair: JBHT-JPM, Correlation: 0.923068443608526
Pair: JBHT-KDP, Correlation: 0.9412151357682546
Pair: JBHT-KEYS, Correlation: 0.9329910779306777
Pair: JBHT-KR, Correlation: 0.9010124360484434
Pair: JBHT-LHX, Correlation: 0.9267206350543786
Pair: JBHT-LH, Correlation: 0.9706705798320703
Pair: JBHT-LIN, Correlation: 0.9278635699029698
Pair: JBHT-LYV, Correlation: 0.9444651518471302
Pair: JBHT-LKQ, Correlation: 0.933791810225148
Pair: JBHT-LMT, Correlation: 0.9267593346584491
Pair: JBHT-LOW, Correlation: 0.9712271637151406
Pair: JBHT-LULU, Correlation: 0.9183720811266148
Pair: JBHT-MAR, Correlation: 0.9213454708589878
Pair: JBHT-MMC, Correlation: 0.9543299237208266
Pair: JBHT-MLM, Correlation: 0.928193615269589
Pair: JBHT-MAS, Correlation: 0.9408153447397722
Pair: JBHT-MA, Correlation: 0.9435969837646182
Pair: JBHT-MCD, Correlation: 0.9580496395580689
Pair: JBHT-MRK, Correlation: 0.9112352818530968
Pair: JBHT-MET, Correlation: 0.9272972745286082
Pair: JBHT-MTD, Correlation: 0.958916918272002
Pair: JBHT-MGM, Correlation: 0.9202070486023135
Pair: JBHT-MCHP, Correlation: 0.9650839438959824
Pair: JBHT-MU, Correlation: 0.900068623862172
Pair: JBHT-MSFT, Correlation: 0.9286352929351108
Pair: JBHT-MAA, Correlation: 0.9394556329574436
Pair: JBHT-MOH, Correlation: 0.9556484257008001
Pair: JBHT-MDLZ, Correlation: 0.9549425315519754
Pair: JBHT-MNST, Correlation: 0.9578451416379381
Pair: JBHT-MCO, Correlation: 0.9476213291062552
Pair: JBHT-MS, Correlation: 0.9483799096932425
Pair: JBHT-MSI, Correlation: 0.9012037815249387
Pair: JBHT-MSCI, Correlation: 0.9477588564169321
Pair: JBHT-NDAQ, Correlation: 0.9607919954691748
Pair: JBHT-NEE, Correlation: 0.9366254424118552
Pair: JBHT-NDSN, Correlation: 0.9763288062286879
Pair: JBHT-NSC, Correlation: 0.9528139013956671
Pair: JBHT-NOC, Correlation: 0.9425339438350415
Pair: JBHT-NVR, Correlation: 0.9167209580088058
Pair: JBHT-NXPI, Correlation: 0.9449015681158799
Pair: JBHT-ORLY, Correlation: 0.9239548935707362
Pair: JBHT-ODFL, Correlation: 0.9515277277602672
Pair: JBHT-ON, Correlation: 0.910305748783861
Pair: JBHT-PKG, Correlation: 0.9370130979335356
Pair: JBHT-PAYX, Correlation: 0.9674641976341699
Pair: JBHT-PEP, Correlation: 0.9631488857828865
Pair: JBHT-PNC, Correlation: 0.9288482512236869
Pair: JBHT-POOL, Correlation: 0.9519840418531145
Pair: JBHT-PPG, Correlation: 0.9105010205051417
Pair: JBHT-PFG, Correlation: 0.9333287568012147
Pair: JBHT-PG, Correlation: 0.9473922589307486
Pair: JBHT-PLD, Correlation: 0.9658778716320262
Pair: JBHT-PEG, Correlation: 0.9233201466741803
Pair: JBHT-PTC, Correlation: 0.9375243292405271
Pair: JBHT-PSA, Correlation: 0.9460679447437628
Pair: JBHT-DGX, Correlation: 0.9580578136614801
Pair: JBHT-RJF, Correlation: 0.9551763546608715
Pair: JBHT-RF, Correlation: 0.9485236938047025
Pair: JBHT-RSG, Correlation: 0.9257956473837301
Pair: JBHT-RMD, Correlation: 0.9313977021507117
Pair: JBHT-RVTY, Correlation: 0.9210764404503473
Pair: JBHT-ROK, Correlation: 0.974559184577086
Pair: JBHT-ROL, Correlation: 0.9418403329485449
Pair: JBHT-ROP, Correlation: 0.9551808288452478
Pair: JBHT-ROST, Correlation: 0.9072850520027113
Pair: JBHT-SPGI, Correlation: 0.9538622968996366
Pair: JBHT-CRM, Correlation: 0.914380788410786
Pair: JBHT-STX, Correlation: 0.9212874945009595
Pair: JBHT-SRE, Correlation: 0.9283574365332286
Pair: JBHT-NOW, Correlation: 0.9102361071200782
Pair: JBHT-SHW, Correlation: 0.9557839875626819
Pair: JBHT-SNA, Correlation: 0.9380244064577853
Pair: JBHT-SO, Correlation: 0.9241220491582779
Pair: JBHT-SBUX, Correlation: 0.9280534689915863
Pair: JBHT-STE, Correlation: 0.9583907148784024
Pair: JBHT-SYK, Correlation: 0.9420324023409283
Pair: JBHT-SNPS, Correlation: 0.9043219246235906
Pair: JBHT-SYY, Correlation: 0.932963285201884
Pair: JBHT-TMUS, Correlation: 0.932459533574948
Pair: JBHT-TEL, Correlation: 0.9742525411697172
Pair: JBHT-TDY, Correlation: 0.9496925326354007
Pair: JBHT-TER, Correlation: 0.9220062590359362
Pair: JBHT-TXN, Correlation: 0.9607812844282533
Pair: JBHT-TXT, Correlation: 0.9171488667176098
Pair: JBHT-TMO, Correlation: 0.9639394877743588
Pair: JBHT-TJX, Correlation: 0.9217762345053395
Pair: JBHT-TSCO, Correlation: 0.929707947501697
Pair: JBHT-TRV, Correlation: 0.9321206765386443
Pair: JBHT-TYL, Correlation: 0.9341507296415461
Pair: JBHT-ULTA, Correlation: 0.92505449945676
Pair: JBHT-UNP, Correlation: 0.9690768375351532
Pair: JBHT-UPS, Correlation: 0.9588568602511756
Pair: JBHT-UNH, Correlation: 0.9664667557510777
Pair: JBHT-VRSK, Correlation: 0.9414224561650334
Pair: JBHT-V, Correlation: 0.946314053138061
Pair: JBHT-VMC, Correlation: 0.9340174919624172
Pair: JBHT-WRB, Correlation: 0.9300509504975452
Pair: JBHT-WMT, Correlation: 0.9038447654347713
Pair: JBHT-WM, Correlation: 0.9443856654201479
Pair: JBHT-WAT, Correlation: 0.9554263610682591
Pair: JBHT-WEC, Correlation: 0.9177940004586171
Pair: JBHT-WST, Correlation: 0.9480249600626318
Pair: JBHT-WY, Correlation: 0.9184126037222503
Pair: JBHT-WTW, Correlation: 0.9439667195625091
Pair: JBHT-XEL, Correlation: 0.9178568832137118
Pair: JBHT-XYL, Correlation: 0.927837115534744
Pair: JBHT-YUM, Correlation: 0.9588270826893595
Pair: JBHT-ZTS, Correlation: 0.9408873089709691
Pair: JBL-KKR, Correlation: 0.917421670033406
Pair: JBL-KLAC, Correlation: 0.9609974345015954
Pair: JBL-LRCX, Correlation: 0.9416557315828948
Pair: JBL-LEN, Correlation: 0.9420408707833109
Pair: JBL-LLY, Correlation: 0.9542219586681095
Pair: JBL-LIN, Correlation: 0.9546692502073603
Pair: JBL-L, Correlation: 0.902996151185148
Pair: JBL-MPC, Correlation: 0.9446332718707701
Pair: JBL-MAR, Correlation: 0.900506109690872
Pair: JBL-MMC, Correlation: 0.9287430548133409
Pair: JBL-MLM, Correlation: 0.9367911226108799
Pair: JBL-MCK, Correlation: 0.9273803715068469
Pair: JBL-MRK, Correlation: 0.9065763516749634
Pair: JBL-MSFT, Correlation: 0.934026503263813
Pair: JBL-MPWR, Correlation: 0.9341768576824717
Pair: JBL-MSI, Correlation: 0.9399230201164581
Pair: JBL-NUE, Correlation: 0.950241266104295
Pair: JBL-NVR, Correlation: 0.9206588022475451
Pair: JBL-ORLY, Correlation: 0.9498580873616184
Pair: JBL-ODFL, Correlation: 0.9461784286304884
Pair: JBL-ON, Correlation: 0.9336588252986384
Pair: JBL-ORCL, Correlation: 0.9494228493459546
Pair: JBL-PCAR, Correlation: 0.9647290305474632
Pair: JBL-PANW, Correlation: 0.9627826242216109
Pair: JBL-PH, Correlation: 0.9578179955734184
Pair: JBL-PGR, Correlation: 0.9377645313296625
Pair: JBL-PTC, Correlation: 0.9016060417560025
Pair: JBL-PHM, Correlation: 0.9439830907533188
Pair: JBL-PWR, Correlation: 0.9632188754206366
Pair: JBL-RJF, Correlation: 0.9113859490396105
Pair: JBL-RSG, Correlation: 0.9348458681631906
Pair: JBL-STLD, Correlation: 0.9608132270575435
Pair: JBL-SNPS, Correlation: 0.9708653412413166
Pair: JBL-TJX, Correlation: 0.9146323334527778
Pair: JBL-TSCO, Correlation: 0.9239103458958798
Pair: JBL-TT, Correlation: 0.9374850813902429
Pair: JBL-TDG, Correlation: 0.9435009780183959
Pair: JBL-URI, Correlation: 0.9559236331732589
Pair: JBL-VRTX, Correlation: 0.9035199524044947
Pair: JBL-WRB, Correlation: 0.9152949978690489
Pair: JBL-GWW, Correlation: 0.9679659026217627
Pair: JBL-WM, Correlation: 0.9061253994559777
Pair: JKHY-JNJ, Correlation: 0.9762103537283929
Pair: JKHY-KDP, Correlation: 0.9715412947386431
Pair: JKHY-KMB, Correlation: 0.9316604442425401
Pair: JKHY-LHX, Correlation: 0.977981796234145
Pair: JKHY-LH, Correlation: 0.9244668429218207
Pair: JKHY-LDOS, Correlation: 0.9242008658995914
Pair: JKHY-LYV, Correlation: 0.9250721001979515
Pair: JKHY-LMT, Correlation: 0.9582784800778614
Pair: JKHY-LOW, Correlation: 0.9102565613063178
Pair: JKHY-MMC, Correlation: 0.9026679336688604
Pair: JKHY-MAS, Correlation: 0.9285315957205055
Pair: JKHY-MA, Correlation: 0.9439050677633091
Pair: JKHY-MKC, Correlation: 0.9649428934431497
Pair: JKHY-MCD, Correlation: 0.9422446098683576
Pair: JKHY-MDT, Correlation: 0.9087985602540974
Pair: JKHY-MTD, Correlation: 0.9278478328783227
Pair: JKHY-MCHP, Correlation: 0.9114602264565712
Pair: JKHY-MAA, Correlation: 0.9235418953056477
Pair: JKHY-MDLZ, Correlation: 0.9340572153804328
Pair: JKHY-MNST, Correlation: 0.936423154835346
Pair: JKHY-MCO, Correlation: 0.9248372839005858
Pair: JKHY-NDAQ, Correlation: 0.932789162587391
Pair: JKHY-NEE, Correlation: 0.9572795319212111
Pair: JKHY-NKE, Correlation: 0.9069681014917064
Pair: JKHY-NI, Correlation: 0.9438226796615454
Pair: JKHY-NDSN, Correlation: 0.9469407875046597
Pair: JKHY-NSC, Correlation: 0.9503762311402933
Pair: JKHY-NTRS, Correlation: 0.9048143900378554
Pair: JKHY-NOC, Correlation: 0.9596089716020166
Pair: JKHY-PKG, Correlation: 0.904081034713856
Pair: JKHY-PAYX, Correlation: 0.9331950996695085
Pair: JKHY-PEP, Correlation: 0.9457989307748125
Pair: JKHY-PFE, Correlation: 0.9021032418934972
Pair: JKHY-PNW, Correlation: 0.9124416606732552
Pair: JKHY-PNC, Correlation: 0.9187634920307807
Pair: JKHY-POOL, Correlation: 0.9090941881903304
Pair: JKHY-PG, Correlation: 0.9201337601284503
Pair: JKHY-PLD, Correlation: 0.9320724715196986
Pair: JKHY-PEG, Correlation: 0.9371554184785531
Pair: JKHY-PSA, Correlation: 0.9059316727679056
Pair: JKHY-DGX, Correlation: 0.9477001056808587
Pair: JKHY-O, Correlation: 0.9475555519717258
Pair: JKHY-RF, Correlation: 0.9066593068484832
Pair: JKHY-RMD, Correlation: 0.9335943329258226
Pair: JKHY-RVTY, Correlation: 0.9250222440865031
Pair: JKHY-ROK, Correlation: 0.9250784134023418
Pair: JKHY-ROL, Correlation: 0.9449575589352212
Pair: JKHY-ROP, Correlation: 0.9564656127252629
Pair: JKHY-ROST, Correlation: 0.9332443034039384
Pair: JKHY-SPGI, Correlation: 0.9405225774488134
Pair: JKHY-CRM, Correlation: 0.9171583048253131
Pair: JKHY-SBAC, Correlation: 0.944635801568243
Pair: JKHY-SRE, Correlation: 0.948272794461113
Pair: JKHY-SHW, Correlation: 0.9263812482254868
Pair: JKHY-SO, Correlation: 0.9023054100982243
Pair: JKHY-SBUX, Correlation: 0.9293302004287913
Pair: JKHY-STE, Correlation: 0.9462753874705359
Pair: JKHY-SYK, Correlation: 0.9250261128403574
Pair: JKHY-SYY, Correlation: 0.9645666553586452
Pair: JKHY-TMUS, Correlation: 0.9167519113341076
Pair: JKHY-TTWO, Correlation: 0.9395848817522139
Pair: JKHY-TEL, Correlation: 0.9252588226825517
Pair: JKHY-TDY, Correlation: 0.9538735679330282
Pair: JKHY-TXN, Correlation: 0.9463375480960697
Pair: JKHY-TMO, Correlation: 0.9326193649818563
Pair: JKHY-TYL, Correlation: 0.9316074592789277
Pair: JKHY-UDR, Correlation: 0.9287051046381322
Pair: JKHY-ULTA, Correlation: 0.9016921933080999
Pair: JKHY-UNP, Correlation: 0.9537035194867076
Pair: JKHY-UNH, Correlation: 0.933097744858772
Pair: JKHY-VRSN, Correlation: 0.9616713502824582
Pair: JKHY-VRSK, Correlation: 0.9260657172903485
Pair: JKHY-V, Correlation: 0.9580881565029097
Pair: JKHY-WM, Correlation: 0.9199160369975817
Pair: JKHY-WAT, Correlation: 0.9366917343785037
Pair: JKHY-WEC, Correlation: 0.978631561547118
Pair: JKHY-WTW, Correlation: 0.9381048503686049
Pair: JKHY-XEL, Correlation: 0.9776461357369995
Pair: JKHY-XYL, Correlation: 0.9096100416191624
Pair: JKHY-YUM, Correlation: 0.9433045823768716
Pair: JKHY-ZTS, Correlation: 0.9276690505851659
Pair: J-JCI, Correlation: 0.9296184847185588
Pair: J-JPM, Correlation: 0.9430870345652662
Pair: J-KDP, Correlation: 0.9285429073087756
Pair: J-KEYS, Correlation: 0.9456330612587505
Pair: J-KKR, Correlation: 0.9128539314026575
Pair: J-KLAC, Correlation: 0.919627680276782
Pair: J-LHX, Correlation: 0.9228904061067331
Pair: J-LH, Correlation: 0.9486271114073638
Pair: J-LRCX, Correlation: 0.9487390742303642
Pair: J-LDOS, Correlation: 0.9365431198842273
Pair: J-LEN, Correlation: 0.9048620720280519
Pair: J-LIN, Correlation: 0.9639451613989746
Pair: J-LYV, Correlation: 0.9517595371312575
Pair: J-LOW, Correlation: 0.9681386731109475
Pair: J-LULU, Correlation: 0.9296342591851657
Pair: J-MAR, Correlation: 0.9045307213177828
Pair: J-MMC, Correlation: 0.9590958186546509
Pair: J-MLM, Correlation: 0.9393271571901135
Pair: J-MAS, Correlation: 0.9287940273539365
Pair: J-MA, Correlation: 0.9606945545629171
Pair: J-MCD, Correlation: 0.9488336609081123
Pair: J-MRK, Correlation: 0.9040469751588699
Pair: J-MET, Correlation: 0.9330243303504852
Pair: J-MTD, Correlation: 0.9489580614812808
Pair: J-MCHP, Correlation: 0.9516345731599545
Pair: J-MU, Correlation: 0.9221108627958648
Pair: J-MSFT, Correlation: 0.9677078603943898
Pair: J-MAA, Correlation: 0.9251070818126649
Pair: J-MOH, Correlation: 0.9600354292450262
Pair: J-MDLZ, Correlation: 0.919640157282908
Pair: J-MPWR, Correlation: 0.9413386831510114
Pair: J-MCO, Correlation: 0.9646152634600392
Pair: J-MS, Correlation: 0.9591711295114054
Pair: J-MSI, Correlation: 0.948296684257292
Pair: J-MSCI, Correlation: 0.9712717009417244
Pair: J-NDAQ, Correlation: 0.9642708509980493
Pair: J-NEE, Correlation: 0.9358109831976188
Pair: J-NDSN, Correlation: 0.9603155739779515
Pair: J-NSC, Correlation: 0.9524578455473471
Pair: J-NVR, Correlation: 0.9391516165028327
Pair: J-NXPI, Correlation: 0.9250563932222228
Pair: J-ORLY, Correlation: 0.9305179792542717
Pair: J-ODFL, Correlation: 0.9633652442080974
Pair: J-ORCL, Correlation: 0.9141998317188824
Pair: J-PKG, Correlation: 0.9278299426681896
Pair: J-PH, Correlation: 0.9220003161905951
Pair: J-PAYX, Correlation: 0.9668633020405464
Pair: J-PEP, Correlation: 0.9341446279293436
Pair: J-PNC, Correlation: 0.9051357697735856
Pair: J-POOL, Correlation: 0.9543792613290133
Pair: J-PG, Correlation: 0.9656128278794359
Pair: J-PGR, Correlation: 0.9245104726163241
Pair: J-PLD, Correlation: 0.9605436956505904
Pair: J-PEG, Correlation: 0.9301144950611517
Pair: J-PTC, Correlation: 0.9444730256707881
Pair: J-PSA, Correlation: 0.907238025184412
Pair: J-QCOM, Correlation: 0.9474821958444081
Pair: J-DGX, Correlation: 0.9326125985960784
Pair: J-RJF, Correlation: 0.9487435206955891
Pair: J-RF, Correlation: 0.922144206421283
Pair: J-RSG, Correlation: 0.9533091553212335
Pair: J-RMD, Correlation: 0.9410947314692633
Pair: J-ROK, Correlation: 0.9401628606589056
Pair: J-ROL, Correlation: 0.9390417943974927
Pair: J-ROP, Correlation: 0.9481328532631645
Pair: J-SPGI, Correlation: 0.9650745955224479
Pair: J-CRM, Correlation: 0.9240895789994638
Pair: J-STX, Correlation: 0.9342406057177692
Pair: J-NOW, Correlation: 0.9581564038501451
Pair: J-SHW, Correlation: 0.9650719689407832
Pair: J-SO, Correlation: 0.9458478799858764
Pair: J-STE, Correlation: 0.9639332931072776
Pair: J-SYK, Correlation: 0.9481672281609
Pair: J-SNPS, Correlation: 0.9408633479405343
Pair: J-TMUS, Correlation: 0.9574982793891857
Pair: J-TGT, Correlation: 0.9098858925610012
Pair: J-TEL, Correlation: 0.9462886204006662
Pair: J-TDY, Correlation: 0.9580739170586793
Pair: J-TER, Correlation: 0.9546555668722928
Pair: J-TSLA, Correlation: 0.9116692396528531
Pair: J-TXN, Correlation: 0.9641486124629532
Pair: J-TPL, Correlation: 0.9158136377406605
Pair: J-TMO, Correlation: 0.9658074173574651
Pair: J-TJX, Correlation: 0.9296750529436263
Pair: J-TSCO, Correlation: 0.9503139621485335
Pair: J-TT, Correlation: 0.9289309342719911
Pair: J-TDG, Correlation: 0.9227777606276448
Pair: J-TRV, Correlation: 0.9079875875903708
Pair: J-TYL, Correlation: 0.9395053486602386
Pair: J-UNP, Correlation: 0.9553974808970986
Pair: J-UPS, Correlation: 0.9082365721816278
Pair: J-URI, Correlation: 0.9059162888981287
Pair: J-UNH, Correlation: 0.957007818096391
Pair: J-VRSK, Correlation: 0.956251685378982
Pair: J-VICI, Correlation: 0.9113220083827939
Pair: J-V, Correlation: 0.9471102873163272
Pair: J-VMC, Correlation: 0.9199994304520972
Pair: J-WRB, Correlation: 0.9481760293395453
Pair: J-WMT, Correlation: 0.9496544838016002
Pair: J-WM, Correlation: 0.9627155961180512
Pair: J-WAT, Correlation: 0.9384465647010372
Pair: J-WST, Correlation: 0.9508253396942846
Pair: J-WTW, Correlation: 0.954074964155267
Pair: J-XYL, Correlation: 0.9399093712760401
Pair: J-YUM, Correlation: 0.9433710229704462
Pair: J-ZTS, Correlation: 0.9455273898780223
Pair: JNJ-JCI, Correlation: 0.9020564179093667
Pair: JNJ-JPM, Correlation: 0.9081768914061269
Pair: JNJ-KDP, Correlation: 0.9664203246992277
Pair: JNJ-KEYS, Correlation: 0.9370283636309702
Pair: JNJ-KMB, Correlation: 0.9488259277277767
Pair: JNJ-LHX, Correlation: 0.963577126383385
Pair: JNJ-LH, Correlation: 0.9497878194126317
Pair: JNJ-LDOS, Correlation: 0.9109487370624739
Pair: JNJ-LYV, Correlation: 0.9367462189528127
Pair: JNJ-LMT, Correlation: 0.9636623538316125
Pair: JNJ-LOW, Correlation: 0.9351771683958561
Pair: JNJ-MAR, Correlation: 0.9050428252922725
Pair: JNJ-MMC, Correlation: 0.9270853209385158
Pair: JNJ-MAS, Correlation: 0.9445086818797226
Pair: JNJ-MA, Correlation: 0.9420695560120812
Pair: JNJ-MKC, Correlation: 0.9492876367673485
Pair: JNJ-MCD, Correlation: 0.9538213058170215
Pair: JNJ-MDT, Correlation: 0.9118795493877881
Pair: JNJ-MRK, Correlation: 0.906639231972682
Pair: JNJ-MTD, Correlation: 0.9502859913579402
Pair: JNJ-MGM, Correlation: 0.9002462647496937
Pair: JNJ-MCHP, Correlation: 0.9377328651189231
Pair: JNJ-MAA, Correlation: 0.9416616973977643
Pair: JNJ-MOH, Correlation: 0.9125675589900262
Pair: JNJ-MDLZ, Correlation: 0.9626708983879467
Pair: JNJ-MNST, Correlation: 0.9636591181334767
Pair: JNJ-MCO, Correlation: 0.9340247117181386
Pair: JNJ-MSCI, Correlation: 0.9090396956033145
Pair: JNJ-NDAQ, Correlation: 0.9463156206150827
Pair: JNJ-NEE, Correlation: 0.9582020696934691
Pair: JNJ-NKE, Correlation: 0.9158771367605394
Pair: JNJ-NI, Correlation: 0.9523702229490313
Pair: JNJ-NDSN, Correlation: 0.9601301652131958
Pair: JNJ-NSC, Correlation: 0.9554992159453454
Pair: JNJ-NTRS, Correlation: 0.9110837521309412
Pair: JNJ-NOC, Correlation: 0.9667300188556629
Pair: JNJ-NXPI, Correlation: 0.9179911101595497
Pair: JNJ-PKG, Correlation: 0.9321391180912518
Pair: JNJ-PAYX, Correlation: 0.9520745012611476
Pair: JNJ-PEP, Correlation: 0.9689124140805835
Pair: JNJ-PFE, Correlation: 0.9187499274697123
Pair: JNJ-PNW, Correlation: 0.917400661333351
Pair: JNJ-PNC, Correlation: 0.9363881283459814
Pair: JNJ-POOL, Correlation: 0.9236264685809886
Pair: JNJ-PPG, Correlation: 0.9307719203073624
Pair: JNJ-PFG, Correlation: 0.9117980024994996
Pair: JNJ-PG, Correlation: 0.9397919180085589
Pair: JNJ-PLD, Correlation: 0.9452429641337294
Pair: JNJ-PEG, Correlation: 0.9438272936801749
Pair: JNJ-PTC, Correlation: 0.913002570568953
Pair: JNJ-PSA, Correlation: 0.9392997741034287
Pair: JNJ-DGX, Correlation: 0.9622601552473323
Pair: JNJ-RJF, Correlation: 0.9097852122133011
Pair: JNJ-RTX, Correlation: 0.9064877858051389
Pair: JNJ-O, Correlation: 0.9519755028955414
Pair: JNJ-RF, Correlation: 0.9314649445834179
Pair: JNJ-RMD, Correlation: 0.9318254313190647
Pair: JNJ-RVTY, Correlation: 0.935617553993973
Pair: JNJ-ROK, Correlation: 0.9520905910338717
Pair: JNJ-ROL, Correlation: 0.9465992724197281
Pair: JNJ-ROP, Correlation: 0.9594201689172913
Pair: JNJ-ROST, Correlation: 0.9329893629383926
Pair: JNJ-SPGI, Correlation: 0.943875934611789
Pair: JNJ-CRM, Correlation: 0.9114295655000622
Pair: JNJ-SBAC, Correlation: 0.9306454709128185
Pair: JNJ-SRE, Correlation: 0.9651840277552175
Pair: JNJ-SHW, Correlation: 0.9413752418586536
Pair: JNJ-SJM, Correlation: 0.9149238045809586
Pair: JNJ-SNA, Correlation: 0.9177211213520506
Pair: JNJ-SO, Correlation: 0.9209974834781688
Pair: JNJ-SBUX, Correlation: 0.9513950807265897
Pair: JNJ-STE, Correlation: 0.9536014981410318
Pair: JNJ-SYK, Correlation: 0.9375040669333002
Pair: JNJ-SYY, Correlation: 0.9664271126008485
Pair: JNJ-TMUS, Correlation: 0.9288826270982261
Pair: JNJ-TTWO, Correlation: 0.9218881423634853
Pair: JNJ-TEL, Correlation: 0.9563405985544592
Pair: JNJ-TDY, Correlation: 0.9519951950579356
Pair: JNJ-TXN, Correlation: 0.9574240440047156
Pair: JNJ-TMO, Correlation: 0.9474577922806816
Pair: JNJ-TJX, Correlation: 0.906337033196511
Pair: JNJ-TRV, Correlation: 0.9300653570897702
Pair: JNJ-TYL, Correlation: 0.9385952890194429
Pair: JNJ-UDR, Correlation: 0.9357403495228518
Pair: JNJ-ULTA, Correlation: 0.9348019023568662
Pair: JNJ-UNP, Correlation: 0.9644576599821332
Pair: JNJ-UPS, Correlation: 0.9299652326414944
Pair: JNJ-UNH, Correlation: 0.9484406423017869
Pair: JNJ-VRSN, Correlation: 0.9403069804283111
Pair: JNJ-VRSK, Correlation: 0.9305322295792181
Pair: JNJ-VICI, Correlation: 0.907165293506119
Pair: JNJ-V, Correlation: 0.9566951350331856
Pair: JNJ-VMC, Correlation: 0.9186426557578393
Pair: JNJ-WRB, Correlation: 0.9087347080213759
Pair: JNJ-WM, Correlation: 0.930039714407739
Pair: JNJ-WAT, Correlation: 0.9566610201073552
Pair: JNJ-WEC, Correlation: 0.971963027529121
Pair: JNJ-WST, Correlation: 0.903848724981635
Pair: JNJ-WTW, Correlation: 0.9466266455576815
Pair: JNJ-XEL, Correlation: 0.9711988328268392
Pair: JNJ-XYL, Correlation: 0.9304853111215187
Pair: JNJ-YUM, Correlation: 0.9577240323191445
Pair: JNJ-ZTS, Correlation: 0.9485900924425851
Pair: JCI-JPM, Correlation: 0.9258982336497613
Pair: JCI-KR, Correlation: 0.9000407555777215
Pair: JCI-LH, Correlation: 0.9414581342028678
Pair: JCI-LEN, Correlation: 0.9137517616492716
Pair: JCI-LIN, Correlation: 0.9189006535047238
Pair: JCI-LYV, Correlation: 0.9223675502786857
Pair: JCI-LKQ, Correlation: 0.9093626860441496
Pair: JCI-LOW, Correlation: 0.9543418896457299
Pair: JCI-MMC, Correlation: 0.9359782936333714
Pair: JCI-MLM, Correlation: 0.9346449576293278
Pair: JCI-MAS, Correlation: 0.9213140561746305
Pair: JCI-MA, Correlation: 0.9036973780305407
Pair: JCI-MCD, Correlation: 0.9089905413436088
Pair: JCI-MET, Correlation: 0.9441100445466452
Pair: JCI-MTD, Correlation: 0.9400637400307867
Pair: JCI-MGM, Correlation: 0.9164638045023856
Pair: JCI-MCHP, Correlation: 0.9300197150998455
Pair: JCI-MSFT, Correlation: 0.9127964428184062
Pair: JCI-MAA, Correlation: 0.9267450031302692
Pair: JCI-MOH, Correlation: 0.9026149704119301
Pair: JCI-MDLZ, Correlation: 0.9259697178768957
Pair: JCI-MPWR, Correlation: 0.9045059883814809
Pair: JCI-MNST, Correlation: 0.9071375025830173
Pair: JCI-MCO, Correlation: 0.9355940157652869
Pair: JCI-MS, Correlation: 0.9570231817100274
Pair: JCI-MSI, Correlation: 0.9126733360314555
Pair: JCI-MSCI, Correlation: 0.9199669377232622
Pair: JCI-NDAQ, Correlation: 0.9489505672697964
Pair: JCI-NEE, Correlation: 0.9071846299769423
Pair: JCI-NDSN, Correlation: 0.933456089195882
Pair: JCI-NSC, Correlation: 0.9143079630860764
Pair: JCI-NVR, Correlation: 0.9116364442563304
Pair: JCI-NXPI, Correlation: 0.950780270987654
Pair: JCI-ORLY, Correlation: 0.912118449422408
Pair: JCI-ODFL, Correlation: 0.9196938176728845
Pair: JCI-ORCL, Correlation: 0.9061169879546153
Pair: JCI-PKG, Correlation: 0.9258818802165321
Pair: JCI-PAYX, Correlation: 0.9426569701819847
Pair: JCI-PNR, Correlation: 0.9340101247542482
Pair: JCI-PEP, Correlation: 0.9255765227076237
Pair: JCI-PM, Correlation: 0.9135796265684536
Pair: JCI-PNC, Correlation: 0.9199223370616485
Pair: JCI-POOL, Correlation: 0.918115164500976
Pair: JCI-PFG, Correlation: 0.9316728411514009
Pair: JCI-PG, Correlation: 0.9321896660344124
Pair: JCI-PLD, Correlation: 0.9235251836026815
Pair: JCI-PRU, Correlation: 0.909294522473319
Pair: JCI-PEG, Correlation: 0.9139370846869166
Pair: JCI-PTC, Correlation: 0.9072058989326103
Pair: JCI-PSA, Correlation: 0.9448671936308242
Pair: JCI-QCOM, Correlation: 0.9175339673109232
Pair: JCI-DGX, Correlation: 0.9281913344266713
Pair: JCI-RJF, Correlation: 0.9454265935695669
Pair: JCI-RTX, Correlation: 0.9136903259938818
Pair: JCI-RF, Correlation: 0.92706422479941
Pair: JCI-RSG, Correlation: 0.9138401594438581
Pair: JCI-RMD, Correlation: 0.9095411698567862
Pair: JCI-ROK, Correlation: 0.9375434968590294
Pair: JCI-ROP, Correlation: 0.9109316583787217
Pair: JCI-SPGI, Correlation: 0.926910715870888
Pair: JCI-STX, Correlation: 0.9388246384133109
Pair: JCI-SRE, Correlation: 0.9023366036071749
Pair: JCI-SHW, Correlation: 0.9426523135921282
Pair: JCI-SNA, Correlation: 0.9356625512524617
Pair: JCI-SO, Correlation: 0.9230002740643606
Pair: JCI-SBUX, Correlation: 0.9028652482161782
Pair: JCI-STE, Correlation: 0.9156404094114556
Pair: JCI-SYK, Correlation: 0.9209967003916824
Pair: JCI-TMUS, Correlation: 0.9199217426866206
Pair: JCI-TEL, Correlation: 0.957648110993687
Pair: JCI-TER, Correlation: 0.915273407441922
Pair: JCI-TXN, Correlation: 0.9365180637471203
Pair: JCI-TXT, Correlation: 0.9013203317388309
Pair: JCI-TMO, Correlation: 0.9312876767852668
Pair: JCI-TJX, Correlation: 0.9192660121133379
Pair: JCI-TSCO, Correlation: 0.9398413782051751
Pair: JCI-TT, Correlation: 0.9048520007962756
Pair: JCI-TRV, Correlation: 0.9283665776031428
Pair: JCI-TYL, Correlation: 0.9240051588051127
Pair: JCI-UNP, Correlation: 0.9253020216572551
Pair: JCI-UPS, Correlation: 0.9212100597822571
Pair: JCI-UNH, Correlation: 0.9181231093956439
Pair: JCI-VLTO, Correlation: 0.9187823909095834
Pair: JCI-VRSK, Correlation: 0.9114066580101591
Pair: JCI-V, Correlation: 0.9022344344780094
Pair: JCI-VMC, Correlation: 0.9320979974927144
Pair: JCI-WRB, Correlation: 0.9080226621392541
Pair: JCI-WMT, Correlation: 0.9082642671647837
Pair: JCI-WM, Correlation: 0.9244824800348167
Pair: JCI-WAT, Correlation: 0.9322323046500443
Pair: JCI-WELL, Correlation: 0.9030578821145788
Pair: JCI-WST, Correlation: 0.9127558650422861
Pair: JCI-WTW, Correlation: 0.925330783737594
Pair: JCI-XYL, Correlation: 0.9184627548927624
Pair: JCI-YUM, Correlation: 0.9256527503586925
Pair: JPM-KDP, Correlation: 0.9144956715782033
Pair: JPM-KKR, Correlation: 0.9341301768680208
Pair: JPM-KLAC, Correlation: 0.9310607382567654
Pair: JPM-LHX, Correlation: 0.9299503087008586
Pair: JPM-LH, Correlation: 0.9382116347141998
Pair: JPM-LRCX, Correlation: 0.9368806651609222
Pair: JPM-LDOS, Correlation: 0.9642813938738807
Pair: JPM-LEN, Correlation: 0.9479705232388209
Pair: JPM-LII, Correlation: 0.9758983023095533
Pair: JPM-LIN, Correlation: 0.9516436650228665
Pair: JPM-LYV, Correlation: 0.9475732602715827
Pair: JPM-LMT, Correlation: 0.9394125296831618
Pair: JPM-L, Correlation: 0.9132943491039338
Pair: JPM-LOW, Correlation: 0.9538881126433182
Pair: JPM-MAR, Correlation: 0.9730043199466506
Pair: JPM-MMC, Correlation: 0.9636663861131219
Pair: JPM-MLM, Correlation: 0.9727005798052673
Pair: JPM-MAS, Correlation: 0.9683185499521423
Pair: JPM-MA, Correlation: 0.9648907918173315
Pair: JPM-MCD, Correlation: 0.9472391338376748
Pair: JPM-MRK, Correlation: 0.9279754127060539
Pair: JPM-META, Correlation: 0.9408423053310233
Pair: JPM-MET, Correlation: 0.9390241986814817
Pair: JPM-MTD, Correlation: 0.9234539288453584
Pair: JPM-MCHP, Correlation: 0.9541055785041679
Pair: JPM-MU, Correlation: 0.9570263936576294
Pair: JPM-MSFT, Correlation: 0.9552910329943256
Pair: JPM-MOH, Correlation: 0.914309630421668
Pair: JPM-MDLZ, Correlation: 0.9307264514968492
Pair: JPM-MPWR, Correlation: 0.9405970295847003
Pair: JPM-MNST, Correlation: 0.9217276849154725
Pair: JPM-MCO, Correlation: 0.9714403946653662
Pair: JPM-MS, Correlation: 0.9550347961563703
Pair: JPM-MSI, Correlation: 0.9633707846003569
Pair: JPM-MSCI, Correlation: 0.9258435841349842
Pair: JPM-NDAQ, Correlation: 0.9530198145051296
Pair: JPM-NTAP, Correlation: 0.9320627127063669
Pair: JPM-NFLX, Correlation: 0.9330436545405421
Pair: JPM-NEE, Correlation: 0.9054225726769046
Pair: JPM-NDSN, Correlation: 0.950461422336349
Pair: JPM-NSC, Correlation: 0.9319485965799642
Pair: JPM-NOC, Correlation: 0.9259403391426811
Pair: JPM-NVR, Correlation: 0.9823448117387296
Pair: JPM-NXPI, Correlation: 0.9589970210109893
Pair: JPM-ORLY, Correlation: 0.9417397677458543
Pair: JPM-ODFL, Correlation: 0.9342128457356096
Pair: JPM-OKE, Correlation: 0.9262818266582175
Pair: JPM-ORCL, Correlation: 0.9447005812180316
Pair: JPM-OTIS, Correlation: 0.9022766633982741
Pair: JPM-PCAR, Correlation: 0.9345444478368851
Pair: JPM-PKG, Correlation: 0.9754239414531333
Pair: JPM-PANW, Correlation: 0.9184879913454684
Pair: JPM-PH, Correlation: 0.9585860198439962
Pair: JPM-PAYX, Correlation: 0.9542831846744021
Pair: JPM-PNR, Correlation: 0.9297058843064526
Pair: JPM-PEP, Correlation: 0.9289544283681743
Pair: JPM-PNC, Correlation: 0.940298975873673
Pair: JPM-PFG, Correlation: 0.9190293818204816
Pair: JPM-PG, Correlation: 0.943761532338441
Pair: JPM-PGR, Correlation: 0.9489407325137286
Pair: JPM-PLD, Correlation: 0.916922744276324
Pair: JPM-PRU, Correlation: 0.926737001937649
Pair: JPM-PEG, Correlation: 0.9664530655537036
Pair: JPM-PTC, Correlation: 0.9752831705403218
Pair: JPM-PSA, Correlation: 0.9061518641570011
Pair: JPM-PHM, Correlation: 0.9318397636024452
Pair: JPM-QCOM, Correlation: 0.9021135009550469
Pair: JPM-DGX, Correlation: 0.9422735287803496
Pair: JPM-RJF, Correlation: 0.9581673150171129
Pair: JPM-RTX, Correlation: 0.9324307297962038
Pair: JPM-RF, Correlation: 0.9447058184105896
Pair: JPM-RSG, Correlation: 0.967839680761485
Pair: JPM-ROK, Correlation: 0.93507966060569
Pair: JPM-ROL, Correlation: 0.9585605203519154
Pair: JPM-ROP, Correlation: 0.9625270363319354
Pair: JPM-ROST, Correlation: 0.9577342556906322
Pair: JPM-SPGI, Correlation: 0.9596948503077397
Pair: JPM-CRM, Correlation: 0.9440757808844839
Pair: JPM-STX, Correlation: 0.9365288346095405
Pair: JPM-SRE, Correlation: 0.9138902027808202
Pair: JPM-NOW, Correlation: 0.9501413567820551
Pair: JPM-SHW, Correlation: 0.9701724536867431
Pair: JPM-SNA, Correlation: 0.9419006221790998
Pair: JPM-SO, Correlation: 0.9439129857056309
Pair: JPM-STLD, Correlation: 0.9012147496525521
Pair: JPM-STE, Correlation: 0.9401531401299295
Pair: JPM-SYK, Correlation: 0.983174267313541
Pair: JPM-SNPS, Correlation: 0.9273511073935751
Pair: JPM-SYY, Correlation: 0.9179915195202347
Pair: JPM-TMUS, Correlation: 0.9605086577968204
Pair: JPM-TEL, Correlation: 0.9629989762052001
Pair: JPM-TDY, Correlation: 0.9294846803703306
Pair: JPM-TER, Correlation: 0.9169739626640119
Pair: JPM-TXN, Correlation: 0.9609089193540006
Pair: JPM-TPL, Correlation: 0.9129697304983012
Pair: JPM-TXT, Correlation: 0.9245856928759721
Pair: JPM-TMO, Correlation: 0.9256874370318403
Pair: JPM-TJX, Correlation: 0.972298365234247
Pair: JPM-TSCO, Correlation: 0.9318155081905728
Pair: JPM-TT, Correlation: 0.9582937279799566
Pair: JPM-TDG, Correlation: 0.9638426909245007
Pair: JPM-TRV, Correlation: 0.9629966524098081
Pair: JPM-TYL, Correlation: 0.9510649906113383
Pair: JPM-UNP, Correlation: 0.9487695212173326
Pair: JPM-URI, Correlation: 0.9418115298266971
Pair: JPM-UNH, Correlation: 0.941965751612515
Pair: JPM-VLO, Correlation: 0.9043052937990368
Pair: JPM-VLTO, Correlation: 0.9113766744238068
Pair: JPM-VRSK, Correlation: 0.9586614204467598
Pair: JPM-VRTX, Correlation: 0.9306088405331467
Pair: JPM-V, Correlation: 0.9642074175497861
Pair: JPM-VMC, Correlation: 0.9708593593805765
Pair: JPM-WRB, Correlation: 0.9534693375984248
Pair: JPM-GWW, Correlation: 0.9120997977612375
Pair: JPM-WMT, Correlation: 0.9610651707421668
Pair: JPM-WM, Correlation: 0.9708298734797376
Pair: JPM-WAT, Correlation: 0.9359455602302644
Pair: JPM-WELL, Correlation: 0.9306414615826518
Pair: JPM-WTW, Correlation: 0.9687061635945776
Pair: JPM-XYL, Correlation: 0.9691265063635841
Pair: JPM-YUM, Correlation: 0.9538070251829007
Pair: JNPR-PANW, Correlation: 0.9014293383063416
Pair: K-KMB, Correlation: 0.9013997073475642
Pair: K-NI, Correlation: 0.9051641895772755
Pair: K-PPL, Correlation: 0.9037218840563281
Pair: KDP-KEYS, Correlation: 0.9586428738081361
Pair: KDP-KMB, Correlation: 0.9091976388146342
Pair: KDP-LHX, Correlation: 0.9778085651701295
Pair: KDP-LH, Correlation: 0.9513018946834425
Pair: KDP-LDOS, Correlation: 0.9308812878678464
Pair: KDP-LYV, Correlation: 0.9574684251721883
Pair: KDP-LMT, Correlation: 0.9515997832783648
Pair: KDP-LOW, Correlation: 0.9509890460752248
Pair: KDP-LULU, Correlation: 0.9164615971789956
Pair: KDP-MMC, Correlation: 0.9354597260714842
Pair: KDP-MAS, Correlation: 0.9311972732238262
Pair: KDP-MA, Correlation: 0.9654867589109171
Pair: KDP-MKC, Correlation: 0.9627179112887303
Pair: KDP-MCD, Correlation: 0.9663442648325095
Pair: KDP-MRK, Correlation: 0.9102647869559416
Pair: KDP-MTD, Correlation: 0.9648513127656099
Pair: KDP-MCHP, Correlation: 0.9422010389055505
Pair: KDP-MSFT, Correlation: 0.9135456901017676
Pair: KDP-MAA, Correlation: 0.9577719333804549
Pair: KDP-MOH, Correlation: 0.9440348530453081
Pair: KDP-MDLZ, Correlation: 0.9527713112981004
Pair: KDP-MNST, Correlation: 0.9458126988391097
Pair: KDP-MCO, Correlation: 0.9502888541780306
Pair: KDP-MS, Correlation: 0.9104100062513695
Pair: KDP-MSCI, Correlation: 0.9460389225112907
Pair: KDP-NDAQ, Correlation: 0.9655615785695207
Pair: KDP-NEE, Correlation: 0.9807566281779534
Pair: KDP-NKE, Correlation: 0.927809882128292
Pair: KDP-NI, Correlation: 0.9179346112169517
Pair: KDP-NDSN, Correlation: 0.961191104096822
Pair: KDP-NSC, Correlation: 0.9755186933755476
Pair: KDP-NOC, Correlation: 0.9544265090638422
Pair: KDP-NVR, Correlation: 0.9011773669042442
Pair: KDP-NXPI, Correlation: 0.9015056323683892
Pair: KDP-ODFL, Correlation: 0.9041301700850499
Pair: KDP-PKG, Correlation: 0.9078419223682045
Pair: KDP-PAYX, Correlation: 0.9662031925254403
Pair: KDP-PEP, Correlation: 0.9674643686355674
Pair: KDP-PNC, Correlation: 0.929397514669764
Pair: KDP-POOL, Correlation: 0.9496655799120463
Pair: KDP-PG, Correlation: 0.9555812452478093
Pair: KDP-PLD, Correlation: 0.9644091133278648
Pair: KDP-PEG, Correlation: 0.9554361864237495
Pair: KDP-PTC, Correlation: 0.9232711742168137
Pair: KDP-PSA, Correlation: 0.9345729148526627
Pair: KDP-DGX, Correlation: 0.9591127843439494
Pair: KDP-RJF, Correlation: 0.9121378317595372
Pair: KDP-O, Correlation: 0.9466036890608512
Pair: KDP-RF, Correlation: 0.925434022582603
Pair: KDP-RSG, Correlation: 0.9182961131133003
Pair: KDP-RMD, Correlation: 0.9633974840984562
Pair: KDP-RVTY, Correlation: 0.9466913540390235
Pair: KDP-ROK, Correlation: 0.9423958709512726
Pair: KDP-ROL, Correlation: 0.9567640975232025
Pair: KDP-ROP, Correlation: 0.9682919157928446
Pair: KDP-ROST, Correlation: 0.9355355541208185
Pair: KDP-SPGI, Correlation: 0.9637591826996946
Pair: KDP-CRM, Correlation: 0.928624192789964
Pair: KDP-SBAC, Correlation: 0.9405732264652689
Pair: KDP-SRE, Correlation: 0.9467042315303905
Pair: KDP-SHW, Correlation: 0.9517331109961203
Pair: KDP-SO, Correlation: 0.9365375801354797
Pair: KDP-SBUX, Correlation: 0.9518992580815699
Pair: KDP-STE, Correlation: 0.9769326513268687
Pair: KDP-SYK, Correlation: 0.9463281935500909
Pair: KDP-SYY, Correlation: 0.9694664854383929
Pair: KDP-TMUS, Correlation: 0.9418496182876082
Pair: KDP-TTWO, Correlation: 0.9234824998996908
Pair: KDP-TEL, Correlation: 0.9478319841236008
Pair: KDP-TDY, Correlation: 0.9776571192354804
Pair: KDP-TER, Correlation: 0.9254597548605841
Pair: KDP-TXN, Correlation: 0.9740834601807409
Pair: KDP-TMO, Correlation: 0.9704312752130267
Pair: KDP-TJX, Correlation: 0.913786561526253
Pair: KDP-TSCO, Correlation: 0.9022891294938029
Pair: KDP-TRV, Correlation: 0.9126673518617497
Pair: KDP-TYL, Correlation: 0.9478807742011672
Pair: KDP-UDR, Correlation: 0.9358592868977114
Pair: KDP-ULTA, Correlation: 0.9147901743422094
Pair: KDP-UNP, Correlation: 0.9745485623211091
Pair: KDP-UPS, Correlation: 0.9266951737273522
Pair: KDP-UNH, Correlation: 0.9630824757314712
Pair: KDP-VRSN, Correlation: 0.9603583078705681
Pair: KDP-VRSK, Correlation: 0.9502615516712652
Pair: KDP-V, Correlation: 0.9698973639501902
Pair: KDP-VMC, Correlation: 0.9059580113694965
Pair: KDP-WRB, Correlation: 0.9278444115752804
Pair: KDP-WMT, Correlation: 0.907084986350193
Pair: KDP-WM, Correlation: 0.9497666781211428
Pair: KDP-WAT, Correlation: 0.959659482938833
Pair: KDP-WEC, Correlation: 0.9757744468984222
Pair: KDP-WST, Correlation: 0.9244059537668091
Pair: KDP-WTW, Correlation: 0.9582404262567521
Pair: KDP-XEL, Correlation: 0.9754200878396655
Pair: KDP-XYL, Correlation: 0.9356485271225844
Pair: KDP-YUM, Correlation: 0.9675858209308089
Pair: KDP-ZTS, Correlation: 0.961690698389674
Pair: KEY-MTB, Correlation: 0.9328907807574803
Pair: KEY-NTRS, Correlation: 0.9704328321075103
Pair: KEY-PNC, Correlation: 0.9441373643972975
Pair: KEY-RF, Correlation: 0.9033581318696283
Pair: KEY-TFC, Correlation: 0.980027557513484
Pair: KEY-USB, Correlation: 0.9672740818604545
Pair: KEYS-LHX, Correlation: 0.9154237773338053
Pair: KEYS-LH, Correlation: 0.9347058941162453
Pair: KEYS-LYV, Correlation: 0.9241289480675253
Pair: KEYS-LOW, Correlation: 0.9397199891894134
Pair: KEYS-LULU, Correlation: 0.9352296547637644
Pair: KEYS-MA, Correlation: 0.9196231127654022
Pair: KEYS-MCD, Correlation: 0.9295249070051478
Pair: KEYS-MTD, Correlation: 0.9676168288510499
Pair: KEYS-MCHP, Correlation: 0.9249846787301556
Pair: KEYS-MAA, Correlation: 0.9391707576896565
Pair: KEYS-MOH, Correlation: 0.9378126562369439
Pair: KEYS-MDLZ, Correlation: 0.9112529089696229
Pair: KEYS-MNST, Correlation: 0.9060377069325705
Pair: KEYS-MCO, Correlation: 0.9184201149069565
Pair: KEYS-MS, Correlation: 0.9099646845436017
Pair: KEYS-MSCI, Correlation: 0.9697957063395126
Pair: KEYS-NDAQ, Correlation: 0.954819909358795
Pair: KEYS-NEE, Correlation: 0.9622760812146864
Pair: KEYS-NDSN, Correlation: 0.9506687558573397
Pair: KEYS-NSC, Correlation: 0.9584598283627448
Pair: KEYS-ODFL, Correlation: 0.908871997608296
Pair: KEYS-PAYX, Correlation: 0.9402358622847365
Pair: KEYS-PEP, Correlation: 0.9373731603079904
Pair: KEYS-POOL, Correlation: 0.9586976259579573
Pair: KEYS-PG, Correlation: 0.92922117624116
Pair: KEYS-PLD, Correlation: 0.9639302409975653
Pair: KEYS-DGX, Correlation: 0.9288603000257717
Pair: KEYS-RMD, Correlation: 0.9643295335483966
Pair: KEYS-RVTY, Correlation: 0.9186997638918398
Pair: KEYS-ROK, Correlation: 0.9400802093902676
Pair: KEYS-ROP, Correlation: 0.9214370454607158
Pair: KEYS-SPGI, Correlation: 0.9409240124780771
Pair: KEYS-SHW, Correlation: 0.9232995241077231
Pair: KEYS-SBUX, Correlation: 0.9311096510348958
Pair: KEYS-STE, Correlation: 0.9566854955055522
Pair: KEYS-TGT, Correlation: 0.9106492575139459
Pair: KEYS-TEL, Correlation: 0.9296238564288641
Pair: KEYS-TDY, Correlation: 0.9637981193788777
Pair: KEYS-TER, Correlation: 0.9340606501718687
Pair: KEYS-TXN, Correlation: 0.9550492547001578
Pair: KEYS-TMO, Correlation: 0.9752661407570373
Pair: KEYS-TYL, Correlation: 0.9027332141070957
Pair: KEYS-UNP, Correlation: 0.9488633013642589
Pair: KEYS-UPS, Correlation: 0.9189193567288706
Pair: KEYS-UNH, Correlation: 0.9286693091943535
Pair: KEYS-VRSK, Correlation: 0.9021251775626444
Pair: KEYS-V, Correlation: 0.9177218012207815
Pair: KEYS-WM, Correlation: 0.9053242497966609
Pair: KEYS-WAT, Correlation: 0.9393828712318512
Pair: KEYS-WEC, Correlation: 0.9167848299852717
Pair: KEYS-WST, Correlation: 0.933969776457671
Pair: KEYS-WTW, Correlation: 0.9171576598834006
Pair: KEYS-XEL, Correlation: 0.9155629660960898
Pair: KEYS-XYL, Correlation: 0.9069619172058738
Pair: KEYS-YUM, Correlation: 0.9367329783356073
Pair: KEYS-ZTS, Correlation: 0.9629705712298855
Pair: KMB-LHX, Correlation: 0.9058752756287144
Pair: KMB-LMT, Correlation: 0.9365791670153131
Pair: KMB-MAS, Correlation: 0.9214605433273745
Pair: KMB-MKC, Correlation: 0.9292223427116388
Pair: KMB-MDT, Correlation: 0.9149917590890492
Pair: KMB-MDLZ, Correlation: 0.9456382979176754
Pair: KMB-MNST, Correlation: 0.926702133008831
Pair: KMB-NEE, Correlation: 0.9064929019995561
Pair: KMB-NI, Correlation: 0.9498171960374138
Pair: KMB-NOC, Correlation: 0.914695301930259
Pair: KMB-PEP, Correlation: 0.9234641754585142
Pair: KMB-PNW, Correlation: 0.937190544385945
Pair: KMB-PPG, Correlation: 0.9288099397509005
Pair: KMB-PPL, Correlation: 0.9249746240553436
Pair: KMB-PG, Correlation: 0.9044451030777668
Pair: KMB-PEG, Correlation: 0.910754938321489
Pair: KMB-PSA, Correlation: 0.9055631848806323
Pair: KMB-DGX, Correlation: 0.9006410304058763
Pair: KMB-O, Correlation: 0.9474931756131314
Pair: KMB-ROP, Correlation: 0.9186693309303464
Pair: KMB-ROST, Correlation: 0.917843935809341
Pair: KMB-SRE, Correlation: 0.9487444058427925
Pair: KMB-SJM, Correlation: 0.9126801574233829
Pair: KMB-SBUX, Correlation: 0.9335030684737201
Pair: KMB-SYY, Correlation: 0.9057946097482791
Pair: KMB-TYL, Correlation: 0.9106043110509968
Pair: KMB-UDR, Correlation: 0.9064939196999516
Pair: KMB-UNP, Correlation: 0.9057155364073609
Pair: KMB-VLTO, Correlation: 0.9342734546973095
Pair: KMB-VRSN, Correlation: 0.9075438170910163
Pair: KMB-V, Correlation: 0.9185303706845257
Pair: KMB-WEC, Correlation: 0.9498775667202565
Pair: KMB-WTW, Correlation: 0.9071313897228159
Pair: KMB-XEL, Correlation: 0.9380440196406129
Pair: KMB-YUM, Correlation: 0.9060573713903205
Pair: KMB-ZBH, Correlation: 0.9012609079268477
Pair: KIM-REG, Correlation: 0.9151465871372525
Pair: KKR-KLAC, Correlation: 0.9668281286774764
Pair: KKR-LRCX, Correlation: 0.9467271055576162
Pair: KKR-LEN, Correlation: 0.9632465758725639
Pair: KKR-LII, Correlation: 0.9298445955090514
Pair: KKR-LLY, Correlation: 0.9443355067723435
Pair: KKR-LIN, Correlation: 0.9495803238333164
Pair: KKR-L, Correlation: 0.9104535180101944
Pair: KKR-LOW, Correlation: 0.913664428902818
Pair: KKR-MMC, Correlation: 0.9256314197031887
Pair: KKR-MLM, Correlation: 0.9391094212994446
Pair: KKR-META, Correlation: 0.9076376322170956
Pair: KKR-MET, Correlation: 0.9139253468198539
Pair: KKR-MU, Correlation: 0.901471541298751
Pair: KKR-MSFT, Correlation: 0.9438626231794669
Pair: KKR-MPWR, Correlation: 0.9648576322128446
Pair: KKR-MCO, Correlation: 0.9202102333292397
Pair: KKR-MS, Correlation: 0.9260545107808351
Pair: KKR-MSI, Correlation: 0.9623750143322013
Pair: KKR-NTAP, Correlation: 0.9260094491139625
Pair: KKR-NWS, Correlation: 0.9175252872087721
Pair: KKR-NRG, Correlation: 0.9296907582955763
Pair: KKR-NVDA, Correlation: 0.933054092993453
Pair: KKR-NVR, Correlation: 0.9441012985877217
Pair: KKR-NXPI, Correlation: 0.9052924371207195
Pair: KKR-ORLY, Correlation: 0.9269916152334364
Pair: KKR-ODFL, Correlation: 0.9220430863740758
Pair: KKR-ORCL, Correlation: 0.9715574052662984
Pair: KKR-PCAR, Correlation: 0.940461130807206
Pair: KKR-PKG, Correlation: 0.9171397337798536
Pair: KKR-PANW, Correlation: 0.9545978557757047
Pair: KKR-PH, Correlation: 0.976082010863188
Pair: KKR-PNR, Correlation: 0.9378328450798006
Pair: KKR-PGR, Correlation: 0.9580385898331638
Pair: KKR-PTC, Correlation: 0.9106648496553031
Pair: KKR-PHM, Correlation: 0.9629454103280778
Pair: KKR-PWR, Correlation: 0.954646423291779
Pair: KKR-QCOM, Correlation: 0.921090695289801
Pair: KKR-RJF, Correlation: 0.922067566063126
Pair: KKR-RSG, Correlation: 0.9435783898477192
Pair: KKR-STX, Correlation: 0.9231662197483702
Pair: KKR-NOW, Correlation: 0.9382489032751878
Pair: KKR-SHW, Correlation: 0.9156008844534588
Pair: KKR-SO, Correlation: 0.9095892517819695
Pair: KKR-STLD, Correlation: 0.9083279685475749
Pair: KKR-SYK, Correlation: 0.9031539558821728
Pair: KKR-SNPS, Correlation: 0.9405822973486009
Pair: KKR-TMUS, Correlation: 0.9157522766649597
Pair: KKR-TPL, Correlation: 0.9141459375484282
Pair: KKR-TJX, Correlation: 0.929920762870665
Pair: KKR-TSCO, Correlation: 0.9442179785781766
Pair: KKR-TT, Correlation: 0.9861537234494987
Pair: KKR-TDG, Correlation: 0.9584166591989559
Pair: KKR-TRV, Correlation: 0.9005040700304471
Pair: KKR-URI, Correlation: 0.9791995886901778
Pair: KKR-VLTO, Correlation: 0.9054814216846879
Pair: KKR-VRSK, Correlation: 0.9011554856151034
Pair: KKR-VMC, Correlation: 0.901960867897223
Pair: KKR-WRB, Correlation: 0.9193690069630847
Pair: KKR-GWW, Correlation: 0.9568905280065201
Pair: KKR-WMT, Correlation: 0.9460096630249283
Pair: KKR-WM, Correlation: 0.9185522358479085
Pair: KKR-WELL, Correlation: 0.9088776961821081
Pair: KLAC-LRCX, Correlation: 0.9811967640372089
Pair: KLAC-LDOS, Correlation: 0.9029096821774013
Pair: KLAC-LEN, Correlation: 0.9685865674329192
Pair: KLAC-LII, Correlation: 0.9266472785703562
Pair: KLAC-LLY, Correlation: 0.972509017692349
Pair: KLAC-LIN, Correlation: 0.976276627913254
Pair: KLAC-L, Correlation: 0.9105819336809656
Pair: KLAC-LOW, Correlation: 0.9283477278229025
Pair: KLAC-MPC, Correlation: 0.9232990516273186
Pair: KLAC-MAR, Correlation: 0.9144170266003838
Pair: KLAC-MMC, Correlation: 0.9536389100283773
Pair: KLAC-MLM, Correlation: 0.9609422628259786
Pair: KLAC-MA, Correlation: 0.9063002176941646
Pair: KLAC-MCK, Correlation: 0.9250645518791256
Pair: KLAC-MRK, Correlation: 0.9230932725245131
Pair: KLAC-MET, Correlation: 0.913845254253679
Pair: KLAC-MCHP, Correlation: 0.9138503263531146
Pair: KLAC-MU, Correlation: 0.9079890765809584
Pair: KLAC-MSFT, Correlation: 0.9704902119477904
Pair: KLAC-MOH, Correlation: 0.9170319276804614
Pair: KLAC-MPWR, Correlation: 0.9857009829743877
Pair: KLAC-MCO, Correlation: 0.9231256274043883
Pair: KLAC-MS, Correlation: 0.9249223282566038
Pair: KLAC-MSI, Correlation: 0.9711746951542847
Pair: KLAC-MSCI, Correlation: 0.9003299300977662
Pair: KLAC-NDAQ, Correlation: 0.9021588549888211
Pair: KLAC-NTAP, Correlation: 0.9153539439508682
Pair: KLAC-NUE, Correlation: 0.928423699589716
Pair: KLAC-NVDA, Correlation: 0.9137121628801967
Pair: KLAC-NVR, Correlation: 0.9558375028837496
Pair: KLAC-NXPI, Correlation: 0.9258769844615329
Pair: KLAC-ORLY, Correlation: 0.9599346296129235
Pair: KLAC-ODFL, Correlation: 0.9537242797840589
Pair: KLAC-ON, Correlation: 0.9156193476599463
Pair: KLAC-ORCL, Correlation: 0.9670106807532397
Pair: KLAC-PCAR, Correlation: 0.9689644184638867
Pair: KLAC-PKG, Correlation: 0.9143227610944097
Pair: KLAC-PANW, Correlation: 0.9739794238823187
Pair: KLAC-PH, Correlation: 0.9792985054411388
Pair: KLAC-PAYX, Correlation: 0.9108438716439845
Pair: KLAC-PG, Correlation: 0.9202335719606242
Pair: KLAC-PGR, Correlation: 0.9730998140502684
Pair: KLAC-PTC, Correlation: 0.9300954991232947
Pair: KLAC-PHM, Correlation: 0.9673793512991454
Pair: KLAC-PWR, Correlation: 0.9723854805690081
Pair: KLAC-QCOM, Correlation: 0.9291942516417961
Pair: KLAC-RJF, Correlation: 0.9317163492869664
Pair: KLAC-RSG, Correlation: 0.9673545170224989
Pair: KLAC-ROL, Correlation: 0.9055693190826656
Pair: KLAC-SPGI, Correlation: 0.9035655321393872
Pair: KLAC-STX, Correlation: 0.9000537592358581
Pair: KLAC-NOW, Correlation: 0.9357441678787067
Pair: KLAC-SHW, Correlation: 0.9141102124619517
Pair: KLAC-SO, Correlation: 0.9296611585262204
Pair: KLAC-STLD, Correlation: 0.9499870915329239
Pair: KLAC-SYK, Correlation: 0.922066316527247
Pair: KLAC-SNPS, Correlation: 0.9838593193606084
Pair: KLAC-TMUS, Correlation: 0.9278520158610298
Pair: KLAC-TPL, Correlation: 0.9056865486050041
Pair: KLAC-TJX, Correlation: 0.9451031289688758
Pair: KLAC-TSCO, Correlation: 0.9628881375276825
Pair: KLAC-TT, Correlation: 0.9805611174256608
Pair: KLAC-TDG, Correlation: 0.9750248294893498
Pair: KLAC-TRV, Correlation: 0.9065347657528677
Pair: KLAC-URI, Correlation: 0.9779903939401278
Pair: KLAC-UNH, Correlation: 0.9116088762477101
Pair: KLAC-VRSK, Correlation: 0.9216086539685241
Pair: KLAC-VRTX, Correlation: 0.9311704604597443
Pair: KLAC-VMC, Correlation: 0.9252550359615349
Pair: KLAC-WRB, Correlation: 0.9449697841799811
Pair: KLAC-GWW, Correlation: 0.9714701182136928
Pair: KLAC-WMT, Correlation: 0.943252174895213
Pair: KLAC-WM, Correlation: 0.9437547022906807
Pair: KLAC-WTW, Correlation: 0.9017821749413792
Pair: KHC-PCG, Correlation: 0.9298620641318153
Pair: KR-LOW, Correlation: 0.9193697404225747
Pair: KR-MMC, Correlation: 0.9146566156373999
Pair: KR-MET, Correlation: 0.9000388729185865
Pair: KR-MDLZ, Correlation: 0.9269137952149927
Pair: KR-MNST, Correlation: 0.9129054802324434
Pair: KR-NDAQ, Correlation: 0.9007091633391046
Pair: KR-NXPI, Correlation: 0.9164488693592933
Pair: KR-ORLY, Correlation: 0.9208483462003495
Pair: KR-PAYX, Correlation: 0.9126056308280657
Pair: KR-PEP, Correlation: 0.9175307269437097
Pair: KR-PFG, Correlation: 0.9004791755675078
Pair: KR-PSA, Correlation: 0.9438513849749074
Pair: KR-RJF, Correlation: 0.9026432120777539
Pair: KR-REGN, Correlation: 0.9470985518770388
Pair: KR-SRE, Correlation: 0.9086003602648882
Pair: KR-SNA, Correlation: 0.9451893383721212
Pair: KR-SO, Correlation: 0.9074222034638539
Pair: KR-TJX, Correlation: 0.9006224100861476
Pair: KR-TSCO, Correlation: 0.9243962600018197
Pair: KR-TRV, Correlation: 0.921557660588121
Pair: KR-UNH, Correlation: 0.904342345204814
Pair: KR-VMC, Correlation: 0.9110996731907022
Pair: KR-WRB, Correlation: 0.9007417328797154
Pair: LHX-LH, Correlation: 0.9443781883098009
Pair: LHX-LDOS, Correlation: 0.9537763796106948
Pair: LHX-LYV, Correlation: 0.9614657352543698
Pair: LHX-LMT, Correlation: 0.9626595774081732
Pair: LHX-LOW, Correlation: 0.9290134427734306
Pair: LHX-MAR, Correlation: 0.9144342398524911
Pair: LHX-MMC, Correlation: 0.9255055163464662
Pair: LHX-MAS, Correlation: 0.9389838926690766
Pair: LHX-MA, Correlation: 0.961421847507722
Pair: LHX-MKC, Correlation: 0.9483397133491519
Pair: LHX-MCD, Correlation: 0.9563472530456414
Pair: LHX-MTD, Correlation: 0.9473453671823758
Pair: LHX-MCHP, Correlation: 0.9322993196227126
Pair: LHX-MU, Correlation: 0.9003193862756342
Pair: LHX-MSFT, Correlation: 0.9004206491183656
Pair: LHX-MAA, Correlation: 0.945977159478384
Pair: LHX-MOH, Correlation: 0.9142443108227747
Pair: LHX-MDLZ, Correlation: 0.9355243254209802
Pair: LHX-MNST, Correlation: 0.9261741858809737
Pair: LHX-MCO, Correlation: 0.9486095784351589
Pair: LHX-MS, Correlation: 0.9047090320481957
Pair: LHX-MSCI, Correlation: 0.9236897366136627
Pair: LHX-NDAQ, Correlation: 0.9536523150753016
Pair: LHX-NEE, Correlation: 0.9663534061080967
Pair: LHX-NKE, Correlation: 0.9017090091811251
Pair: LHX-NI, Correlation: 0.9348890393997769
Pair: LHX-NDSN, Correlation: 0.9556910191123034
Pair: LHX-NSC, Correlation: 0.969180170265177
Pair: LHX-NTRS, Correlation: 0.9142980536999936
Pair: LHX-NOC, Correlation: 0.9647485351931705
Pair: LHX-NVR, Correlation: 0.9084934600278718
Pair: LHX-PKG, Correlation: 0.9257048032174814
Pair: LHX-PAYX, Correlation: 0.9566097930229707
Pair: LHX-PEP, Correlation: 0.9510364858938197
Pair: LHX-PNC, Correlation: 0.9521785921874031
Pair: LHX-POOL, Correlation: 0.9279664863596242
Pair: LHX-PG, Correlation: 0.9404485389761774
Pair: LHX-PLD, Correlation: 0.9513908028593993
Pair: LHX-PEG, Correlation: 0.9606090706261583
Pair: LHX-PTC, Correlation: 0.9179801872702201
Pair: LHX-PSA, Correlation: 0.9189783776782366
Pair: LHX-DGX, Correlation: 0.9575229272125644
Pair: LHX-RJF, Correlation: 0.9113193134792584
Pair: LHX-RTX, Correlation: 0.9116367684063544
Pair: LHX-O, Correlation: 0.9423984581870861
Pair: LHX-RF, Correlation: 0.9386858342633055
Pair: LHX-RSG, Correlation: 0.9159296130914812
Pair: LHX-RMD, Correlation: 0.9510470244586333
Pair: LHX-RVTY, Correlation: 0.930537267776754
Pair: LHX-ROK, Correlation: 0.932235568918012
Pair: LHX-ROL, Correlation: 0.9499761820817036
Pair: LHX-ROP, Correlation: 0.9668258719353807
Pair: LHX-ROST, Correlation: 0.9429162075495555
Pair: LHX-SPGI, Correlation: 0.9596609733519917
Pair: LHX-CRM, Correlation: 0.9302587414462904
Pair: LHX-SBAC, Correlation: 0.9387152037146438
Pair: LHX-SRE, Correlation: 0.9510432989625474
Pair: LHX-SHW, Correlation: 0.9482403590212644
Pair: LHX-SO, Correlation: 0.9279493710796576
Pair: LHX-SBUX, Correlation: 0.932276682773318
Pair: LHX-STE, Correlation: 0.9637249385727786
Pair: LHX-SYK, Correlation: 0.9502409591145461
Pair: LHX-SYY, Correlation: 0.9751104642790815
Pair: LHX-TMUS, Correlation: 0.9364517719699368
Pair: LHX-TTWO, Correlation: 0.9376543961781708
Pair: LHX-TEL, Correlation: 0.9479623943872584
Pair: LHX-TDY, Correlation: 0.9739865490983259
Pair: LHX-TER, Correlation: 0.9078129343033624
Pair: LHX-TXN, Correlation: 0.9685476924244906
Pair: LHX-TMO, Correlation: 0.9482036021863635
Pair: LHX-TJX, Correlation: 0.9047107683476298
Pair: LHX-TRV, Correlation: 0.9209027289331942
Pair: LHX-TYL, Correlation: 0.9451731876954723
Pair: LHX-UDR, Correlation: 0.941788138653895
Pair: LHX-UNP, Correlation: 0.9673797778543436
Pair: LHX-UNH, Correlation: 0.9478805598171551
Pair: LHX-VRSN, Correlation: 0.9534011406047318
Pair: LHX-VRSK, Correlation: 0.9409096918629531
Pair: LHX-V, Correlation: 0.9691955535645259
Pair: LHX-VMC, Correlation: 0.910034685976816
Pair: LHX-WRB, Correlation: 0.925878453542501
Pair: LHX-WMT, Correlation: 0.907190836320266
Pair: LHX-WM, Correlation: 0.9490214990374823
Pair: LHX-WAT, Correlation: 0.9589218453554099
Pair: LHX-WEC, Correlation: 0.9737236811505152
Pair: LHX-WTW, Correlation: 0.960196404531522
Pair: LHX-XEL, Correlation: 0.970811678689081
Pair: LHX-XYL, Correlation: 0.940472556957422
Pair: LHX-YUM, Correlation: 0.9627343525442105
Pair: LHX-ZTS, Correlation: 0.9440159913234597
Pair: LH-LDOS, Correlation: 0.9116264273892342
Pair: LH-LIN, Correlation: 0.9154537219598236
Pair: LH-LYV, Correlation: 0.9603077230888956
Pair: LH-LMT, Correlation: 0.9180938405642368
Pair: LH-LOW, Correlation: 0.9676381162703317
Pair: LH-LULU, Correlation: 0.9176603156641258
Pair: LH-MAR, Correlation: 0.9097341250124907
Pair: LH-MMC, Correlation: 0.9430955746587778
Pair: LH-MLM, Correlation: 0.9265124145131487
Pair: LH-MAS, Correlation: 0.9508238217000244
Pair: LH-MA, Correlation: 0.947969493137186
Pair: LH-MKC, Correlation: 0.9011458147602491
Pair: LH-MCD, Correlation: 0.9504671414669467
Pair: LH-MET, Correlation: 0.9165412628041151
Pair: LH-MTD, Correlation: 0.9740857939947565
Pair: LH-MGM, Correlation: 0.9121110282139753
Pair: LH-MCHP, Correlation: 0.9649720393881317
Pair: LH-MU, Correlation: 0.9132683187935081
Pair: LH-MSFT, Correlation: 0.9310822211703625
Pair: LH-MAA, Correlation: 0.9644815025038409
Pair: LH-MOH, Correlation: 0.9417321297706847
Pair: LH-MDLZ, Correlation: 0.9375766272840771
Pair: LH-MNST, Correlation: 0.9468881155552306
Pair: LH-MCO, Correlation: 0.9631673728928231
Pair: LH-MS, Correlation: 0.9568092997216082
Pair: LH-MSCI, Correlation: 0.963371393824195
Pair: LH-NDAQ, Correlation: 0.9746177973214667
Pair: LH-NEE, Correlation: 0.9524449096151736
Pair: LH-NKE, Correlation: 0.9258452675424805
Pair: LH-NDSN, Correlation: 0.971200532591772
Pair: LH-NSC, Correlation: 0.968642185709985
Pair: LH-NOC, Correlation: 0.9283482933474844
Pair: LH-NVR, Correlation: 0.9232056768342722
Pair: LH-NXPI, Correlation: 0.9499608184178363
Pair: LH-ODFL, Correlation: 0.9336034456087623
Pair: LH-PKG, Correlation: 0.934880530779893
Pair: LH-PAYX, Correlation: 0.9659861637154868
Pair: LH-PEP, Correlation: 0.9471301890971592
Pair: LH-PNC, Correlation: 0.9585669938373326
Pair: LH-POOL, Correlation: 0.9727510484642274
Pair: LH-PPG, Correlation: 0.9020542694804335
Pair: LH-PFG, Correlation: 0.9036814909253154
Pair: LH-PG, Correlation: 0.9420711552791562
Pair: LH-PLD, Correlation: 0.97186075031945
Pair: LH-PEG, Correlation: 0.9359103079457782
Pair: LH-PTC, Correlation: 0.9403613583302313
Pair: LH-PSA, Correlation: 0.9427428752349305
Pair: LH-QCOM, Correlation: 0.9023516324341511
Pair: LH-DGX, Correlation: 0.9762690155637656
Pair: LH-RJF, Correlation: 0.9418889015406283
Pair: LH-RF, Correlation: 0.9505611483289124
Pair: LH-RSG, Correlation: 0.9213699915341673
Pair: LH-RMD, Correlation: 0.9563663877178906
Pair: LH-RVTY, Correlation: 0.9497607346914246
Pair: LH-ROK, Correlation: 0.9723916186754855
Pair: LH-ROL, Correlation: 0.9439512579663785
Pair: LH-ROP, Correlation: 0.9595980297406974
Pair: LH-ROST, Correlation: 0.9182084346571763
Pair: LH-SPGI, Correlation: 0.9707244510763964
Pair: LH-CRM, Correlation: 0.9366954683194312
Pair: LH-SBAC, Correlation: 0.9058104807474646
Pair: LH-STX, Correlation: 0.9252785627447748
Pair: LH-SRE, Correlation: 0.9093095409596006
Pair: LH-NOW, Correlation: 0.9234185481737464
Pair: LH-SHW, Correlation: 0.9692391738465214
Pair: LH-SNA, Correlation: 0.9158088957626955
Pair: LH-SO, Correlation: 0.9215629988703764
Pair: LH-SBUX, Correlation: 0.9394301750240829
Pair: LH-STE, Correlation: 0.969463702795789
Pair: LH-SYK, Correlation: 0.9488700655277398
Pair: LH-SYY, Correlation: 0.9407414293927558
Pair: LH-TMUS, Correlation: 0.9412825358927959
Pair: LH-TROW, Correlation: 0.925433616602702
Pair: LH-TTWO, Correlation: 0.917299882846995
Pair: LH-TGT, Correlation: 0.9252085158251161
Pair: LH-TEL, Correlation: 0.9804414776374196
Pair: LH-TDY, Correlation: 0.9604703748875408
Pair: LH-TER, Correlation: 0.9504799176128211
Pair: LH-TSLA, Correlation: 0.9028019302505632
Pair: LH-TXN, Correlation: 0.9768495976808683
Pair: LH-TXT, Correlation: 0.9008567341557232
Pair: LH-TMO, Correlation: 0.9681730694437208
Pair: LH-TJX, Correlation: 0.9106072311088749
Pair: LH-TSCO, Correlation: 0.9144524614537014
Pair: LH-TRV, Correlation: 0.918682661504209
Pair: LH-TRMB, Correlation: 0.9205259646878277
Pair: LH-TYL, Correlation: 0.9604646347279583
Pair: LH-UDR, Correlation: 0.9214949056985027
Pair: LH-ULTA, Correlation: 0.9044873612576064
Pair: LH-UNP, Correlation: 0.9646518020304351
Pair: LH-UPS, Correlation: 0.9516668020946952
Pair: LH-UNH, Correlation: 0.9576656698983523
Pair: LH-VRSN, Correlation: 0.9071358374170406
Pair: LH-VRSK, Correlation: 0.9403658373339343
Pair: LH-V, Correlation: 0.9518594228283207
Pair: LH-VMC, Correlation: 0.9340833926853309
Pair: LH-WRB, Correlation: 0.9155244507487668
Pair: LH-WMT, Correlation: 0.9030168153099746
Pair: LH-WM, Correlation: 0.9439138566810488
Pair: LH-WAT, Correlation: 0.9787742863594278
Pair: LH-WEC, Correlation: 0.9247706678597564
Pair: LH-WST, Correlation: 0.9590303140333041
Pair: LH-WTW, Correlation: 0.9529170451207726
Pair: LH-XEL, Correlation: 0.927901082079101
Pair: LH-XYL, Correlation: 0.9525290373887692
Pair: LH-YUM, Correlation: 0.9568302285170471
Pair: LH-ZBRA, Correlation: 0.9264781459196682
Pair: LH-ZTS, Correlation: 0.9600269288663011
Pair: LRCX-LDOS, Correlation: 0.9117280161429134
Pair: LRCX-LEN, Correlation: 0.9536950953754347
Pair: LRCX-LII, Correlation: 0.9187836032007731
Pair: LRCX-LLY, Correlation: 0.9218715213859925
Pair: LRCX-LIN, Correlation: 0.9768888739034213
Pair: LRCX-LOW, Correlation: 0.9476034549397063
Pair: LRCX-MAR, Correlation: 0.9055053068209507
Pair: LRCX-MMC, Correlation: 0.9519047166259516
Pair: LRCX-MLM, Correlation: 0.9610044864422371
Pair: LRCX-MAS, Correlation: 0.9155171622802752
Pair: LRCX-MA, Correlation: 0.9321649283953097
Pair: LRCX-MCD, Correlation: 0.9113749875249284
Pair: LRCX-MRK, Correlation: 0.910918677556273
Pair: LRCX-META, Correlation: 0.9036776646784207
Pair: LRCX-MET, Correlation: 0.9046111485230138
Pair: LRCX-MTD, Correlation: 0.903768305496051
Pair: LRCX-MCHP, Correlation: 0.9453936817987265
Pair: LRCX-MU, Correlation: 0.9350545811251042
Pair: LRCX-MSFT, Correlation: 0.9846108880581559
Pair: LRCX-MOH, Correlation: 0.9381912749622945
Pair: LRCX-MPWR, Correlation: 0.9773725928623596
Pair: LRCX-MCO, Correlation: 0.9459744381799245
Pair: LRCX-MS, Correlation: 0.9394807283327781
Pair: LRCX-MSI, Correlation: 0.9536505486348709
Pair: LRCX-MSCI, Correlation: 0.9405595259224708
Pair: LRCX-NDAQ, Correlation: 0.9233621357182957
Pair: LRCX-NTAP, Correlation: 0.9070930528568044
Pair: LRCX-NDSN, Correlation: 0.9226090036689817
Pair: LRCX-NUE, Correlation: 0.9121111418048246
Pair: LRCX-NVR, Correlation: 0.9538539750438212
Pair: LRCX-NXPI, Correlation: 0.944552674678438
Pair: LRCX-ORLY, Correlation: 0.9440447616456973
Pair: LRCX-ODFL, Correlation: 0.9675158087473466
Pair: LRCX-ON, Correlation: 0.9119609252634776
Pair: LRCX-ORCL, Correlation: 0.9432196790401642
Pair: LRCX-PCAR, Correlation: 0.9518365018732383
Pair: LRCX-PKG, Correlation: 0.911476668392513
Pair: LRCX-PANW, Correlation: 0.9435792894296643
Pair: LRCX-PH, Correlation: 0.960582578182962
Pair: LRCX-PAYX, Correlation: 0.9230455927912012
Pair: LRCX-POOL, Correlation: 0.9036809282384302
Pair: LRCX-PG, Correlation: 0.9381977555511187
Pair: LRCX-PGR, Correlation: 0.9479049781060125
Pair: LRCX-PLD, Correlation: 0.9073454411892953
Pair: LRCX-PTC, Correlation: 0.945161139256089
Pair: LRCX-PHM, Correlation: 0.938255474839969
Pair: LRCX-PWR, Correlation: 0.9330813999421098
Pair: LRCX-QCOM, Correlation: 0.9563797515756063
Pair: LRCX-RJF, Correlation: 0.9286781464705905
Pair: LRCX-RSG, Correlation: 0.9583890007491817
Pair: LRCX-ROK, Correlation: 0.9035548843560746
Pair: LRCX-ROL, Correlation: 0.922413787042966
Pair: LRCX-ROP, Correlation: 0.9182743656397034
Pair: LRCX-SPGI, Correlation: 0.9344613799470709
Pair: LRCX-CRM, Correlation: 0.9015421837795735
Pair: LRCX-STX, Correlation: 0.9182985384968824
Pair: LRCX-NOW, Correlation: 0.9625662710511765
Pair: LRCX-SHW, Correlation: 0.9397392234941793
Pair: LRCX-SO, Correlation: 0.9232284825211307
Pair: LRCX-STLD, Correlation: 0.9204953733706641
Pair: LRCX-STE, Correlation: 0.921183681917009
Pair: LRCX-SYK, Correlation: 0.9361904616937295
Pair: LRCX-SNPS, Correlation: 0.9820508929785993
Pair: LRCX-TMUS, Correlation: 0.9376759362517678
Pair: LRCX-TEL, Correlation: 0.9158634168714012
Pair: LRCX-TER, Correlation: 0.938180642681012
Pair: LRCX-TXN, Correlation: 0.9236301544240811
Pair: LRCX-TMO, Correlation: 0.9241815980777552
Pair: LRCX-TJX, Correlation: 0.9335151794684335
Pair: LRCX-TSCO, Correlation: 0.9593920747096853
Pair: LRCX-TT, Correlation: 0.964528861795199
Pair: LRCX-TDG, Correlation: 0.9586438190419618
Pair: LRCX-TYL, Correlation: 0.9081371356481721
Pair: LRCX-UNP, Correlation: 0.9071250951829702
Pair: LRCX-URI, Correlation: 0.9519740039094158
Pair: LRCX-UNH, Correlation: 0.9209714699481061
Pair: LRCX-VRSK, Correlation: 0.938320065277793
Pair: LRCX-VRTX, Correlation: 0.91199844201434
Pair: LRCX-V, Correlation: 0.9156937262449513
Pair: LRCX-VMC, Correlation: 0.9277870144601785
Pair: LRCX-WRB, Correlation: 0.9332448103531388
Pair: LRCX-GWW, Correlation: 0.9384241632344194
Pair: LRCX-WMT, Correlation: 0.9404858372577234
Pair: LRCX-WM, Correlation: 0.948075863091544
Pair: LRCX-WST, Correlation: 0.9252414257711046
Pair: LRCX-WTW, Correlation: 0.920750539177108
Pair: LRCX-XYL, Correlation: 0.9239228000120349
Pair: LRCX-YUM, Correlation: 0.9012190838289195
Pair: LDOS-LII, Correlation: 0.9513449477220862
Pair: LDOS-LIN, Correlation: 0.9301027362722039
Pair: LDOS-LYV, Correlation: 0.9284206023820184
Pair: LDOS-LMT, Correlation: 0.953751967760853
Pair: LDOS-LOW, Correlation: 0.9344320483090871
Pair: LDOS-MAR, Correlation: 0.9336653310335956
Pair: LDOS-MMC, Correlation: 0.9463862081387581
Pair: LDOS-MLM, Correlation: 0.9322948426604561
Pair: LDOS-MAS, Correlation: 0.9569038881697196
Pair: LDOS-MA, Correlation: 0.9710003323493703
Pair: LDOS-MCD, Correlation: 0.9422892347985012
Pair: LDOS-MRK, Correlation: 0.9186184254785738
Pair: LDOS-META, Correlation: 0.9054023108701659
Pair: LDOS-MET, Correlation: 0.9005974027617122
Pair: LDOS-MTD, Correlation: 0.916115993020874
Pair: LDOS-MCHP, Correlation: 0.9291448643510186
Pair: LDOS-MU, Correlation: 0.9315499644806581
Pair: LDOS-MSFT, Correlation: 0.942550396304202
Pair: LDOS-MOH, Correlation: 0.9100136849795767
Pair: LDOS-MDLZ, Correlation: 0.9189590190720546
Pair: LDOS-MPWR, Correlation: 0.921182392207835
Pair: LDOS-MNST, Correlation: 0.9060742107259598
Pair: LDOS-MCO, Correlation: 0.9643441474621385
Pair: LDOS-MS, Correlation: 0.9185406261282036
Pair: LDOS-MSI, Correlation: 0.945148823410181
Pair: LDOS-MSCI, Correlation: 0.9216466353464579
Pair: LDOS-NDAQ, Correlation: 0.9479083551420651
Pair: LDOS-NFLX, Correlation: 0.9239430129800422
Pair: LDOS-NEE, Correlation: 0.9303495930367917
Pair: LDOS-NDSN, Correlation: 0.9426350478782521
Pair: LDOS-NSC, Correlation: 0.9311645024307663
Pair: LDOS-NOC, Correlation: 0.9343319320779074
Pair: LDOS-NVR, Correlation: 0.959368788774964
Pair: LDOS-NXPI, Correlation: 0.918969076025835
Pair: LDOS-ORLY, Correlation: 0.9182199109658151
Pair: LDOS-ODFL, Correlation: 0.9079995422696264
Pair: LDOS-ORCL, Correlation: 0.9031255200787967
Pair: LDOS-PCAR, Correlation: 0.9038536905088432
Pair: LDOS-PKG, Correlation: 0.95320421927299
Pair: LDOS-PH, Correlation: 0.9204750545753679
Pair: LDOS-PAYX, Correlation: 0.9440473361159962
Pair: LDOS-PEP, Correlation: 0.9269948433587205
Pair: LDOS-PNC, Correlation: 0.9103187152547526
Pair: LDOS-PG, Correlation: 0.9495501027578434
Pair: LDOS-PGR, Correlation: 0.9452711996748892
Pair: LDOS-PLD, Correlation: 0.9151015208266785
Pair: LDOS-PEG, Correlation: 0.9634225520926234
Pair: LDOS-PTC, Correlation: 0.9439914416530627
Pair: LDOS-DGX, Correlation: 0.9386085156398093
Pair: LDOS-RJF, Correlation: 0.9227763526282314
Pair: LDOS-RTX, Correlation: 0.901091437080689
Pair: LDOS-RF, Correlation: 0.9067025431245479
Pair: LDOS-RSG, Correlation: 0.9551783624871106
Pair: LDOS-RMD, Correlation: 0.916775495715931
Pair: LDOS-ROK, Correlation: 0.904552245276264
Pair: LDOS-ROL, Correlation: 0.9615786064639353
Pair: LDOS-ROP, Correlation: 0.9600267545747797
Pair: LDOS-ROST, Correlation: 0.9439735603558299
Pair: LDOS-SPGI, Correlation: 0.9603638457582395
Pair: LDOS-CRM, Correlation: 0.9348029229158727
Pair: LDOS-SRE, Correlation: 0.9202804503328454
Pair: LDOS-NOW, Correlation: 0.9424621655954923
Pair: LDOS-SHW, Correlation: 0.9578752492707805
Pair: LDOS-SO, Correlation: 0.9494018583968182
Pair: LDOS-STE, Correlation: 0.9442491194632323
Pair: LDOS-SYK, Correlation: 0.9658421665020179
Pair: LDOS-SNPS, Correlation: 0.9055053896547545
Pair: LDOS-SYY, Correlation: 0.9153451164302313
Pair: LDOS-TMUS, Correlation: 0.9705713739052726
Pair: LDOS-TTWO, Correlation: 0.9056242122194185
Pair: LDOS-TEL, Correlation: 0.9272460613498807
Pair: LDOS-TDY, Correlation: 0.9421674848614185
Pair: LDOS-TER, Correlation: 0.912931371998039
Pair: LDOS-TXN, Correlation: 0.9574972986536541
Pair: LDOS-TPL, Correlation: 0.9028168196473855
Pair: LDOS-TMO, Correlation: 0.9290241875887154
Pair: LDOS-TJX, Correlation: 0.9475200656196859
Pair: LDOS-TSCO, Correlation: 0.9099216961934523
Pair: LDOS-TT, Correlation: 0.9315800653843958
Pair: LDOS-TDG, Correlation: 0.945735175467757
Pair: LDOS-TRV, Correlation: 0.9330366772058885
Pair: LDOS-TYL, Correlation: 0.9504274775018274
Pair: LDOS-UNP, Correlation: 0.9421483352535276
Pair: LDOS-UNH, Correlation: 0.94003537635119
Pair: LDOS-VLTO, Correlation: 0.9168511550531216
Pair: LDOS-VRSK, Correlation: 0.9582984462470334
Pair: LDOS-VRTX, Correlation: 0.9418011261047096
Pair: LDOS-V, Correlation: 0.9681174936289753
Pair: LDOS-VMC, Correlation: 0.9347717652755468
Pair: LDOS-WRB, Correlation: 0.9519464829778467
Pair: LDOS-WMT, Correlation: 0.9631211610622815
Pair: LDOS-WM, Correlation: 0.9640348629647651
Pair: LDOS-WAT, Correlation: 0.9176738901182732
Pair: LDOS-WEC, Correlation: 0.9238009568136161
Pair: LDOS-WTW, Correlation: 0.9692789305787021
Pair: LDOS-XEL, Correlation: 0.9125551504135154
Pair: LDOS-XYL, Correlation: 0.9439016264449186
Pair: LDOS-YUM, Correlation: 0.9340065316653916
Pair: LDOS-ZTS, Correlation: 0.9039168557641727
Pair: LEN-LII, Correlation: 0.9510589440936048
Pair: LEN-LLY, Correlation: 0.9408647690893338
Pair: LEN-LIN, Correlation: 0.9633868197407199
Pair: LEN-L, Correlation: 0.9060711388653291
Pair: LEN-LOW, Correlation: 0.937342571466189
Pair: LEN-MPC, Correlation: 0.9096448902471532
Pair: LEN-MAR, Correlation: 0.9332166877655526
Pair: LEN-MMC, Correlation: 0.9516772218557388
Pair: LEN-MLM, Correlation: 0.9677962364492396
Pair: LEN-MAS, Correlation: 0.9343725393598495
Pair: LEN-MA, Correlation: 0.9138841272066394
Pair: LEN-MCD, Correlation: 0.9017261069384025
Pair: LEN-MCK, Correlation: 0.9168535888532435
Pair: LEN-MRK, Correlation: 0.9200409676714786
Pair: LEN-META, Correlation: 0.916725368701505
Pair: LEN-MET, Correlation: 0.9178211283013697
Pair: LEN-MCHP, Correlation: 0.9152684226401631
Pair: LEN-MU, Correlation: 0.9094866171750844
Pair: LEN-MSFT, Correlation: 0.9520339782980302
Pair: LEN-MDLZ, Correlation: 0.9080314815935445
Pair: LEN-MPWR, Correlation: 0.9635071679349151
Pair: LEN-MCO, Correlation: 0.9369514868071378
Pair: LEN-MS, Correlation: 0.9253146778162027
Pair: LEN-MSI, Correlation: 0.9608594118432219
Pair: LEN-NDAQ, Correlation: 0.9065015766382206
Pair: LEN-NDSN, Correlation: 0.9062574871813558
Pair: LEN-NUE, Correlation: 0.9019925900339072
Pair: LEN-NVR, Correlation: 0.971711132294812
Pair: LEN-NXPI, Correlation: 0.9458644866790278
Pair: LEN-ORLY, Correlation: 0.9564335185451898
Pair: LEN-ODFL, Correlation: 0.9424367751341064
Pair: LEN-ORCL, Correlation: 0.9696865699752076
Pair: LEN-OTIS, Correlation: 0.9087116329149295
Pair: LEN-PCAR, Correlation: 0.9684747430556204
Pair: LEN-PKG, Correlation: 0.9423553536897095
Pair: LEN-PANW, Correlation: 0.9633137956502641
Pair: LEN-PH, Correlation: 0.9815736876604766
Pair: LEN-PAYX, Correlation: 0.9108175425431362
Pair: LEN-PNR, Correlation: 0.9505734259071358
Pair: LEN-PG, Correlation: 0.9190187704558801
Pair: LEN-PGR, Correlation: 0.9565408239396377
Pair: LEN-PEG, Correlation: 0.905893448439905
Pair: LEN-PTC, Correlation: 0.9375565620693728
Pair: LEN-PHM, Correlation: 0.9806779597330733
Pair: LEN-PWR, Correlation: 0.944362690010104
Pair: LEN-QCOM, Correlation: 0.9079613370286916
Pair: LEN-RJF, Correlation: 0.9322393496869599
Pair: LEN-REGN, Correlation: 0.9143172219737318
Pair: LEN-RSG, Correlation: 0.9548956899789938
Pair: LEN-ROL, Correlation: 0.9150825642952034
Pair: LEN-ROP, Correlation: 0.9088117445182565
Pair: LEN-SPGI, Correlation: 0.9130688057831878
Pair: LEN-STX, Correlation: 0.9175798089772368
Pair: LEN-NOW, Correlation: 0.9310255006199463
Pair: LEN-SHW, Correlation: 0.9346561422796457
Pair: LEN-SNA, Correlation: 0.9408880049468776
Pair: LEN-SO, Correlation: 0.9283434239436223
Pair: LEN-STLD, Correlation: 0.9288864368663985
Pair: LEN-SYK, Correlation: 0.9367527468847124
Pair: LEN-SNPS, Correlation: 0.9557987235576354
Pair: LEN-TMUS, Correlation: 0.9307661594442661
Pair: LEN-TEL, Correlation: 0.914466229357285
Pair: LEN-TJX, Correlation: 0.9610002271774863
Pair: LEN-TSCO, Correlation: 0.9549406657891666
Pair: LEN-TT, Correlation: 0.9760189474015978
Pair: LEN-TDG, Correlation: 0.9708647412036733
Pair: LEN-TRV, Correlation: 0.935668655230874
Pair: LEN-TYL, Correlation: 0.9003767351567354
Pair: LEN-URI, Correlation: 0.9790963010094027
Pair: LEN-UNH, Correlation: 0.9041063437873894
Pair: LEN-VRSK, Correlation: 0.9285196992820273
Pair: LEN-VRTX, Correlation: 0.9312012127310907
Pair: LEN-V, Correlation: 0.9046977980758244
Pair: LEN-VMC, Correlation: 0.9492847735023079
Pair: LEN-WRB, Correlation: 0.933544197888149
Pair: LEN-GWW, Correlation: 0.9634252758106756
Pair: LEN-WMT, Correlation: 0.9488798780486063
Pair: LEN-WM, Correlation: 0.936227596536946
Pair: LEN-WELL, Correlation: 0.912658844321123
Pair: LEN-WTW, Correlation: 0.9178519909875831
Pair: LII-LIN, Correlation: 0.9331649050613819
Pair: LII-LYV, Correlation: 0.9006972006837294
Pair: LII-LMT, Correlation: 0.9216643603802575
Pair: LII-LOW, Correlation: 0.9214494474912391
Pair: LII-MAR, Correlation: 0.9562005656032219
Pair: LII-MMC, Correlation: 0.9422984207721878
Pair: LII-MLM, Correlation: 0.9564314594662292
Pair: LII-MAS, Correlation: 0.9588825450314914
Pair: LII-MA, Correlation: 0.9444338430684599
Pair: LII-MCD, Correlation: 0.9174302899570439
Pair: LII-MRK, Correlation: 0.9166967967474315
Pair: LII-META, Correlation: 0.967076392876047
Pair: LII-MCHP, Correlation: 0.91320342056949
Pair: LII-MU, Correlation: 0.9265743072483391
Pair: LII-MSFT, Correlation: 0.9366187346873539
Pair: LII-MDLZ, Correlation: 0.9104184908750067
Pair: LII-MPWR, Correlation: 0.9288605222654402
Pair: LII-MCO, Correlation: 0.9497844786673836
Pair: LII-MS, Correlation: 0.9015152504635707
Pair: LII-MSI, Correlation: 0.9529998221120842
Pair: LII-NDAQ, Correlation: 0.9130072119807008
Pair: LII-NTAP, Correlation: 0.9079041329334165
Pair: LII-NFLX, Correlation: 0.9328306030795039
Pair: LII-NDSN, Correlation: 0.9114274485358369
Pair: LII-NVR, Correlation: 0.9768670928073826
Pair: LII-NXPI, Correlation: 0.9314965413827937
Pair: LII-ORLY, Correlation: 0.9324635968005589
Pair: LII-ODFL, Correlation: 0.9033986074867193
Pair: LII-OKE, Correlation: 0.9016570157752197
Pair: LII-ORCL, Correlation: 0.945650403212644
Pair: LII-PCAR, Correlation: 0.9411279078399525
Pair: LII-PKG, Correlation: 0.9597576668244321
Pair: LII-PANW, Correlation: 0.9186329413176069
Pair: LII-PH, Correlation: 0.9580345682225551
Pair: LII-PAYX, Correlation: 0.9181710495976011
Pair: LII-PNR, Correlation: 0.9203469255864735
Pair: LII-PG, Correlation: 0.9193960639803802
Pair: LII-PGR, Correlation: 0.9519419853058155
Pair: LII-PEG, Correlation: 0.952115472501795
Pair: LII-PTC, Correlation: 0.9563952863394352
Pair: LII-PHM, Correlation: 0.9539998330033246
Pair: LII-RJF, Correlation: 0.9142080087724016
Pair: LII-RSG, Correlation: 0.9542489926967445
Pair: LII-ROL, Correlation: 0.944729009318943
Pair: LII-ROP, Correlation: 0.9437277407636123
Pair: LII-ROST, Correlation: 0.9481605886233434
Pair: LII-SPGI, Correlation: 0.9327818748558138
Pair: LII-CRM, Correlation: 0.9321748070650299
Pair: LII-NOW, Correlation: 0.9358857533520335
Pair: LII-SHW, Correlation: 0.9458425751188574
Pair: LII-SNA, Correlation: 0.9268123368910997
Pair: LII-SO, Correlation: 0.9250384398118991
Pair: LII-STE, Correlation: 0.9045142061016229
Pair: LII-SYK, Correlation: 0.9649413140000415
Pair: LII-SNPS, Correlation: 0.9154649356894458
Pair: LII-TMUS, Correlation: 0.945252146697662
Pair: LII-TEL, Correlation: 0.9202818576117567
Pair: LII-TXN, Correlation: 0.9209172864400182
Pair: LII-TJX, Correlation: 0.9702282435176145
Pair: LII-TSCO, Correlation: 0.909399372740244
Pair: LII-TT, Correlation: 0.961328970480785
Pair: LII-TDG, Correlation: 0.9699695036098481
Pair: LII-TRV, Correlation: 0.9451781258363545
Pair: LII-TYL, Correlation: 0.9280169451233906
Pair: LII-UNP, Correlation: 0.9145628793468669
Pair: LII-URI, Correlation: 0.9372618243688131
Pair: LII-UNH, Correlation: 0.9048078834835037
Pair: LII-VLTO, Correlation: 0.9339140099070689
Pair: LII-VRSK, Correlation: 0.9496995951487451
Pair: LII-VRTX, Correlation: 0.9377513782159714
Pair: LII-V, Correlation: 0.9442851948560725
Pair: LII-VMC, Correlation: 0.9595332180208459
Pair: LII-WRB, Correlation: 0.9310791682787304
Pair: LII-GWW, Correlation: 0.9143018852016684
Pair: LII-WMT, Correlation: 0.9575326950501676
Pair: LII-WM, Correlation: 0.947988625634614
Pair: LII-WELL, Correlation: 0.9309360360653487
Pair: LII-WTW, Correlation: 0.9437527177791162
Pair: LII-XYL, Correlation: 0.9323983360454433
Pair: LII-YUM, Correlation: 0.918656657221697
Pair: LLY-LIN, Correlation: 0.9304395540817153
Pair: LLY-MPC, Correlation: 0.9456752321692181
Pair: LLY-MMC, Correlation: 0.9026418881869505
Pair: LLY-MLM, Correlation: 0.9121141481171263
Pair: LLY-MCK, Correlation: 0.9449090542974511
Pair: LLY-MSFT, Correlation: 0.9112454756792067
Pair: LLY-MPWR, Correlation: 0.9418448580710915
Pair: LLY-MSI, Correlation: 0.9401830812018074
Pair: LLY-NRG, Correlation: 0.9012464973911903
Pair: LLY-NVDA, Correlation: 0.953205025765504
Pair: LLY-NVR, Correlation: 0.9101398638626342
Pair: LLY-ORLY, Correlation: 0.9313187003362546
Pair: LLY-ORCL, Correlation: 0.9513038528560265
Pair: LLY-PCAR, Correlation: 0.9548265702078774
Pair: LLY-PANW, Correlation: 0.9655527936874109
Pair: LLY-PH, Correlation: 0.9584115983852203
Pair: LLY-PGR, Correlation: 0.9576490116642681
Pair: LLY-PHM, Correlation: 0.9662799011115291
Pair: LLY-PWR, Correlation: 0.9765065716174601
Pair: LLY-RSG, Correlation: 0.9273003596425369
Pair: LLY-STLD, Correlation: 0.9357802314948233
Pair: LLY-SNPS, Correlation: 0.9446526434425666
Pair: LLY-TJX, Correlation: 0.9082831029412665
Pair: LLY-TSCO, Correlation: 0.9137424350105657
Pair: LLY-TT, Correlation: 0.9557022634770685
Pair: LLY-TDG, Correlation: 0.9525039903303597
Pair: LLY-URI, Correlation: 0.962893948771505
Pair: LLY-VLTO, Correlation: 0.9055895802207985
Pair: LLY-VRTX, Correlation: 0.9125954592670161
Pair: LLY-WRB, Correlation: 0.9039126780685026
Pair: LLY-GWW, Correlation: 0.9700754624416554
Pair: LIN-LYV, Correlation: 0.9152819575319272
Pair: LIN-LMT, Correlation: 0.9099230154689469
Pair: LIN-L, Correlation: 0.9080977634458975
Pair: LIN-LOW, Correlation: 0.9700670438427399
Pair: LIN-LULU, Correlation: 0.9079467631694055
Pair: LIN-MPC, Correlation: 0.9053841781951621
Pair: LIN-MAR, Correlation: 0.9385417877587143
Pair: LIN-MMC, Correlation: 0.9850893565508554
Pair: LIN-MLM, Correlation: 0.96826386851817
Pair: LIN-MAS, Correlation: 0.9302797111507579
Pair: LIN-MA, Correlation: 0.9587423349122113
Pair: LIN-MCD, Correlation: 0.9557463259157223
Pair: LIN-MCK, Correlation: 0.9005045651280754
Pair: LIN-MRK, Correlation: 0.954530854988095
Pair: LIN-MET, Correlation: 0.9364052991982733
Pair: LIN-MTD, Correlation: 0.924650548586754
Pair: LIN-MCHP, Correlation: 0.9548821594334149
Pair: LIN-MU, Correlation: 0.9204223481006013
Pair: LIN-MSFT, Correlation: 0.9893278558415202
Pair: LIN-MOH, Correlation: 0.9640766726933876
Pair: LIN-MDLZ, Correlation: 0.9350370273706242
Pair: LIN-MPWR, Correlation: 0.9784944947905989
Pair: LIN-MNST, Correlation: 0.9166968475040509
Pair: LIN-MCO, Correlation: 0.9628425707130471
Pair: LIN-MS, Correlation: 0.9542553631658858
Pair: LIN-MSI, Correlation: 0.9848636103665596
Pair: LIN-MSCI, Correlation: 0.9537425514612128
Pair: LIN-NDAQ, Correlation: 0.9491116484919881
Pair: LIN-NTAP, Correlation: 0.9076916247817022
Pair: LIN-NDSN, Correlation: 0.949842973592676
Pair: LIN-NSC, Correlation: 0.9076355374839343
Pair: LIN-NOC, Correlation: 0.9039111953509459
Pair: LIN-NUE, Correlation: 0.9406074357997593
Pair: LIN-NVR, Correlation: 0.9727214036076103
Pair: LIN-NXPI, Correlation: 0.9395184799572962
Pair: LIN-ORLY, Correlation: 0.9811717855676132
Pair: LIN-ODFL, Correlation: 0.9863355808746765
Pair: LIN-ON, Correlation: 0.9429241213275831
Pair: LIN-ORCL, Correlation: 0.9666896206316672
Pair: LIN-OTIS, Correlation: 0.9363221478115016
Pair: LIN-PCAR, Correlation: 0.9648533315446433
Pair: LIN-PKG, Correlation: 0.941467141601453
Pair: LIN-PANW, Correlation: 0.9611831081308354
Pair: LIN-PH, Correlation: 0.9722203208782022
Pair: LIN-PAYX, Correlation: 0.9589996747799822
Pair: LIN-PNR, Correlation: 0.9053680735331113
Pair: LIN-PEP, Correlation: 0.9415709754293023
Pair: LIN-POOL, Correlation: 0.9090421090010621
Pair: LIN-PFG, Correlation: 0.9044579966906608
Pair: LIN-PG, Correlation: 0.9667636378615818
Pair: LIN-PGR, Correlation: 0.9749134933961069
Pair: LIN-PLD, Correlation: 0.9316612917799613
Pair: LIN-PEG, Correlation: 0.9317480666733994
Pair: LIN-PTC, Correlation: 0.9602476399201569
Pair: LIN-PSA, Correlation: 0.9015614049821882
Pair: LIN-PHM, Correlation: 0.947334327200457
Pair: LIN-PWR, Correlation: 0.9486009434223351
Pair: LIN-QCOM, Correlation: 0.9396918048188773
Pair: LIN-DGX, Correlation: 0.9198602371880947
Pair: LIN-RJF, Correlation: 0.9597708293313492
Pair: LIN-RSG, Correlation: 0.9844115409790047
Pair: LIN-ROK, Correlation: 0.9265278010945807
Pair: LIN-ROL, Correlation: 0.9507994435972636
Pair: LIN-ROP, Correlation: 0.946836097370445
Pair: LIN-SPGI, Correlation: 0.9529209907319277
Pair: LIN-CRM, Correlation: 0.9089809159767905
Pair: LIN-STX, Correlation: 0.9202300575176076
Pair: LIN-NOW, Correlation: 0.9628260765609846
Pair: LIN-SHW, Correlation: 0.9562387136761609
Pair: LIN-SNA, Correlation: 0.9272984942830005
Pair: LIN-SO, Correlation: 0.9612604673534515
Pair: LIN-STLD, Correlation: 0.9509317137167236
Pair: LIN-STE, Correlation: 0.9429409546665789
Pair: LIN-SYK, Correlation: 0.9610072027845405
Pair: LIN-SNPS, Correlation: 0.9881599148860125
Pair: LIN-TMUS, Correlation: 0.9628816455394923
Pair: LIN-TEL, Correlation: 0.9341758560172905
Pair: LIN-TDY, Correlation: 0.9201511550069301
Pair: LIN-TER, Correlation: 0.9222095915588787
Pair: LIN-TXN, Correlation: 0.9441348333489348
Pair: LIN-TPL, Correlation: 0.9271585053920994
Pair: LIN-TMO, Correlation: 0.9465809198635603
Pair: LIN-TJX, Correlation: 0.9663328261631037
Pair: LIN-TSCO, Correlation: 0.981758064584399
Pair: LIN-TT, Correlation: 0.9703946317047116
Pair: LIN-TDG, Correlation: 0.9734539892819271
Pair: LIN-TRV, Correlation: 0.9350672292036216
Pair: LIN-TYL, Correlation: 0.9175769312005375
Pair: LIN-UNP, Correlation: 0.9377690813867278
Pair: LIN-URI, Correlation: 0.9627909363409146
Pair: LIN-UNH, Correlation: 0.9607380066759647
Pair: LIN-VLO, Correlation: 0.9021444732774514
Pair: LIN-VRSK, Correlation: 0.9640925020589177
Pair: LIN-VRTX, Correlation: 0.9493448894554564
Pair: LIN-VICI, Correlation: 0.910476464559774
Pair: LIN-V, Correlation: 0.9437862691246878
Pair: LIN-VMC, Correlation: 0.943802673438692
Pair: LIN-WRB, Correlation: 0.9715930719291023
Pair: LIN-GWW, Correlation: 0.9658973875323262
Pair: LIN-WMT, Correlation: 0.9696869426575213
Pair: LIN-WM, Correlation: 0.9759753479939753
Pair: LIN-WAT, Correlation: 0.9029542361299542
Pair: LIN-WST, Correlation: 0.9263205585651211
Pair: LIN-WTW, Correlation: 0.9511694294634
Pair: LIN-XYL, Correlation: 0.9298535843796814
Pair: LIN-YUM, Correlation: 0.9427457537467738
Pair: LIN-ZTS, Correlation: 0.9067013435706001
Pair: LYV-LMT, Correlation: 0.9232015655775798
Pair: LYV-LOW, Correlation: 0.9579650272367103
Pair: LYV-MAR, Correlation: 0.9329545584396536
Pair: LYV-MMC, Correlation: 0.9420381110467986
Pair: LYV-MLM, Correlation: 0.9271508249700348
Pair: LYV-MAS, Correlation: 0.9403704099920028
Pair: LYV-MA, Correlation: 0.9573828484916819
Pair: LYV-MKC, Correlation: 0.9108687111268134
Pair: LYV-MCD, Correlation: 0.9524230907364668
Pair: LYV-MET, Correlation: 0.921819725062222
Pair: LYV-MTD, Correlation: 0.9493025248030474
Pair: LYV-MCHP, Correlation: 0.946142427144782
Pair: LYV-MU, Correlation: 0.9263411512337687
Pair: LYV-MSFT, Correlation: 0.9317497356947733
Pair: LYV-MAA, Correlation: 0.9564494681154903
Pair: LYV-MOH, Correlation: 0.9356448987525751
Pair: LYV-MDLZ, Correlation: 0.9311605213360872
Pair: LYV-MNST, Correlation: 0.9177622343923271
Pair: LYV-MCO, Correlation: 0.9570630185424078
Pair: LYV-MS, Correlation: 0.9425113613172451
Pair: LYV-MSI, Correlation: 0.9145675671152451
Pair: LYV-MSCI, Correlation: 0.9405787781421867
Pair: LYV-NDAQ, Correlation: 0.9591611803932882
Pair: LYV-NEE, Correlation: 0.946551596107526
Pair: LYV-NI, Correlation: 0.9000766512587366
Pair: LYV-NDSN, Correlation: 0.9550009993512407
Pair: LYV-NSC, Correlation: 0.9727667972672815
Pair: LYV-NOC, Correlation: 0.9276120472249488
Pair: LYV-NVR, Correlation: 0.9267361247658124
Pair: LYV-NXPI, Correlation: 0.9289778208788355
Pair: LYV-ORLY, Correlation: 0.9018077394138156
Pair: LYV-ODFL, Correlation: 0.9193782356105026
Pair: LYV-PKG, Correlation: 0.9354811561935503
Pair: LYV-PAYX, Correlation: 0.9723466606863377
Pair: LYV-PEP, Correlation: 0.9428736258630552
Pair: LYV-PNC, Correlation: 0.9593666859290473
Pair: LYV-POOL, Correlation: 0.9483690907282007
Pair: LYV-PG, Correlation: 0.949702960901577
Pair: LYV-PLD, Correlation: 0.9640361452483706
Pair: LYV-PEG, Correlation: 0.9598317540918916
Pair: LYV-PTC, Correlation: 0.9350351143547475
Pair: LYV-PSA, Correlation: 0.9371135448198299
Pair: LYV-QCOM, Correlation: 0.9017927150783344
Pair: LYV-DGX, Correlation: 0.9441283866772728
Pair: LYV-RJF, Correlation: 0.9415044043202344
Pair: LYV-RTX, Correlation: 0.9120205785415633
Pair: LYV-O, Correlation: 0.9091879510257407
Pair: LYV-RF, Correlation: 0.9516859599602876
Pair: LYV-RSG, Correlation: 0.9333456328782984
Pair: LYV-RMD, Correlation: 0.940995842806131
Pair: LYV-RVTY, Correlation: 0.9293651483134192
Pair: LYV-ROK, Correlation: 0.9446221054288932
Pair: LYV-ROL, Correlation: 0.9361220495031838
Pair: LYV-ROP, Correlation: 0.959193216292206
Pair: LYV-ROST, Correlation: 0.9216460445499097
Pair: LYV-SPGI, Correlation: 0.9623317464403831
Pair: LYV-CRM, Correlation: 0.9388749342462224
Pair: LYV-STX, Correlation: 0.93287135694633
Pair: LYV-SRE, Correlation: 0.9268632010168228
Pair: LYV-NOW, Correlation: 0.925479436798294
Pair: LYV-SHW, Correlation: 0.9637230733321527
Pair: LYV-SNA, Correlation: 0.9029331133686933
Pair: LYV-SO, Correlation: 0.9312003392739129
Pair: LYV-SBUX, Correlation: 0.9212390030300165
Pair: LYV-STE, Correlation: 0.9719230836703818
Pair: LYV-SYK, Correlation: 0.955720303363425
Pair: LYV-SYY, Correlation: 0.9522562046638737
Pair: LYV-TMUS, Correlation: 0.9314530287273323
Pair: LYV-TTWO, Correlation: 0.9125595772460529
Pair: LYV-TEL, Correlation: 0.9667823023130333
Pair: LYV-TDY, Correlation: 0.9618577530413142
Pair: LYV-TER, Correlation: 0.9329136368042779
Pair: LYV-TXN, Correlation: 0.9663813174971286
Pair: LYV-TMO, Correlation: 0.9559222826841645
Pair: LYV-TJX, Correlation: 0.9167352980591603
Pair: LYV-TSCO, Correlation: 0.9078458747615076
Pair: LYV-TRV, Correlation: 0.9281147783122564
Pair: LYV-TYL, Correlation: 0.9504076713407613
Pair: LYV-UDR, Correlation: 0.9360631909772872
Pair: LYV-UNP, Correlation: 0.9739827942429906
Pair: LYV-UPS, Correlation: 0.9141465340260783
Pair: LYV-UNH, Correlation: 0.9507396383356922
Pair: LYV-VRSN, Correlation: 0.9151772789206801
Pair: LYV-VRSK, Correlation: 0.9485476075858723
Pair: LYV-V, Correlation: 0.9565899137642297
Pair: LYV-VMC, Correlation: 0.9307537295965951
Pair: LYV-WRB, Correlation: 0.9309007502792817
Pair: LYV-WMT, Correlation: 0.9175446068173693
Pair: LYV-WM, Correlation: 0.9549832123142757
Pair: LYV-WAT, Correlation: 0.9584565683084401
Pair: LYV-WEC, Correlation: 0.9303297823773178
Pair: LYV-WELL, Correlation: 0.9038344917229465
Pair: LYV-WST, Correlation: 0.9289076065616904
Pair: LYV-WTW, Correlation: 0.9553492140347551
Pair: LYV-WDAY, Correlation: 0.9212982872415262
Pair: LYV-XEL, Correlation: 0.9264938830405635
Pair: LYV-XYL, Correlation: 0.938091992739615
Pair: LYV-YUM, Correlation: 0.9610428747068543
Pair: LYV-ZBRA, Correlation: 0.9087625877107286
Pair: LYV-ZTS, Correlation: 0.946391133702351
Pair: LKQ-MGM, Correlation: 0.9198756399230854
Pair: LKQ-MNST, Correlation: 0.9005277854265281
Pair: LKQ-PEP, Correlation: 0.9017522951607637
Pair: LKQ-PPG, Correlation: 0.9084401232898613
Pair: LKQ-PFG, Correlation: 0.916885210977805
Pair: LKQ-PSA, Correlation: 0.9054665525957535
Pair: LKQ-ROK, Correlation: 0.9022813962029668
Pair: LKQ-SJM, Correlation: 0.9262891113901928
Pair: LKQ-TEL, Correlation: 0.907044199490544
Pair: LKQ-ULTA, Correlation: 0.9012584515908925
Pair: LKQ-UPS, Correlation: 0.923985838030611
Pair: LKQ-WY, Correlation: 0.9301369098237631
Pair: LMT-LOW, Correlation: 0.9363779995658008
Pair: LMT-MAR, Correlation: 0.9472887564026833
Pair: LMT-MMC, Correlation: 0.9541861058660117
Pair: LMT-MLM, Correlation: 0.9208310135034384
Pair: LMT-MAS, Correlation: 0.9537816082099014
Pair: LMT-MA, Correlation: 0.959794810514825
Pair: LMT-MKC, Correlation: 0.9146222141489941
Pair: LMT-MCD, Correlation: 0.9661701661238026
Pair: LMT-MRK, Correlation: 0.9476998344537481
Pair: LMT-MET, Correlation: 0.9050003697028792
Pair: LMT-MTD, Correlation: 0.9246041777052649
Pair: LMT-MCHP, Correlation: 0.9332297835373564
Pair: LMT-MSFT, Correlation: 0.9074959373051875
Pair: LMT-MAA, Correlation: 0.9032636546713236
Pair: LMT-MOH, Correlation: 0.9094361713588798
Pair: LMT-MDLZ, Correlation: 0.9670401874127904
Pair: LMT-MNST, Correlation: 0.9564769915945529
Pair: LMT-MCO, Correlation: 0.9452642372186156
Pair: LMT-MS, Correlation: 0.903507033498133
Pair: LMT-MSI, Correlation: 0.9212981437586549
Pair: LMT-NDAQ, Correlation: 0.943680258100646
Pair: LMT-NEE, Correlation: 0.9363836754540082
Pair: LMT-NI, Correlation: 0.9644084345533344
Pair: LMT-NDSN, Correlation: 0.9503165195790222
Pair: LMT-NSC, Correlation: 0.9253851831898064
Pair: LMT-NOC, Correlation: 0.9889730436421509
Pair: LMT-NVR, Correlation: 0.9409257036152311
Pair: LMT-NXPI, Correlation: 0.9191941315803841
Pair: LMT-ORLY, Correlation: 0.9310512457489469
Pair: LMT-PKG, Correlation: 0.9565683752260249
Pair: LMT-PAYX, Correlation: 0.9557781237248647
Pair: LMT-PEP, Correlation: 0.9707038213698528
Pair: LMT-PM, Correlation: 0.9050360502158584
Pair: LMT-PNW, Correlation: 0.9280193419366914
Pair: LMT-PNC, Correlation: 0.9112860347335986
Pair: LMT-PFG, Correlation: 0.9258760684143112
Pair: LMT-PG, Correlation: 0.9482364225146841
Pair: LMT-PGR, Correlation: 0.9119627835703488
Pair: LMT-PLD, Correlation: 0.921823606486843
Pair: LMT-PEG, Correlation: 0.9719773926463483
Pair: LMT-PTC, Correlation: 0.9284435151828926
Pair: LMT-PSA, Correlation: 0.9310577670314396
Pair: LMT-DGX, Correlation: 0.9570746056611994
Pair: LMT-RJF, Correlation: 0.9280209680425628
Pair: LMT-RTX, Correlation: 0.9394416368147124
Pair: LMT-O, Correlation: 0.9286183010148469
Pair: LMT-RF, Correlation: 0.9224242939787173
Pair: LMT-RSG, Correlation: 0.9415410413190033
Pair: LMT-RMD, Correlation: 0.9042712436026681
Pair: LMT-ROK, Correlation: 0.9253988824646904
Pair: LMT-ROL, Correlation: 0.9614445662230955
Pair: LMT-ROP, Correlation: 0.9643176540691565
Pair: LMT-ROST, Correlation: 0.9506592567691374
Pair: LMT-SPGI, Correlation: 0.9456317886134711
Pair: LMT-CRM, Correlation: 0.905324599627583
Pair: LMT-SRE, Correlation: 0.9763703959402757
Pair: LMT-SHW, Correlation: 0.9410142222885564
Pair: LMT-SNA, Correlation: 0.9367382390511487
Pair: LMT-SO, Correlation: 0.9545191696207579
Pair: LMT-SBUX, Correlation: 0.9206985160683443
Pair: LMT-STE, Correlation: 0.9425052710917977
Pair: LMT-SYK, Correlation: 0.9632517100312479
Pair: LMT-SYY, Correlation: 0.9510093303134329
Pair: LMT-TMUS, Correlation: 0.9543525397665453
Pair: LMT-TEL, Correlation: 0.9402331200359751
Pair: LMT-TDY, Correlation: 0.9394122705458031
Pair: LMT-TXN, Correlation: 0.9536421113475605
Pair: LMT-TMO, Correlation: 0.9289697420267058
Pair: LMT-TJX, Correlation: 0.9498578329300036
Pair: LMT-TSCO, Correlation: 0.9022090103244276
Pair: LMT-TDG, Correlation: 0.9105307327678087
Pair: LMT-TRV, Correlation: 0.9613216235651612
Pair: LMT-TYL, Correlation: 0.9315473892516607
Pair: LMT-ULTA, Correlation: 0.92019715829769
Pair: LMT-UNP, Correlation: 0.9507482703619144
Pair: LMT-UNH, Correlation: 0.9570968046440143
Pair: LMT-VLO, Correlation: 0.9165733809700221
Pair: LMT-VRSN, Correlation: 0.9137262377005654
Pair: LMT-VRSK, Correlation: 0.9488678779763077
Pair: LMT-VRTX, Correlation: 0.9436442709858794
Pair: LMT-V, Correlation: 0.9681890231091252
Pair: LMT-VMC, Correlation: 0.9459880681588267
Pair: LMT-WRB, Correlation: 0.9513870296137902
Pair: LMT-WMT, Correlation: 0.9310908666528149
Pair: LMT-WM, Correlation: 0.9579696166084798
Pair: LMT-WAT, Correlation: 0.9254803882486927
Pair: LMT-WEC, Correlation: 0.9593362002851867
Pair: LMT-WTW, Correlation: 0.9635771428723103
Pair: LMT-XEL, Correlation: 0.9504451623742042
Pair: LMT-XYL, Correlation: 0.9266816727607781
Pair: LMT-YUM, Correlation: 0.9602719526135012
Pair: L-MPC, Correlation: 0.9199524768581117
Pair: L-MAR, Correlation: 0.9274597174602737
Pair: L-MMC, Correlation: 0.9025721547266232
Pair: L-MLM, Correlation: 0.9216853940174088
Pair: L-MET, Correlation: 0.9281440342476646
Pair: L-MSI, Correlation: 0.9200771646013824
Pair: L-NTAP, Correlation: 0.9132244844404417
Pair: L-NUE, Correlation: 0.91082627787285
Pair: L-NVR, Correlation: 0.9044550412181315
Pair: L-OKE, Correlation: 0.9532753444778299
Pair: L-ORCL, Correlation: 0.9156537930181947
Pair: L-OTIS, Correlation: 0.9115769347621305
Pair: L-PCAR, Correlation: 0.9079128288261991
Pair: L-PKG, Correlation: 0.9089421522374339
Pair: L-PANW, Correlation: 0.9037321081800517
Pair: L-PH, Correlation: 0.9337921795516474
Pair: L-PFG, Correlation: 0.9040358985153952
Pair: L-PGR, Correlation: 0.9120890340511808
Pair: L-PRU, Correlation: 0.9125600111620965
Pair: L-PHM, Correlation: 0.9095960621926238
Pair: L-PWR, Correlation: 0.911257779680462
Pair: L-RJF, Correlation: 0.9281770757867639
Pair: L-RTX, Correlation: 0.9075404537017692
Pair: L-RSG, Correlation: 0.9159170850064129
Pair: L-STLD, Correlation: 0.9245223338172458
Pair: L-TXT, Correlation: 0.9084438342034037
Pair: L-TT, Correlation: 0.9136871061384243
Pair: L-TDG, Correlation: 0.9137357330307041
Pair: L-TRV, Correlation: 0.9170007563964334
Pair: L-URI, Correlation: 0.9339431658065325
Pair: L-VLO, Correlation: 0.9073654500234853
Pair: L-WRB, Correlation: 0.9144670705215358
Pair: L-GWW, Correlation: 0.9193630026826147
Pair: L-WELL, Correlation: 0.9084781451875232
Pair: LOW-LULU, Correlation: 0.9280312737702977
Pair: LOW-MAR, Correlation: 0.9331825201058517
Pair: LOW-MMC, Correlation: 0.9821873733176459
Pair: LOW-MLM, Correlation: 0.9618694750478636
Pair: LOW-MAS, Correlation: 0.9637766839732412
Pair: LOW-MA, Correlation: 0.9696967098178697
Pair: LOW-MCD, Correlation: 0.9708646162804074
Pair: LOW-MRK, Correlation: 0.9348095552808083
Pair: LOW-MET, Correlation: 0.9430491701601292
Pair: LOW-MTD, Correlation: 0.9704639473131373
Pair: LOW-MCHP, Correlation: 0.9715490809702202
Pair: LOW-MU, Correlation: 0.9229446682806831
Pair: LOW-MSFT, Correlation: 0.9751199650542441
Pair: LOW-MAA, Correlation: 0.9450582792634176
Pair: LOW-MOH, Correlation: 0.9744857931812114
Pair: LOW-MDLZ, Correlation: 0.9620369168887825
Pair: LOW-MPWR, Correlation: 0.9532685623752286
Pair: LOW-MNST, Correlation: 0.9555332323413465
Pair: LOW-MCO, Correlation: 0.9800222441572716
Pair: LOW-MS, Correlation: 0.9730470300343803
Pair: LOW-MSI, Correlation: 0.9562092968197441
Pair: LOW-MSCI, Correlation: 0.9752774137311441
Pair: LOW-NDAQ, Correlation: 0.9857417731526467
Pair: LOW-NEE, Correlation: 0.9534026698107366
Pair: LOW-NDSN, Correlation: 0.9801162178272932
Pair: LOW-NSC, Correlation: 0.9564833147547038
Pair: LOW-NOC, Correlation: 0.9366288979887271
Pair: LOW-NUE, Correlation: 0.9056139082555001
Pair: LOW-NVR, Correlation: 0.9608506161304553
Pair: LOW-NXPI, Correlation: 0.9640722533190808
Pair: LOW-ORLY, Correlation: 0.9643163574418344
Pair: LOW-ODFL, Correlation: 0.9777339945781207
Pair: LOW-ON, Correlation: 0.9250904115797244
Pair: LOW-ORCL, Correlation: 0.9306872149622288
Pair: LOW-OTIS, Correlation: 0.9190481908154188
Pair: LOW-PCAR, Correlation: 0.9159762644345254
Pair: LOW-PKG, Correlation: 0.9504773199535695
Pair: LOW-PANW, Correlation: 0.9198706920577056
Pair: LOW-PH, Correlation: 0.9321963310229829
Pair: LOW-PAYX, Correlation: 0.9844625530394905
Pair: LOW-PNR, Correlation: 0.902043948595841
Pair: LOW-PEP, Correlation: 0.9709686201966322
Pair: LOW-PNC, Correlation: 0.9205202571952037
Pair: LOW-POOL, Correlation: 0.9631540813789593
Pair: LOW-PFG, Correlation: 0.9227077108285369
Pair: LOW-PG, Correlation: 0.9792912039283928
Pair: LOW-PGR, Correlation: 0.9339663640742416
Pair: LOW-PLD, Correlation: 0.9725232122019836
Pair: LOW-PEG, Correlation: 0.9553593829574112
Pair: LOW-PTC, Correlation: 0.9572046500464496
Pair: LOW-PSA, Correlation: 0.954353224223761
Pair: LOW-QCOM, Correlation: 0.9413982337046282
Pair: LOW-DGX, Correlation: 0.9652362992815208
Pair: LOW-RJF, Correlation: 0.9677216425309676
Pair: LOW-RTX, Correlation: 0.9017760565090522
Pair: LOW-RF, Correlation: 0.9361234192816247
Pair: LOW-RSG, Correlation: 0.9694312950170072
Pair: LOW-RMD, Correlation: 0.9509801924938782
Pair: LOW-RVTY, Correlation: 0.9104455591971907
Pair: LOW-ROK, Correlation: 0.9676535892729807
Pair: LOW-ROL, Correlation: 0.9661318846462228
Pair: LOW-ROP, Correlation: 0.9681751876024514
Pair: LOW-ROST, Correlation: 0.9176644216353361
Pair: LOW-SPGI, Correlation: 0.9801893809957458
Pair: LOW-CRM, Correlation: 0.9408249015877844
Pair: LOW-STX, Correlation: 0.9377019285224437
Pair: LOW-SRE, Correlation: 0.9256668479096819
Pair: LOW-NOW, Correlation: 0.9636935604800343
Pair: LOW-SHW, Correlation: 0.983864436057611
Pair: LOW-SNA, Correlation: 0.9455177369778703
Pair: LOW-SO, Correlation: 0.9625641320477748
Pair: LOW-SBUX, Correlation: 0.9242061314378338
Pair: LOW-STLD, Correlation: 0.9064652609528675
Pair: LOW-STE, Correlation: 0.9765025642133025
Pair: LOW-SYK, Correlation: 0.9685388149161303
Pair: LOW-SNPS, Correlation: 0.9506681088855657
Pair: LOW-SYY, Correlation: 0.9180806920603412
Pair: LOW-TMUS, Correlation: 0.970503234888429
Pair: LOW-TGT, Correlation: 0.9052080430353345
Pair: LOW-TEL, Correlation: 0.9740744737596905
Pair: LOW-TDY, Correlation: 0.9554275305311755
Pair: LOW-TER, Correlation: 0.9535067182667734
Pair: LOW-TSLA, Correlation: 0.9153673820513468
Pair: LOW-TXN, Correlation: 0.9785955374358565
Pair: LOW-TPL, Correlation: 0.9134453254980965
Pair: LOW-TMO, Correlation: 0.9833177488690967
Pair: LOW-TJX, Correlation: 0.9573653501719881
Pair: LOW-TSCO, Correlation: 0.9760570405751996
Pair: LOW-TT, Correlation: 0.9345987574572017
Pair: LOW-TDG, Correlation: 0.934044560894436
Pair: LOW-TRV, Correlation: 0.9459459971173919
Pair: LOW-TYL, Correlation: 0.9633328264958153
Pair: LOW-ULTA, Correlation: 0.9039718746194797
Pair: LOW-UNP, Correlation: 0.9719493329819469
Pair: LOW-UPS, Correlation: 0.9361333694314993
Pair: LOW-URI, Correlation: 0.9179670342188795
Pair: LOW-UNH, Correlation: 0.9794849474850628
Pair: LOW-VRSK, Correlation: 0.9726543986172399
Pair: LOW-VRTX, Correlation: 0.923050859739472
Pair: LOW-VICI, Correlation: 0.9261977454452803
Pair: LOW-V, Correlation: 0.9637876793805108
Pair: LOW-VMC, Correlation: 0.9584909206415361
Pair: LOW-WRB, Correlation: 0.9608864677833169
Pair: LOW-GWW, Correlation: 0.9086704197908176
Pair: LOW-WMT, Correlation: 0.954823742914327
Pair: LOW-WM, Correlation: 0.9773293296935436
Pair: LOW-WAT, Correlation: 0.9536962545708508
Pair: LOW-WEC, Correlation: 0.9200998848213555
Pair: LOW-WST, Correlation: 0.9623402181413183
Pair: LOW-WTW, Correlation: 0.9682292783310287
Pair: LOW-XEL, Correlation: 0.9143115665687144
Pair: LOW-XYL, Correlation: 0.9511195904108563
Pair: LOW-YUM, Correlation: 0.9632908578567027
Pair: LOW-ZTS, Correlation: 0.9539000829756723
Pair: LULU-MMC, Correlation: 0.9031371936510014
Pair: LULU-MA, Correlation: 0.9340891301649462
Pair: LULU-MCD, Correlation: 0.9260775661543935
Pair: LULU-MTD, Correlation: 0.927436978694093
Pair: LULU-MCHP, Correlation: 0.9271452086596015
Pair: LULU-MSFT, Correlation: 0.9262212358812801
Pair: LULU-MOH, Correlation: 0.9435989939450662
Pair: LULU-MDLZ, Correlation: 0.9003869621511152
Pair: LULU-MNST, Correlation: 0.9024143429714612
Pair: LULU-MCO, Correlation: 0.9261243191552463
Pair: LULU-MSCI, Correlation: 0.9635267641303427
Pair: LULU-NDAQ, Correlation: 0.9210091936185018
Pair: LULU-NEE, Correlation: 0.9216658953480988
Pair: LULU-NKE, Correlation: 0.9082769611137621
Pair: LULU-NDSN, Correlation: 0.9410797773674238
Pair: LULU-NSC, Correlation: 0.9287179505181524
Pair: LULU-ODFL, Correlation: 0.9285993363397141
Pair: LULU-PAYX, Correlation: 0.913199847601092
Pair: LULU-PEP, Correlation: 0.9090090980179459
Pair: LULU-POOL, Correlation: 0.9579790222602862
Pair: LULU-PG, Correlation: 0.9302060853563336
Pair: LULU-PLD, Correlation: 0.947544620761506
Pair: LULU-RMD, Correlation: 0.9322194974281378
Pair: LULU-ROK, Correlation: 0.9346690012116882
Pair: LULU-ROL, Correlation: 0.9132569426622215
Pair: LULU-ROP, Correlation: 0.9317737308709887
Pair: LULU-SPGI, Correlation: 0.941604200153173
Pair: LULU-CRM, Correlation: 0.9251997122766759
Pair: LULU-NOW, Correlation: 0.914997173908801
Pair: LULU-SHW, Correlation: 0.9244060391965158
Pair: LULU-SBUX, Correlation: 0.9044895269958898
Pair: LULU-STE, Correlation: 0.9455553594092925
Pair: LULU-SYK, Correlation: 0.9002853316915631
Pair: LULU-TGT, Correlation: 0.9165507008986452
Pair: LULU-TDY, Correlation: 0.9504571360955834
Pair: LULU-TER, Correlation: 0.9305459664884909
Pair: LULU-TXN, Correlation: 0.9243315810203423
Pair: LULU-TMO, Correlation: 0.9491348095041908
Pair: LULU-TYL, Correlation: 0.9089083470431273
Pair: LULU-UNP, Correlation: 0.9273879771973887
Pair: LULU-UPS, Correlation: 0.9071900702837943
Pair: LULU-UNH, Correlation: 0.9147348380767163
Pair: LULU-VRSN, Correlation: 0.9026937640547319
Pair: LULU-VRSK, Correlation: 0.9326994323739645
Pair: LULU-V, Correlation: 0.9268669116572147
Pair: LULU-WM, Correlation: 0.9037372548541888
Pair: LULU-WST, Correlation: 0.9620816732281063
Pair: LULU-WTW, Correlation: 0.9095964725835911
Pair: LULU-WDAY, Correlation: 0.9146679504979807
Pair: LULU-YUM, Correlation: 0.9153863663066729
Pair: LULU-ZTS, Correlation: 0.9586484614300413
Pair: LYB-MGM, Correlation: 0.9189634233556881
Pair: LYB-OMC, Correlation: 0.9088795388144009
Pair: LYB-PKG, Correlation: 0.9011478342772724
Pair: LYB-PPG, Correlation: 0.9308836892173068
Pair: LYB-PFG, Correlation: 0.908036426491377
Pair: LYB-PRU, Correlation: 0.9206607910590366
Pair: LYB-SNA, Correlation: 0.9159306387943074
Pair: LYB-TEL, Correlation: 0.9044996068764166
Pair: LYB-TXT, Correlation: 0.9283255783628792
Pair: LYB-TRV, Correlation: 0.9028627135121431
Pair: LYB-WY, Correlation: 0.9413017826456005
Pair: MTB-NI, Correlation: 0.9085242103820698
Pair: MTB-NTRS, Correlation: 0.9224259460317094
Pair: MTB-PNC, Correlation: 0.9159988154758618
Pair: MTB-PRU, Correlation: 0.9263088174363396
Pair: MTB-RTX, Correlation: 0.9001620670865195
Pair: MTB-RF, Correlation: 0.9137158614274407
Pair: MTB-TFC, Correlation: 0.9072873801874454
Pair: MTB-USB, Correlation: 0.9273750652776237
Pair: MPC-MAR, Correlation: 0.9122005451741988
Pair: MPC-MLM, Correlation: 0.9048925093246355
Pair: MPC-MCK, Correlation: 0.9465135952210519
Pair: MPC-MRK, Correlation: 0.9123028955695638
Pair: MPC-MSI, Correlation: 0.9076232714697811
Pair: MPC-NUE, Correlation: 0.9389053904148819
Pair: MPC-ORLY, Correlation: 0.9290342956655928
Pair: MPC-OKE, Correlation: 0.9018761444474698
Pair: MPC-ORCL, Correlation: 0.9064797999262707
Pair: MPC-PCAR, Correlation: 0.9435226297598656
Pair: MPC-PANW, Correlation: 0.9309190107271186
Pair: MPC-PH, Correlation: 0.926837316558494
Pair: MPC-PSX, Correlation: 0.9365838549683188
Pair: MPC-PGR, Correlation: 0.9238605087267149
Pair: MPC-PHM, Correlation: 0.9154184356174526
Pair: MPC-PWR, Correlation: 0.9415948042716388
Pair: MPC-RJF, Correlation: 0.9015740014089102
Pair: MPC-RSG, Correlation: 0.9103972392612542
Pair: MPC-STLD, Correlation: 0.9665888568435702
Pair: MPC-SNPS, Correlation: 0.9146648148952267
Pair: MPC-TJX, Correlation: 0.9038218407942638
Pair: MPC-TDG, Correlation: 0.9153959589692285
Pair: MPC-TRV, Correlation: 0.9020922809428682
Pair: MPC-URI, Correlation: 0.9341193578864395
Pair: MPC-VLO, Correlation: 0.9619688960743306
Pair: MPC-WRB, Correlation: 0.9086983071586615
Pair: MPC-GWW, Correlation: 0.9497794981105927
Pair: MKTX-MKC, Correlation: 0.9169186726273539
Pair: MKTX-MDT, Correlation: 0.910777460347922
Pair: MKTX-NKE, Correlation: 0.9074275067068309
Pair: MKTX-SBAC, Correlation: 0.9116389268687969
Pair: MKTX-TTWO, Correlation: 0.9092871761969977
Pair: MKTX-TFX, Correlation: 0.9580349927654201
Pair: MKTX-VRSN, Correlation: 0.9128229601367706
Pair: MAR-MMC, Correlation: 0.9604599699188762
Pair: MAR-MLM, Correlation: 0.9655387604845134
Pair: MAR-MAS, Correlation: 0.9454748702991
Pair: MAR-MA, Correlation: 0.944089189280449
Pair: MAR-MCD, Correlation: 0.9456111792706468
Pair: MAR-MRK, Correlation: 0.9438037679837535
Pair: MAR-MET, Correlation: 0.9390826014270596
Pair: MAR-MGM, Correlation: 0.9039350571107883
Pair: MAR-MCHP, Correlation: 0.9398463969809715
Pair: MAR-MU, Correlation: 0.9331611924505798
Pair: MAR-MSFT, Correlation: 0.9307951094114506
Pair: MAR-MOH, Correlation: 0.9076989465237398
Pair: MAR-MDLZ, Correlation: 0.9328793610807693
Pair: MAR-MPWR, Correlation: 0.9144209166917604
Pair: MAR-MNST, Correlation: 0.9276824491381708
Pair: MAR-MCO, Correlation: 0.9363943470048042
Pair: MAR-MS, Correlation: 0.9283526987125872
Pair: MAR-MSI, Correlation: 0.9479965663808598
Pair: MAR-NDAQ, Correlation: 0.9202147678633185
Pair: MAR-NTAP, Correlation: 0.9055850681831877
Pair: MAR-NI, Correlation: 0.9153901787647731
Pair: MAR-NDSN, Correlation: 0.9321387976154935
Pair: MAR-NSC, Correlation: 0.9017141352272496
Pair: MAR-NOC, Correlation: 0.9434798695505129
Pair: MAR-NVR, Correlation: 0.9672211270664149
Pair: MAR-NXPI, Correlation: 0.943668201821446
Pair: MAR-ORLY, Correlation: 0.9464161345970068
Pair: MAR-ODFL, Correlation: 0.922378524245348
Pair: MAR-OMC, Correlation: 0.9049402251336346
Pair: MAR-OKE, Correlation: 0.947262877849611
Pair: MAR-ORCL, Correlation: 0.931108809511578
Pair: MAR-OTIS, Correlation: 0.9023766132719373
Pair: MAR-PCAR, Correlation: 0.941353562360062
Pair: MAR-PKG, Correlation: 0.9743950169459519
Pair: MAR-PANW, Correlation: 0.9302390121735963
Pair: MAR-PH, Correlation: 0.9472033305258795
Pair: MAR-PAYX, Correlation: 0.9494412373960124
Pair: MAR-PEP, Correlation: 0.931922311908385
Pair: MAR-PSX, Correlation: 0.9239383648290228
Pair: MAR-PNC, Correlation: 0.9117122582510688
Pair: MAR-PFG, Correlation: 0.9452002557790857
Pair: MAR-PG, Correlation: 0.9229239790243793
Pair: MAR-PGR, Correlation: 0.9409172108767895
Pair: MAR-PRU, Correlation: 0.9408893625259419
Pair: MAR-PEG, Correlation: 0.9583508115117985
Pair: MAR-PTC, Correlation: 0.9634540732405504
Pair: MAR-PSA, Correlation: 0.9065527108814183
Pair: MAR-PHM, Correlation: 0.9199357669597944
Pair: MAR-DGX, Correlation: 0.9204904560515187
Pair: MAR-RJF, Correlation: 0.9606190019627621
Pair: MAR-RTX, Correlation: 0.9426680260840292
Pair: MAR-RF, Correlation: 0.9335907162660697
Pair: MAR-RSG, Correlation: 0.962497837230599
Pair: MAR-ROK, Correlation: 0.9120456053108386
Pair: MAR-ROL, Correlation: 0.9423541362152433
Pair: MAR-ROP, Correlation: 0.9483302933514363
Pair: MAR-ROST, Correlation: 0.9410630473841606
Pair: MAR-SPGI, Correlation: 0.9245135017855978
Pair: MAR-CRM, Correlation: 0.9043554090345932
Pair: MAR-STX, Correlation: 0.9073404643840366
Pair: MAR-SRE, Correlation: 0.9291196100052144
Pair: MAR-NOW, Correlation: 0.9008085999544082
Pair: MAR-SHW, Correlation: 0.9370104470797218
Pair: MAR-SNA, Correlation: 0.9548398495397981
Pair: MAR-SO, Correlation: 0.9348387277838965
Pair: MAR-STLD, Correlation: 0.9228042572915097
Pair: MAR-STE, Correlation: 0.9183964349885876
Pair: MAR-SYK, Correlation: 0.9700574459328408
Pair: MAR-SNPS, Correlation: 0.9201866868358999
Pair: MAR-SYY, Correlation: 0.9173547021349936
Pair: MAR-TMUS, Correlation: 0.9350954965399537
Pair: MAR-TEL, Correlation: 0.9477248814065613
Pair: MAR-TXN, Correlation: 0.9311443978887861
Pair: MAR-TXT, Correlation: 0.9503260055106135
Pair: MAR-TJX, Correlation: 0.9629383882071163
Pair: MAR-TSCO, Correlation: 0.9150336509370878
Pair: MAR-TT, Correlation: 0.928394717684926
Pair: MAR-TDG, Correlation: 0.9537718433836141
Pair: MAR-TRV, Correlation: 0.9767687412355285
Pair: MAR-TYL, Correlation: 0.9041733933459121
Pair: MAR-ULTA, Correlation: 0.9022004744426703
Pair: MAR-UNP, Correlation: 0.937448306211383
Pair: MAR-URI, Correlation: 0.9326860733601197
Pair: MAR-UNH, Correlation: 0.9392522221102009
Pair: MAR-VLO, Correlation: 0.9533749333944312
Pair: MAR-VRSK, Correlation: 0.9383362905786434
Pair: MAR-VRTX, Correlation: 0.9415489717952358
Pair: MAR-V, Correlation: 0.9467121144743572
Pair: MAR-VMC, Correlation: 0.9682499390005231
Pair: MAR-WRB, Correlation: 0.9582268007232962
Pair: MAR-GWW, Correlation: 0.9161549095953608
Pair: MAR-WMT, Correlation: 0.9339005305182242
Pair: MAR-WM, Correlation: 0.9630694446924591
Pair: MAR-WAT, Correlation: 0.9104013655026603
Pair: MAR-WELL, Correlation: 0.929102312238424
Pair: MAR-WTW, Correlation: 0.9441167318337343
Pair: MAR-XYL, Correlation: 0.9280015344636872
Pair: MAR-YUM, Correlation: 0.9484006066766195
Pair: MMC-MLM, Correlation: 0.97632187838377
Pair: MMC-MAS, Correlation: 0.9552650602128295
Pair: MMC-MA, Correlation: 0.9700067766863866
Pair: MMC-MCD, Correlation: 0.9776227257594174
Pair: MMC-MRK, Correlation: 0.9691152237367243
Pair: MMC-MET, Correlation: 0.951299483857784
Pair: MMC-MTD, Correlation: 0.9465957972694811
Pair: MMC-MCHP, Correlation: 0.9675232875106883
Pair: MMC-MU, Correlation: 0.9202082685756297
Pair: MMC-MSFT, Correlation: 0.9812774474523391
Pair: MMC-MAA, Correlation: 0.9159752053619958
Pair: MMC-MOH, Correlation: 0.9696678298807503
Pair: MMC-MDLZ, Correlation: 0.9672798200540788
Pair: MMC-MPWR, Correlation: 0.9634699681760905
Pair: MMC-MNST, Correlation: 0.9512492447485524
Pair: MMC-MCO, Correlation: 0.9746644289351495
Pair: MMC-MS, Correlation: 0.9629879831191335
Pair: MMC-MSI, Correlation: 0.9805710807479574
Pair: MMC-MSCI, Correlation: 0.9564232955485468
Pair: MMC-NDAQ, Correlation: 0.9718430026572975
Pair: MMC-NEE, Correlation: 0.9280413216643905
Pair: MMC-NDSN, Correlation: 0.9716587074096452
Pair: MMC-NSC, Correlation: 0.9292254206770507
Pair: MMC-NOC, Correlation: 0.9540383776758721
Pair: MMC-NUE, Correlation: 0.933833683853981
Pair: MMC-NVR, Correlation: 0.9756807927555176
Pair: MMC-NXPI, Correlation: 0.9595796009260984
Pair: MMC-ORLY, Correlation: 0.9862953523400128
Pair: MMC-ODFL, Correlation: 0.9799116861784584
Pair: MMC-ON, Correlation: 0.9396893104556697
Pair: MMC-OKE, Correlation: 0.9144205375532013
Pair: MMC-ORCL, Correlation: 0.9562863331418116
Pair: MMC-OTIS, Correlation: 0.9183380004001349
Pair: MMC-PCAR, Correlation: 0.9483256874948468
Pair: MMC-PKG, Correlation: 0.9644762679853578
Pair: MMC-PANW, Correlation: 0.9550246827054759
Pair: MMC-PH, Correlation: 0.9557728521369486
Pair: MMC-PAYX, Correlation: 0.9846948350779887
Pair: MMC-PNR, Correlation: 0.900813112047682
Pair: MMC-PEP, Correlation: 0.9758384766105939
Pair: MMC-PM, Correlation: 0.9117423370983122
Pair: MMC-POOL, Correlation: 0.9224726202868541
Pair: MMC-PFG, Correlation: 0.9406552463602756
Pair: MMC-PG, Correlation: 0.9794858218283158
Pair: MMC-PGR, Correlation: 0.9646271470597373
Pair: MMC-PLD, Correlation: 0.9528799414920982
Pair: MMC-PEG, Correlation: 0.9632470455797184
Pair: MMC-PTC, Correlation: 0.9638205082577296
Pair: MMC-PSA, Correlation: 0.9452074562403066
Pair: MMC-PHM, Correlation: 0.9237287469034091
Pair: MMC-PWR, Correlation: 0.9184119733818874
Pair: MMC-QCOM, Correlation: 0.9192258329642176
Pair: MMC-DGX, Correlation: 0.956224546101164
Pair: MMC-RJF, Correlation: 0.9761486773402177
Pair: MMC-RTX, Correlation: 0.9234820331541831
Pair: MMC-REGN, Correlation: 0.9135793415227571
Pair: MMC-RF, Correlation: 0.9239327179489975
Pair: MMC-RSG, Correlation: 0.991865059672054
Pair: MMC-RMD, Correlation: 0.9178279432745268
Pair: MMC-ROK, Correlation: 0.9495514783135391
Pair: MMC-ROL, Correlation: 0.9685637913511741
Pair: MMC-ROP, Correlation: 0.9696530719119236
Pair: MMC-ROST, Correlation: 0.9245488365031324
Pair: MMC-SPGI, Correlation: 0.969026343648516
Pair: MMC-CRM, Correlation: 0.9199984926431398
Pair: MMC-STX, Correlation: 0.9238575589229078
Pair: MMC-SRE, Correlation: 0.9400380586792131
Pair: MMC-NOW, Correlation: 0.9533299345094918
Pair: MMC-SHW, Correlation: 0.9701072770229813
Pair: MMC-SNA, Correlation: 0.9563280885929719
Pair: MMC-SO, Correlation: 0.9797789588950574
Pair: MMC-STLD, Correlation: 0.9436018765790858
Pair: MMC-STE, Correlation: 0.9638506446913012
Pair: MMC-SYK, Correlation: 0.976940112175796
Pair: MMC-SNPS, Correlation: 0.9715390280248818
Pair: MMC-SYY, Correlation: 0.9107736220594722
Pair: MMC-TMUS, Correlation: 0.9750765194976075
Pair: MMC-TEL, Correlation: 0.9600118858650609
Pair: MMC-TDY, Correlation: 0.9404330303668963
Pair: MMC-TER, Correlation: 0.9201200723311649
Pair: MMC-TXN, Correlation: 0.965112067651294
Pair: MMC-TPL, Correlation: 0.9301664648116684
Pair: MMC-TXT, Correlation: 0.9104343499502264
Pair: MMC-TMO, Correlation: 0.9624677362994539
Pair: MMC-TJX, Correlation: 0.9773419295749681
Pair: MMC-TSCO, Correlation: 0.9763874078192288
Pair: MMC-TT, Correlation: 0.9529215047733934
Pair: MMC-TDG, Correlation: 0.9636945213382759
Pair: MMC-TRV, Correlation: 0.964470893995462
Pair: MMC-TYL, Correlation: 0.9413526678400056
Pair: MMC-ULTA, Correlation: 0.9118010874063897
Pair: MMC-UNP, Correlation: 0.9603018905079805
Pair: MMC-URI, Correlation: 0.9421280668842392
Pair: MMC-UNH, Correlation: 0.9842550972860257
Pair: MMC-VLO, Correlation: 0.9270186235026653
Pair: MMC-VLTO, Correlation: 0.9247841364928516
Pair: MMC-VRSK, Correlation: 0.9770014111459903
Pair: MMC-VRTX, Correlation: 0.9585985952580176
Pair: MMC-VICI, Correlation: 0.926393001145937
Pair: MMC-V, Correlation: 0.9652355581207255
Pair: MMC-VMC, Correlation: 0.9692872632509841
Pair: MMC-WRB, Correlation: 0.9836149294241296
Pair: MMC-GWW, Correlation: 0.9416410373635529
Pair: MMC-WMT, Correlation: 0.9666038722760015
Pair: MMC-WM, Correlation: 0.9913446641771443
Pair: MMC-WAT, Correlation: 0.9361406292291651
Pair: MMC-WEC, Correlation: 0.9103586331054614
Pair: MMC-WELL, Correlation: 0.9209279012343075
Pair: MMC-WST, Correlation: 0.9326159874265363
Pair: MMC-WTW, Correlation: 0.9686823329440001
Pair: MMC-XYL, Correlation: 0.9456509513853575
Pair: MMC-YUM, Correlation: 0.967729644297797
Pair: MMC-ZTS, Correlation: 0.9224327297504747
Pair: MLM-MAS, Correlation: 0.9580427497626711
Pair: MLM-MA, Correlation: 0.9443028204892997
Pair: MLM-MCD, Correlation: 0.9427019817903158
Pair: MLM-MRK, Correlation: 0.944524876077085
Pair: MLM-META, Correlation: 0.9160431110461388
Pair: MLM-MET, Correlation: 0.9469624389992258
Pair: MLM-MTD, Correlation: 0.9131638892551945
Pair: MLM-MCHP, Correlation: 0.9568997294130748
Pair: MLM-MU, Correlation: 0.9336954725596935
Pair: MLM-MSFT, Correlation: 0.9685945516596439
Pair: MLM-MOH, Correlation: 0.9340438311160142
Pair: MLM-MDLZ, Correlation: 0.9407945360543906
Pair: MLM-MPWR, Correlation: 0.9592805321782202
Pair: MLM-MNST, Correlation: 0.9269244851642073
Pair: MLM-MCO, Correlation: 0.954715189981229
Pair: MLM-MS, Correlation: 0.9534957287066793
Pair: MLM-MSI, Correlation: 0.9665272083299682
Pair: MLM-MSCI, Correlation: 0.9225020420024772
Pair: MLM-NDAQ, Correlation: 0.9443509092451795
Pair: MLM-NTAP, Correlation: 0.9005748383791314
Pair: MLM-NDSN, Correlation: 0.9462180215225791
Pair: MLM-NOC, Correlation: 0.9187124633125124
Pair: MLM-NUE, Correlation: 0.9251063181404184
Pair: MLM-NVR, Correlation: 0.9770944749040648
Pair: MLM-NXPI, Correlation: 0.9728399004657268
Pair: MLM-ORLY, Correlation: 0.9689876783874041
Pair: MLM-ODFL, Correlation: 0.9586484131349414
Pair: MLM-ON, Correlation: 0.9110971927106039
Pair: MLM-OKE, Correlation: 0.9136145120073538
Pair: MLM-ORCL, Correlation: 0.9559390656991618
Pair: MLM-OTIS, Correlation: 0.933304034266883
Pair: MLM-PCAR, Correlation: 0.9629212319677615
Pair: MLM-PKG, Correlation: 0.9643324968163752
Pair: MLM-PANW, Correlation: 0.954762421139493
Pair: MLM-PH, Correlation: 0.9709585874961186
Pair: MLM-PAYX, Correlation: 0.9579611661341882
Pair: MLM-PNR, Correlation: 0.925640869084103
Pair: MLM-PEP, Correlation: 0.9382012972654002
Pair: MLM-PM, Correlation: 0.9029347142090701
Pair: MLM-PFG, Correlation: 0.9340114330654827
Pair: MLM-PG, Correlation: 0.9482625983900039
Pair: MLM-PGR, Correlation: 0.9544091600670642
Pair: MLM-PLD, Correlation: 0.9159447309244036
Pair: MLM-PRU, Correlation: 0.9151305974347256
Pair: MLM-PEG, Correlation: 0.942986806805116
Pair: MLM-PTC, Correlation: 0.9606187212190254
Pair: MLM-PSA, Correlation: 0.9212139838052368
Pair: MLM-PHM, Correlation: 0.94509770558792
Pair: MLM-PWR, Correlation: 0.9241460959036368
Pair: MLM-QCOM, Correlation: 0.9152459755505185
Pair: MLM-DGX, Correlation: 0.9298904027956068
Pair: MLM-RJF, Correlation: 0.9676339448149182
Pair: MLM-RTX, Correlation: 0.9077833211754499
Pair: MLM-RF, Correlation: 0.914522628585517
Pair: MLM-RSG, Correlation: 0.9796508185521015
Pair: MLM-ROK, Correlation: 0.9258144096864305
Pair: MLM-ROL, Correlation: 0.9414815346712457
Pair: MLM-ROP, Correlation: 0.9434803932697967
Pair: MLM-ROST, Correlation: 0.9184583336044488
Pair: MLM-SPGI, Correlation: 0.9425973719301124
Pair: MLM-CRM, Correlation: 0.9121195928801901
Pair: MLM-STX, Correlation: 0.9256806987875833
Pair: MLM-SRE, Correlation: 0.9021425734008753
Pair: MLM-NOW, Correlation: 0.9388076566774877
Pair: MLM-SHW, Correlation: 0.9571237629507675
Pair: MLM-SNA, Correlation: 0.9589929779461184
Pair: MLM-SO, Correlation: 0.9520626903201437
Pair: MLM-STLD, Correlation: 0.9415439435038994
Pair: MLM-STE, Correlation: 0.9309638150071391
Pair: MLM-SYK, Correlation: 0.9693547317355752
Pair: MLM-SNPS, Correlation: 0.9633767710069195
Pair: MLM-TMUS, Correlation: 0.9537188953341705
Pair: MLM-TEL, Correlation: 0.9516367077102952
Pair: MLM-TDY, Correlation: 0.900007601639026
Pair: MLM-TER, Correlation: 0.9041712628640005
Pair: MLM-TXN, Correlation: 0.9403089157156768
Pair: MLM-TPL, Correlation: 0.9032893712534278
Pair: MLM-TXT, Correlation: 0.9222441707441607
Pair: MLM-TMO, Correlation: 0.9246172819724906
Pair: MLM-TJX, Correlation: 0.966851653882806
Pair: MLM-TSCO, Correlation: 0.9563376073434443
Pair: MLM-TT, Correlation: 0.9639291598679409
Pair: MLM-TDG, Correlation: 0.9700621525719723
Pair: MLM-TRV, Correlation: 0.9627909434062701
Pair: MLM-TYL, Correlation: 0.9259224700973082
Pair: MLM-UNP, Correlation: 0.9318698794507615
Pair: MLM-URI, Correlation: 0.9591501372241893
Pair: MLM-UNH, Correlation: 0.9448048717951687
Pair: MLM-VLO, Correlation: 0.9166082150230457
Pair: MLM-VRSK, Correlation: 0.9507799542414974
Pair: MLM-VRTX, Correlation: 0.9296971533059907
Pair: MLM-V, Correlation: 0.9410756189664039
Pair: MLM-VMC, Correlation: 0.989529220514159
Pair: MLM-WRB, Correlation: 0.964158382463764
Pair: MLM-GWW, Correlation: 0.9418360860597675
Pair: MLM-WMT, Correlation: 0.9444849114421233
Pair: MLM-WM, Correlation: 0.974183073864419
Pair: MLM-WAT, Correlation: 0.9141699496995886
Pair: MLM-WELL, Correlation: 0.9260353578817618
Pair: MLM-WST, Correlation: 0.9069852751653806
Pair: MLM-WTW, Correlation: 0.9468218680211024
Pair: MLM-XYL, Correlation: 0.9386130869261785
Pair: MLM-YUM, Correlation: 0.9407588943276947
Pair: MAS-MA, Correlation: 0.9668577587488187
Pair: MAS-MCD, Correlation: 0.9511827645573965
Pair: MAS-MRK, Correlation: 0.9181312397573399
Pair: MAS-META, Correlation: 0.9420660320982184
Pair: MAS-MET, Correlation: 0.9086991255255037
Pair: MAS-MTD, Correlation: 0.938109195299317
Pair: MAS-MCHP, Correlation: 0.9555608052085175
Pair: MAS-MU, Correlation: 0.9341596595506042
Pair: MAS-MSFT, Correlation: 0.9431447071683734
Pair: MAS-MAA, Correlation: 0.9108972419737695
Pair: MAS-MOH, Correlation: 0.9157073874854749
Pair: MAS-MDLZ, Correlation: 0.9553306973562193
Pair: MAS-MPWR, Correlation: 0.9213804652075126
Pair: MAS-MNST, Correlation: 0.9536537263669517
Pair: MAS-MCO, Correlation: 0.9757114064938971
Pair: MAS-MS, Correlation: 0.9313564996960023
Pair: MAS-MSI, Correlation: 0.9272883748050142
Pair: MAS-MSCI, Correlation: 0.9288115855856774
Pair: MAS-NDAQ, Correlation: 0.9591669158617243
Pair: MAS-NFLX, Correlation: 0.9321481180516591
Pair: MAS-NEE, Correlation: 0.9325668826883613
Pair: MAS-NI, Correlation: 0.9216953515992858
Pair: MAS-NDSN, Correlation: 0.967544071099176
Pair: MAS-NSC, Correlation: 0.9417970245629799
Pair: MAS-NOC, Correlation: 0.9399053134803099
Pair: MAS-NVR, Correlation: 0.9690551478665443
Pair: MAS-NXPI, Correlation: 0.9658638717259508
Pair: MAS-ORLY, Correlation: 0.9260184478473594
Pair: MAS-ODFL, Correlation: 0.9237665765924107
Pair: MAS-ORCL, Correlation: 0.9040130172322008
Pair: MAS-PCAR, Correlation: 0.9085026717256457
Pair: MAS-PKG, Correlation: 0.9703495570741026
Pair: MAS-PH, Correlation: 0.9220493001178238
Pair: MAS-PAYX, Correlation: 0.954426995701771
Pair: MAS-PNR, Correlation: 0.9121427295476482
Pair: MAS-PEP, Correlation: 0.9468489718049503
Pair: MAS-PM, Correlation: 0.9049003697037084
Pair: MAS-PNC, Correlation: 0.9359146798364645
Pair: MAS-POOL, Correlation: 0.9281214084933285
Pair: MAS-PPG, Correlation: 0.900223569339626
Pair: MAS-PFG, Correlation: 0.9062343207989673
Pair: MAS-PG, Correlation: 0.9557126297762537
Pair: MAS-PGR, Correlation: 0.916971766102909
Pair: MAS-PLD, Correlation: 0.9370534451851823
Pair: MAS-PRU, Correlation: 0.9043323119107693
Pair: MAS-PEG, Correlation: 0.9622373603738508
Pair: MAS-PTC, Correlation: 0.9518004740720357
Pair: MAS-PSA, Correlation: 0.9272889632332443
Pair: MAS-QCOM, Correlation: 0.901142475360932
Pair: MAS-DGX, Correlation: 0.9590187779114872
Pair: MAS-RJF, Correlation: 0.9315729743484162
Pair: MAS-RTX, Correlation: 0.9020794773311736
Pair: MAS-O, Correlation: 0.9001703205897682
Pair: MAS-RF, Correlation: 0.9240939280372914
Pair: MAS-RSG, Correlation: 0.948820328509382
Pair: MAS-RMD, Correlation: 0.9184169726239249
Pair: MAS-ROK, Correlation: 0.9498800014481034
Pair: MAS-ROL, Correlation: 0.9653902509258196
Pair: MAS-ROP, Correlation: 0.9732317055255545
Pair: MAS-ROST, Correlation: 0.9556782402931097
Pair: MAS-SPGI, Correlation: 0.9724867757363631
Pair: MAS-CRM, Correlation: 0.9606486582580771
Pair: MAS-STX, Correlation: 0.9238836463905886
Pair: MAS-SRE, Correlation: 0.9305783439577182
Pair: MAS-NOW, Correlation: 0.9559094996375411
Pair: MAS-SHW, Correlation: 0.9825508564840656
Pair: MAS-SNA, Correlation: 0.9401050391550793
Pair: MAS-SO, Correlation: 0.9428048541593075
Pair: MAS-SBUX, Correlation: 0.925534347287129
Pair: MAS-STE, Correlation: 0.9541253503208418
Pair: MAS-SYK, Correlation: 0.9741387181714082
Pair: MAS-SNPS, Correlation: 0.9053543681609285
Pair: MAS-SYY, Correlation: 0.9284100685991691
Pair: MAS-TMUS, Correlation: 0.9613028198170901
Pair: MAS-TTWO, Correlation: 0.9219895568928345
Pair: MAS-TEL, Correlation: 0.9690873567219349
Pair: MAS-TDY, Correlation: 0.9361892663291226
Pair: MAS-TER, Correlation: 0.9269230372753549
Pair: MAS-TXN, Correlation: 0.9652795880036502
Pair: MAS-TMO, Correlation: 0.9445809878551705
Pair: MAS-TJX, Correlation: 0.9543216291783311
Pair: MAS-TSCO, Correlation: 0.9210024170250404
Pair: MAS-TT, Correlation: 0.9212071125190735
Pair: MAS-TDG, Correlation: 0.931889703211504
Pair: MAS-TRV, Correlation: 0.9536800497577088
Pair: MAS-TYL, Correlation: 0.972731287872678
Pair: MAS-UNP, Correlation: 0.9599895106618841
Pair: MAS-UNH, Correlation: 0.9419374044911093
Pair: MAS-VRSK, Correlation: 0.9641849864582976
Pair: MAS-VRTX, Correlation: 0.9229168667638945
Pair: MAS-V, Correlation: 0.9716648367322595
Pair: MAS-VMC, Correlation: 0.9725071255886831
Pair: MAS-WRB, Correlation: 0.9374693642913917
Pair: MAS-WMT, Correlation: 0.9459278708221804
Pair: MAS-WM, Correlation: 0.9602710771284328
Pair: MAS-WAT, Correlation: 0.9430205343144373
Pair: MAS-WEC, Correlation: 0.9303119726625007
Pair: MAS-WELL, Correlation: 0.9063407820481466
Pair: MAS-WST, Correlation: 0.915929650262634
Pair: MAS-WTW, Correlation: 0.970772740013437
Pair: MAS-WDAY, Correlation: 0.9007744646378177
Pair: MAS-XEL, Correlation: 0.9217235110986184
Pair: MAS-XYL, Correlation: 0.9590859628985194
Pair: MAS-YUM, Correlation: 0.9504580346508512
Pair: MAS-ZTS, Correlation: 0.9285001608536217
Pair: MA-MKC, Correlation: 0.9255927654713418
Pair: MA-MCD, Correlation: 0.9800418810907524
Pair: MA-MRK, Correlation: 0.9480522817925586
Pair: MA-MET, Correlation: 0.9061264150086215
Pair: MA-MTD, Correlation: 0.953282971852862
Pair: MA-MCHP, Correlation: 0.9661874802503087
Pair: MA-MU, Correlation: 0.9369563415882927
Pair: MA-MSFT, Correlation: 0.9666934034198394
Pair: MA-MAA, Correlation: 0.9178533836612914
Pair: MA-MOH, Correlation: 0.954083004953001
Pair: MA-MDLZ, Correlation: 0.9637744040320926
Pair: MA-MPWR, Correlation: 0.9269515927580814
Pair: MA-MNST, Correlation: 0.953669083885963
Pair: MA-MCO, Correlation: 0.9858107200748997
Pair: MA-MS, Correlation: 0.9342924419824137
Pair: MA-MSI, Correlation: 0.951880364136144
Pair: MA-MSCI, Correlation: 0.9619380871271919
Pair: MA-NDAQ, Correlation: 0.9674730966991121
Pair: MA-NFLX, Correlation: 0.9311366738855864
Pair: MA-NEE, Correlation: 0.9575135001332493
Pair: MA-NI, Correlation: 0.9000604578555235
Pair: MA-NDSN, Correlation: 0.9760739797090314
Pair: MA-NSC, Correlation: 0.9675798515913255
Pair: MA-NOC, Correlation: 0.9465452275649368
Pair: MA-NVR, Correlation: 0.9664713448954634
Pair: MA-NXPI, Correlation: 0.9382259864235307
Pair: MA-ORLY, Correlation: 0.9453933147308964
Pair: MA-ODFL, Correlation: 0.9502565665316631
Pair: MA-ORCL, Correlation: 0.9095242043760915
Pair: MA-PCAR, Correlation: 0.9141940965989457
Pair: MA-PKG, Correlation: 0.952173025789872
Pair: MA-PH, Correlation: 0.9200679734533865
Pair: MA-PAYX, Correlation: 0.9703707945407044
Pair: MA-PEP, Correlation: 0.9640680052724571
Pair: MA-PNC, Correlation: 0.9139484828877252
Pair: MA-POOL, Correlation: 0.9433493496927807
Pair: MA-PG, Correlation: 0.9797224780531851
Pair: MA-PGR, Correlation: 0.9382333484350883
Pair: MA-PLD, Correlation: 0.9590767833761239
Pair: MA-PEG, Correlation: 0.9680487050398014
Pair: MA-PTC, Correlation: 0.968183516288237
Pair: MA-PSA, Correlation: 0.9146224675970728
Pair: MA-QCOM, Correlation: 0.9140920317558424
Pair: MA-DGX, Correlation: 0.9554463832829188
Pair: MA-RJF, Correlation: 0.9377486738313773
Pair: MA-RTX, Correlation: 0.9008179594874002
Pair: MA-RF, Correlation: 0.9168258980823997
Pair: MA-RSG, Correlation: 0.9628617081399596
Pair: MA-RMD, Correlation: 0.9459457630982797
Pair: MA-ROK, Correlation: 0.9547085777362445
Pair: MA-ROL, Correlation: 0.981704757242201
Pair: MA-ROP, Correlation: 0.9913161000480085
Pair: MA-ROST, Correlation: 0.9629883930131894
Pair: MA-SPGI, Correlation: 0.9866727007251381
Pair: MA-CRM, Correlation: 0.9672197000769022
Pair: MA-STX, Correlation: 0.916728965073614
Pair: MA-SRE, Correlation: 0.9406163117872803
Pair: MA-NOW, Correlation: 0.9678121448744025
Pair: MA-SHW, Correlation: 0.9807631966268676
Pair: MA-SNA, Correlation: 0.9206510471997543
Pair: MA-SO, Correlation: 0.960225214752893
Pair: MA-SBUX, Correlation: 0.9365883907151457
Pair: MA-STE, Correlation: 0.9823051009876335
Pair: MA-SYK, Correlation: 0.9858931727226987
Pair: MA-SNPS, Correlation: 0.9316450081794894
Pair: MA-SYY, Correlation: 0.9419929112933384
Pair: MA-TMUS, Correlation: 0.9744303082240668
Pair: MA-TTWO, Correlation: 0.9283558374415407
Pair: MA-TEL, Correlation: 0.9595466851252915
Pair: MA-TDY, Correlation: 0.9790959333384088
Pair: MA-TER, Correlation: 0.9419517682154738
Pair: MA-TXN, Correlation: 0.9806556852474426
Pair: MA-TMO, Correlation: 0.9680519686850927
Pair: MA-TJX, Correlation: 0.9651598103604639
Pair: MA-TSCO, Correlation: 0.9390281279499453
Pair: MA-TT, Correlation: 0.9235031735281458
Pair: MA-TDG, Correlation: 0.9464337073339822
Pair: MA-TRV, Correlation: 0.9403356879890851
Pair: MA-TYL, Correlation: 0.9670106915735525
Pair: MA-UNP, Correlation: 0.9802455446478314
Pair: MA-UNH, Correlation: 0.9660817541308186
Pair: MA-VRSN, Correlation: 0.9344091133308962
Pair: MA-VRSK, Correlation: 0.9874157638787332
Pair: MA-VRTX, Correlation: 0.9466048632087083
Pair: MA-V, Correlation: 0.9964274629718132
Pair: MA-VMC, Correlation: 0.9478671626486185
Pair: MA-WRB, Correlation: 0.9601412810452576
Pair: MA-WMT, Correlation: 0.9673131887635282
Pair: MA-WM, Correlation: 0.9777867400829489
Pair: MA-WAT, Correlation: 0.9441038793069926
Pair: MA-WEC, Correlation: 0.9516446148455049
Pair: MA-WST, Correlation: 0.936470076473573
Pair: MA-WTW, Correlation: 0.9860860364580308
Pair: MA-WDAY, Correlation: 0.9352676087569052
Pair: MA-XEL, Correlation: 0.9441766440368206
Pair: MA-XYL, Correlation: 0.9628993147153867
Pair: MA-YUM, Correlation: 0.9765474406739469
Pair: MA-ZTS, Correlation: 0.9624319375105663
Pair: MTCH-PYPL, Correlation: 0.9581831926705475
Pair: MKC-MCD, Correlation: 0.9162010887993669
Pair: MKC-MDT, Correlation: 0.9252179952401429
Pair: MKC-MTD, Correlation: 0.9199250542116041
Pair: MKC-MAA, Correlation: 0.9228169332689204
Pair: MKC-MDLZ, Correlation: 0.9157380851020446
Pair: MKC-MNST, Correlation: 0.9067086571350198
Pair: MKC-MCO, Correlation: 0.902800981002319
Pair: MKC-NDAQ, Correlation: 0.9026373337021981
Pair: MKC-NEE, Correlation: 0.9595526413908547
Pair: MKC-NKE, Correlation: 0.9351465734146471
Pair: MKC-NI, Correlation: 0.9012943777858705
Pair: MKC-NDSN, Correlation: 0.918747532402441
Pair: MKC-NSC, Correlation: 0.9449451320772403
Pair: MKC-NOC, Correlation: 0.9022559472741714
Pair: MKC-PEP, Correlation: 0.9197643235946448
Pair: MKC-PFE, Correlation: 0.901813856104766
Pair: MKC-POOL, Correlation: 0.9166765143691861
Pair: MKC-PG, Correlation: 0.9137300785381163
Pair: MKC-PLD, Correlation: 0.9262045370229328
Pair: MKC-PEG, Correlation: 0.9081589561350432
Pair: MKC-DGX, Correlation: 0.9166109251849324
Pair: MKC-O, Correlation: 0.9467676341086364
Pair: MKC-RMD, Correlation: 0.9347844474546436
Pair: MKC-RVTY, Correlation: 0.9401945759623701
Pair: MKC-ROK, Correlation: 0.9056405478005352
Pair: MKC-ROL, Correlation: 0.9120633727279417
Pair: MKC-ROP, Correlation: 0.9334924892090563
Pair: MKC-ROST, Correlation: 0.9052778558761487
Pair: MKC-SPGI, Correlation: 0.9237014799280397
Pair: MKC-CRM, Correlation: 0.9105770511687269
Pair: MKC-SBAC, Correlation: 0.9589936299491758
Pair: MKC-SRE, Correlation: 0.9139444923868407
Pair: MKC-SHW, Correlation: 0.908282168989342
Pair: MKC-SBUX, Correlation: 0.9393610223265053
Pair: MKC-STE, Correlation: 0.9378401479398779
Pair: MKC-SYY, Correlation: 0.94075238896181
Pair: MKC-TTWO, Correlation: 0.9353705094801746
Pair: MKC-TDY, Correlation: 0.9485250766854151
Pair: MKC-TFX, Correlation: 0.9130126903471679
Pair: MKC-TXN, Correlation: 0.9271405558813534
Pair: MKC-TMO, Correlation: 0.9222049579867697
Pair: MKC-TYL, Correlation: 0.9211225442243793
Pair: MKC-UDR, Correlation: 0.9262747571481958
Pair: MKC-UNP, Correlation: 0.9361760846206232
Pair: MKC-VRSN, Correlation: 0.9724414965904594
Pair: MKC-VRSK, Correlation: 0.9102270808571544
Pair: MKC-V, Correlation: 0.9350403349475709
Pair: MKC-WAT, Correlation: 0.9051129803541209
Pair: MKC-WEC, Correlation: 0.9769644941018748
Pair: MKC-WTW, Correlation: 0.9145666971588909
Pair: MKC-XEL, Correlation: 0.9781804063736383
Pair: MKC-YUM, Correlation: 0.9232576017062567
Pair: MKC-ZTS, Correlation: 0.9250342371362743
Pair: MCD-MRK, Correlation: 0.9556375974416975
Pair: MCD-MET, Correlation: 0.9151732511619515
Pair: MCD-MTD, Correlation: 0.9628725808615475
Pair: MCD-MCHP, Correlation: 0.9707043166354267
Pair: MCD-MSFT, Correlation: 0.9549378613321898
Pair: MCD-MAA, Correlation: 0.9334194561741921
Pair: MCD-MOH, Correlation: 0.9618126523836137
Pair: MCD-MDLZ, Correlation: 0.9733462710051684
Pair: MCD-MPWR, Correlation: 0.9179149684108422
Pair: MCD-MNST, Correlation: 0.9651759032669421
Pair: MCD-MCO, Correlation: 0.9651865301334731
Pair: MCD-MS, Correlation: 0.9377077842275028
Pair: MCD-MSI, Correlation: 0.9495113010517754
Pair: MCD-MSCI, Correlation: 0.957797154390634
Pair: MCD-NDAQ, Correlation: 0.9689305567034454
Pair: MCD-NEE, Correlation: 0.9555884854978718
Pair: MCD-NI, Correlation: 0.9156100385450661
Pair: MCD-NDSN, Correlation: 0.9788753269690637
Pair: MCD-NSC, Correlation: 0.9566330210242106
Pair: MCD-NOC, Correlation: 0.9686507373725055
Pair: MCD-NVR, Correlation: 0.9575828818613017
Pair: MCD-NXPI, Correlation: 0.9282739800988254
Pair: MCD-ORLY, Correlation: 0.9549928847159658
Pair: MCD-ODFL, Correlation: 0.9547492737209803
Pair: MCD-ON, Correlation: 0.9157481704598522
Pair: MCD-ORCL, Correlation: 0.9043879754438885
Pair: MCD-PCAR, Correlation: 0.9004340525833399
Pair: MCD-PKG, Correlation: 0.9436149379186307
Pair: MCD-PH, Correlation: 0.9069280814247238
Pair: MCD-PAYX, Correlation: 0.9808331714178571
Pair: MCD-PEP, Correlation: 0.9843169274114921
Pair: MCD-PNC, Correlation: 0.9094250631787361
Pair: MCD-POOL, Correlation: 0.937041250221927
Pair: MCD-PFG, Correlation: 0.9189778500884067
Pair: MCD-PG, Correlation: 0.9747553454488026
Pair: MCD-PGR, Correlation: 0.92805000283617
Pair: MCD-PLD, Correlation: 0.9660548845111557
Pair: MCD-PEG, Correlation: 0.9633067313319531
Pair: MCD-PTC, Correlation: 0.9559294833320463
Pair: MCD-PSA, Correlation: 0.938365326181838
Pair: MCD-DGX, Correlation: 0.9669575408376831
Pair: MCD-RJF, Correlation: 0.9524290770059464
Pair: MCD-RTX, Correlation: 0.9107723716250232
Pair: MCD-O, Correlation: 0.9113956429892165
Pair: MCD-RF, Correlation: 0.9286529326670686
Pair: MCD-RSG, Correlation: 0.9660167021315401
Pair: MCD-RMD, Correlation: 0.9385238078682088
Pair: MCD-ROK, Correlation: 0.9617876414714525
Pair: MCD-ROL, Correlation: 0.9768396346744533
Pair: MCD-ROP, Correlation: 0.980619979989059
Pair: MCD-ROST, Correlation: 0.9414357679037088
Pair: MCD-SPGI, Correlation: 0.9711025583845884
Pair: MCD-CRM, Correlation: 0.9340219191583707
Pair: MCD-SRE, Correlation: 0.94802593234557
Pair: MCD-NOW, Correlation: 0.9319223667143631
Pair: MCD-SHW, Correlation: 0.9645517316800408
Pair: MCD-SNA, Correlation: 0.9317652530020069
Pair: MCD-SO, Correlation: 0.9651701496178451
Pair: MCD-SBUX, Correlation: 0.9376818601995454
Pair: MCD-STE, Correlation: 0.9741254393059497
Pair: MCD-SYK, Correlation: 0.9769759683802416
Pair: MCD-SNPS, Correlation: 0.931058933108137
Pair: MCD-SYY, Correlation: 0.95070812459673
Pair: MCD-TMUS, Correlation: 0.9659156153967976
Pair: MCD-TTWO, Correlation: 0.9042236507978175
Pair: MCD-TEL, Correlation: 0.9595852442690892
Pair: MCD-TDY, Correlation: 0.968190661095671
Pair: MCD-TER, Correlation: 0.9212881389098098
Pair: MCD-TXN, Correlation: 0.9758313999660005
Pair: MCD-TPL, Correlation: 0.9002785676445078
Pair: MCD-TMO, Correlation: 0.9693036188335427
Pair: MCD-TJX, Correlation: 0.9538437242365433
Pair: MCD-TSCO, Correlation: 0.9397634434436669
Pair: MCD-TT, Correlation: 0.9017490690768791
Pair: MCD-TDG, Correlation: 0.9257767895341621
Pair: MCD-TRV, Correlation: 0.949503928269241
Pair: MCD-TYL, Correlation: 0.9399456103973144
Pair: MCD-ULTA, Correlation: 0.9364462280271331
Pair: MCD-UNP, Correlation: 0.9697952692563238
Pair: MCD-UPS, Correlation: 0.9118008539154409
Pair: MCD-UNH, Correlation: 0.9822373735712981
Pair: MCD-VLO, Correlation: 0.9012158701949768
Pair: MCD-VRSN, Correlation: 0.927501867191124
Pair: MCD-VRSK, Correlation: 0.9724320194075008
Pair: MCD-VRTX, Correlation: 0.9339174303847586
Pair: MCD-VICI, Correlation: 0.9514910840759472
Pair: MCD-V, Correlation: 0.9797092088181222
Pair: MCD-VMC, Correlation: 0.948877761398781
Pair: MCD-WRB, Correlation: 0.965442692477767
Pair: MCD-WMT, Correlation: 0.9445088647401969
Pair: MCD-WM, Correlation: 0.9808387394352495
Pair: MCD-WAT, Correlation: 0.9521031395827199
Pair: MCD-WEC, Correlation: 0.9521828062913844
Pair: MCD-WST, Correlation: 0.9335673460199174
Pair: MCD-WTW, Correlation: 0.9746212482775484
Pair: MCD-XEL, Correlation: 0.9490302350357739
Pair: MCD-XYL, Correlation: 0.9537514613203832
Pair: MCD-YUM, Correlation: 0.9873208234588553
Pair: MCD-ZTS, Correlation: 0.9519333751543139
Pair: MCK-NUE, Correlation: 0.9198262866349548
Pair: MCK-ORLY, Correlation: 0.9267923614435051
Pair: MCK-ORCL, Correlation: 0.9127355214983032
Pair: MCK-PCAR, Correlation: 0.9327701004711628
Pair: MCK-PANW, Correlation: 0.931666744492068
Pair: MCK-PH, Correlation: 0.916038517158569
Pair: MCK-PGR, Correlation: 0.9076018499731604
Pair: MCK-PHM, Correlation: 0.9072721071680291
Pair: MCK-PWR, Correlation: 0.9480329817035157
Pair: MCK-REGN, Correlation: 0.9038835828302852
Pair: MCK-STLD, Correlation: 0.9348604923566304
Pair: MCK-SNPS, Correlation: 0.9141871663528262
Pair: MCK-TSCO, Correlation: 0.911994441705958
Pair: MCK-TT, Correlation: 0.9004082018198395
Pair: MCK-TDG, Correlation: 0.9017608390394865
Pair: MCK-URI, Correlation: 0.9287838627088516
Pair: MCK-GWW, Correlation: 0.9474237267172205
Pair: MDT-NKE, Correlation: 0.9251512602846427
Pair: MDT-NTRS, Correlation: 0.9284474531520797
Pair: MDT-PPG, Correlation: 0.9254134746341205
Pair: MDT-O, Correlation: 0.9246716876483791
Pair: MDT-RVTY, Correlation: 0.9006325899259133
Pair: MDT-SBAC, Correlation: 0.9156289530149743
Pair: MDT-SWKS, Correlation: 0.9342652124183484
Pair: MDT-SBUX, Correlation: 0.921425305915348
Pair: MDT-SYY, Correlation: 0.9028195816469701
Pair: MDT-TROW, Correlation: 0.903419032678791
Pair: MDT-TTWO, Correlation: 0.9089943773968638
Pair: MDT-TFX, Correlation: 0.9514283286171269
Pair: MDT-TFC, Correlation: 0.9077753433824791
Pair: MDT-TSN, Correlation: 0.9234134709122306
Pair: MDT-USB, Correlation: 0.902498161672543
Pair: MDT-UDR, Correlation: 0.9281597905452335
Pair: MDT-VRSN, Correlation: 0.9162849470515857
Pair: MDT-VZ, Correlation: 0.9335274047981633
Pair: MDT-DIS, Correlation: 0.9445089221421236
Pair: MDT-WEC, Correlation: 0.9125789788207641
Pair: MDT-XEL, Correlation: 0.9126603127423305
Pair: MDT-ZBH, Correlation: 0.9539763292828257
Pair: MRK-MET, Correlation: 0.9103069996409221
Pair: MRK-MTD, Correlation: 0.9010495062993192
Pair: MRK-MCHP, Correlation: 0.9351982730676206
Pair: MRK-MSFT, Correlation: 0.9404224953647891
Pair: MRK-MOH, Correlation: 0.9339065141196773
Pair: MRK-MDLZ, Correlation: 0.9611581179334261
Pair: MRK-MPWR, Correlation: 0.9183335208059372
Pair: MRK-MNST, Correlation: 0.9365236461159709
Pair: MRK-MCO, Correlation: 0.92978088399151
Pair: MRK-MSI, Correlation: 0.9498408163894764
Pair: MRK-NDAQ, Correlation: 0.9186131024994332
Pair: MRK-NDSN, Correlation: 0.9355048231992229
Pair: MRK-NOC, Correlation: 0.9405026444173799
Pair: MRK-NUE, Correlation: 0.9087171665050792
Pair: MRK-NVR, Correlation: 0.9414361676540846
Pair: MRK-NXPI, Correlation: 0.9177732956023791
Pair: MRK-ORLY, Correlation: 0.97162408963322
Pair: MRK-ODFL, Correlation: 0.9354602168049293
Pair: MRK-ON, Correlation: 0.9044827151020364
Pair: MRK-OKE, Correlation: 0.9045077705737473
Pair: MRK-ORCL, Correlation: 0.9137200680501673
Pair: MRK-PCAR, Correlation: 0.9462185075316042
Pair: MRK-PKG, Correlation: 0.930348099517775
Pair: MRK-PANW, Correlation: 0.9207180087009805
Pair: MRK-PH, Correlation: 0.9219802669360255
Pair: MRK-PAYX, Correlation: 0.9440630148363303
Pair: MRK-PEP, Correlation: 0.9620620525126584
Pair: MRK-PFG, Correlation: 0.9224285750583199
Pair: MRK-PG, Correlation: 0.9550219908948439
Pair: MRK-PGR, Correlation: 0.9447069755972619
Pair: MRK-PLD, Correlation: 0.9009843872985925
Pair: MRK-PEG, Correlation: 0.9331384983907696
Pair: MRK-PTC, Correlation: 0.9386429931587469
Pair: MRK-PHM, Correlation: 0.9030902960404618
Pair: MRK-DGX, Correlation: 0.9112770653399742
Pair: MRK-RJF, Correlation: 0.9329020107301609
Pair: MRK-RTX, Correlation: 0.9125259577751217
Pair: MRK-REGN, Correlation: 0.9167686963736732
Pair: MRK-RSG, Correlation: 0.9634699496392746
Pair: MRK-ROK, Correlation: 0.9047429949064811
Pair: MRK-ROL, Correlation: 0.9474656805388043
Pair: MRK-ROP, Correlation: 0.945472071545742
Pair: MRK-ROST, Correlation: 0.921336042004003
Pair: MRK-SPGI, Correlation: 0.9215663711842044
Pair: MRK-SRE, Correlation: 0.9392062345881892
Pair: MRK-SHW, Correlation: 0.9222052129927649
Pair: MRK-SNA, Correlation: 0.9377822903416191
Pair: MRK-SO, Correlation: 0.951883033164771
Pair: MRK-STLD, Correlation: 0.9259734356429943
Pair: MRK-STE, Correlation: 0.9242361684431979
Pair: MRK-SYK, Correlation: 0.9557904648378798
Pair: MRK-SNPS, Correlation: 0.9417144809502479
Pair: MRK-TMUS, Correlation: 0.9405248466224014
Pair: MRK-TEL, Correlation: 0.9135763492679556
Pair: MRK-TDY, Correlation: 0.9061406543510881
Pair: MRK-TXN, Correlation: 0.9220166843284059
Pair: MRK-TMO, Correlation: 0.920836368887052
Pair: MRK-TJX, Correlation: 0.9668940298131243
Pair: MRK-TSCO, Correlation: 0.9438542099773704
Pair: MRK-TT, Correlation: 0.9150623708392723
Pair: MRK-TDG, Correlation: 0.9499471328993057
Pair: MRK-TRV, Correlation: 0.9516496755511418
Pair: MRK-ULTA, Correlation: 0.9165706116784288
Pair: MRK-UNP, Correlation: 0.9311375235909419
Pair: MRK-URI, Correlation: 0.9071518289442924
Pair: MRK-UNH, Correlation: 0.9454404101916709
Pair: MRK-VLO, Correlation: 0.9406545488303834
Pair: MRK-VRSK, Correlation: 0.948809587707403
Pair: MRK-VRTX, Correlation: 0.9642499011406095
Pair: MRK-V, Correlation: 0.9475547125375019
Pair: MRK-VMC, Correlation: 0.9430227640807759
Pair: MRK-WRB, Correlation: 0.9669530618690728
Pair: MRK-GWW, Correlation: 0.9264542629060732
Pair: MRK-WMT, Correlation: 0.936291587954945
Pair: MRK-WM, Correlation: 0.9657479918431568
Pair: MRK-WTW, Correlation: 0.9409763956191447
Pair: MRK-XYL, Correlation: 0.9067472894943751
Pair: MRK-YUM, Correlation: 0.9516691468505754
Pair: META-MU, Correlation: 0.9075074792188677
Pair: META-MSFT, Correlation: 0.9031778024774563
Pair: META-MCO, Correlation: 0.9192150081063896
Pair: META-NFLX, Correlation: 0.9313052214161419
Pair: META-NVR, Correlation: 0.9421595800311815
Pair: META-NXPI, Correlation: 0.9086530313952901
Pair: META-ORCL, Correlation: 0.9013651011829327
Pair: META-PKG, Correlation: 0.9192003785639409
Pair: META-PH, Correlation: 0.9192935851719228
Pair: META-PNR, Correlation: 0.9121609473616479
Pair: META-PTC, Correlation: 0.906012456581711
Pair: META-PHM, Correlation: 0.9179266531745863
Pair: META-ROST, Correlation: 0.9024289595037286
Pair: META-CRM, Correlation: 0.9225598983667672
Pair: META-NOW, Correlation: 0.9242858190859388
Pair: META-SHW, Correlation: 0.9162598840914215
Pair: META-SYK, Correlation: 0.9225530323479177
Pair: META-TJX, Correlation: 0.9088475681864073
Pair: META-TT, Correlation: 0.9279788763145953
Pair: META-TDG, Correlation: 0.924803395414044
Pair: META-TYL, Correlation: 0.9087568743491218
Pair: META-UBER, Correlation: 0.9011545340819797
Pair: META-VMC, Correlation: 0.9173523887807646
Pair: META-WMT, Correlation: 0.9066758245663411
Pair: META-XYL, Correlation: 0.9036458301918294
Pair: MET-MTD, Correlation: 0.9090597104711612
Pair: MET-MGM, Correlation: 0.9041012188958762
Pair: MET-MCHP, Correlation: 0.9227927533896593
Pair: MET-MU, Correlation: 0.9047353998803336
Pair: MET-MSFT, Correlation: 0.918604107464597
Pair: MET-MOH, Correlation: 0.9256619697433784
Pair: MET-MDLZ, Correlation: 0.9114331810491542
Pair: MET-MPWR, Correlation: 0.9201201487968587
Pair: MET-MCO, Correlation: 0.9185706541675817
Pair: MET-MS, Correlation: 0.9675443065361368
Pair: MET-MSI, Correlation: 0.9353610593525902
Pair: MET-NDAQ, Correlation: 0.9369511481713632
Pair: MET-NDSN, Correlation: 0.9218602312431053
Pair: MET-NOC, Correlation: 0.9136951836010743
Pair: MET-NUE, Correlation: 0.9244894755172305
Pair: MET-NVR, Correlation: 0.9260261141962508
Pair: MET-NXPI, Correlation: 0.9400323715093125
Pair: MET-ORLY, Correlation: 0.9368654713454209
Pair: MET-ODFL, Correlation: 0.9299563589901066
Pair: MET-ON, Correlation: 0.9031674601769986
Pair: MET-OKE, Correlation: 0.9212231991242691
Pair: MET-ORCL, Correlation: 0.9205351774110087
Pair: MET-PCAR, Correlation: 0.9142181894966284
Pair: MET-PKG, Correlation: 0.9481194678185608
Pair: MET-PANW, Correlation: 0.9127488667063368
Pair: MET-PH, Correlation: 0.9323248152137863
Pair: MET-PAYX, Correlation: 0.9519726472244227
Pair: MET-PNR, Correlation: 0.9024993558886957
Pair: MET-PEP, Correlation: 0.9233657002944113
Pair: MET-PNC, Correlation: 0.9149007084681519
Pair: MET-PFG, Correlation: 0.9708576342098558
Pair: MET-PG, Correlation: 0.9219212760095816
Pair: MET-PGR, Correlation: 0.9214202713534334
Pair: MET-PLD, Correlation: 0.9008633145417972
Pair: MET-PRU, Correlation: 0.9481994335549814
Pair: MET-PEG, Correlation: 0.9233326692873475
Pair: MET-PTC, Correlation: 0.928502997399668
Pair: MET-PSA, Correlation: 0.9247866543541655
Pair: MET-DGX, Correlation: 0.9119283487171553
Pair: MET-RJF, Correlation: 0.9784897074227359
Pair: MET-RTX, Correlation: 0.9371366415602514
Pair: MET-RF, Correlation: 0.9494226006788566
Pair: MET-RSG, Correlation: 0.9442145173472496
Pair: MET-ROK, Correlation: 0.902634276454252
Pair: MET-ROL, Correlation: 0.9036863962453816
Pair: MET-ROP, Correlation: 0.9038042512644613
Pair: MET-SPGI, Correlation: 0.9063546665071687
Pair: MET-STX, Correlation: 0.9239850470421972
Pair: MET-SRE, Correlation: 0.9106921996743907
Pair: MET-SHW, Correlation: 0.9227699398981425
Pair: MET-SNA, Correlation: 0.944403480509093
Pair: MET-SO, Correlation: 0.929545804392563
Pair: MET-STLD, Correlation: 0.9303229936835192
Pair: MET-STE, Correlation: 0.9045617165710713
Pair: MET-SYK, Correlation: 0.9239939173570322
Pair: MET-SNPS, Correlation: 0.9143417905517727
Pair: MET-TMUS, Correlation: 0.9351920537258481
Pair: MET-TEL, Correlation: 0.9404610060987771
Pair: MET-TXN, Correlation: 0.9223460315201282
Pair: MET-TPL, Correlation: 0.9350596141729275
Pair: MET-TXT, Correlation: 0.9311133995698135
Pair: MET-TMO, Correlation: 0.9137790374878885
Pair: MET-TJX, Correlation: 0.9286833424316804
Pair: MET-TSCO, Correlation: 0.9432518403776584
Pair: MET-TT, Correlation: 0.9251332629680729
Pair: MET-TDG, Correlation: 0.914753482021427
Pair: MET-TRV, Correlation: 0.9549229482355078
Pair: MET-UNP, Correlation: 0.9202928251990529
Pair: MET-URI, Correlation: 0.9320264390130447
Pair: MET-UNH, Correlation: 0.9410841088300942
Pair: MET-VLO, Correlation: 0.9164429322180824
Pair: MET-VRSK, Correlation: 0.9001743908805327
Pair: MET-VICI, Correlation: 0.9170563073618512
Pair: MET-VMC, Correlation: 0.934861945185731
Pair: MET-WRB, Correlation: 0.9551311828857074
Pair: MET-GWW, Correlation: 0.90538686960699
Pair: MET-WMT, Correlation: 0.9122627828809596
Pair: MET-WM, Correlation: 0.9439811709105459
Pair: MET-WAT, Correlation: 0.918486923592057
Pair: MET-WELL, Correlation: 0.9047117245009081
Pair: MET-WTW, Correlation: 0.925544565439095
Pair: MET-YUM, Correlation: 0.9161441475831352
Pair: MTD-MCHP, Correlation: 0.9715028087393343
Pair: MTD-MU, Correlation: 0.9022142111199029
Pair: MTD-MSFT, Correlation: 0.9353262260356674
Pair: MTD-MAA, Correlation: 0.9681310267106068
Pair: MTD-MOH, Correlation: 0.9498022327166545
Pair: MTD-MDLZ, Correlation: 0.9449498753934655
Pair: MTD-MPWR, Correlation: 0.9049880311689145
Pair: MTD-MNST, Correlation: 0.9464774683464988
Pair: MTD-MCO, Correlation: 0.9595243549499322
Pair: MTD-MS, Correlation: 0.9552620207248801
Pair: MTD-MSI, Correlation: 0.9056118034992066
Pair: MTD-MSCI, Correlation: 0.9740958678164194
Pair: MTD-NDAQ, Correlation: 0.9791114119490837
Pair: MTD-NEE, Correlation: 0.9776652867842653
Pair: MTD-NKE, Correlation: 0.9303120357122762
Pair: MTD-NDSN, Correlation: 0.9752208582884819
Pair: MTD-NSC, Correlation: 0.9715890479286885
Pair: MTD-NOC, Correlation: 0.9302398479402011
Pair: MTD-NVR, Correlation: 0.9188854209790348
Pair: MTD-NXPI, Correlation: 0.9360064234052257
Pair: MTD-ORLY, Correlation: 0.9063002521119764
Pair: MTD-ODFL, Correlation: 0.9355658105450739
Pair: MTD-PKG, Correlation: 0.917360196659557
Pair: MTD-PAYX, Correlation: 0.9667691141397209
Pair: MTD-PEP, Correlation: 0.964654888294974
Pair: MTD-PNC, Correlation: 0.9345707435136834
Pair: MTD-POOL, Correlation: 0.9757890751299693
Pair: MTD-PG, Correlation: 0.9613466864099655
Pair: MTD-PLD, Correlation: 0.9794120231717769
Pair: MTD-PEG, Correlation: 0.93454523528076
Pair: MTD-PTC, Correlation: 0.9301401380297782
Pair: MTD-PSA, Correlation: 0.9370577036036422
Pair: MTD-QCOM, Correlation: 0.9185234439048083
Pair: MTD-DGX, Correlation: 0.9743422282145707
Pair: MTD-RJF, Correlation: 0.934754808740733
Pair: MTD-O, Correlation: 0.9002582199874865
Pair: MTD-RF, Correlation: 0.9368945309683152
Pair: MTD-RSG, Correlation: 0.9254004924075228
Pair: MTD-RMD, Correlation: 0.9775914513734343
Pair: MTD-RVTY, Correlation: 0.9601330179517321
Pair: MTD-ROK, Correlation: 0.9734989218646511
Pair: MTD-ROL, Correlation: 0.9544805174196181
Pair: MTD-ROP, Correlation: 0.9590738018511478
Pair: MTD-ROST, Correlation: 0.9060330911750755
Pair: MTD-SPGI, Correlation: 0.9697192234453155
Pair: MTD-CRM, Correlation: 0.9261397300209869
Pair: MTD-SBAC, Correlation: 0.9190836962715097
Pair: MTD-STX, Correlation: 0.9037895528423345
Pair: MTD-SRE, Correlation: 0.914268140008697
Pair: MTD-NOW, Correlation: 0.9170505805699769
Pair: MTD-SHW, Correlation: 0.9619773503413359
Pair: MTD-SO, Correlation: 0.9332067170638128
Pair: MTD-SBUX, Correlation: 0.9440292481541915
Pair: MTD-STE, Correlation: 0.9730194722496381
Pair: MTD-SYK, Correlation: 0.9479754497944871
Pair: MTD-SYY, Correlation: 0.9356881880612485
Pair: MTD-TMUS, Correlation: 0.9493885240804648
Pair: MTD-TROW, Correlation: 0.9108378918615316
Pair: MTD-TTWO, Correlation: 0.905128684755528
Pair: MTD-TGT, Correlation: 0.9340394749855175
Pair: MTD-TEL, Correlation: 0.9704786086121344
Pair: MTD-TDY, Correlation: 0.9696555469590631
Pair: MTD-TER, Correlation: 0.9650441610875937
Pair: MTD-TSLA, Correlation: 0.9008551219672168
Pair: MTD-TXN, Correlation: 0.9842318597425738
Pair: MTD-TMO, Correlation: 0.9878261608456745
Pair: MTD-TJX, Correlation: 0.9077187149928211
Pair: MTD-TSCO, Correlation: 0.9300812147758561
Pair: MTD-TRV, Correlation: 0.9107019488961898
Pair: MTD-TRMB, Correlation: 0.9132051838696978
Pair: MTD-TYL, Correlation: 0.9517215085819097
Pair: MTD-UDR, Correlation: 0.9098273313041354
Pair: MTD-ULTA, Correlation: 0.911353350169055
Pair: MTD-UNP, Correlation: 0.9631274465277628
Pair: MTD-UPS, Correlation: 0.9609723172668111
Pair: MTD-UNH, Correlation: 0.9632562331147042
Pair: MTD-VRSN, Correlation: 0.9186638947202298
Pair: MTD-VRSK, Correlation: 0.942969874424021
Pair: MTD-V, Correlation: 0.9533766202400759
Pair: MTD-VMC, Correlation: 0.9184150068797499
Pair: MTD-WRB, Correlation: 0.9219117543236661
Pair: MTD-WMT, Correlation: 0.912652706035541
Pair: MTD-WM, Correlation: 0.951031271765397
Pair: MTD-WAT, Correlation: 0.9760469084373455
Pair: MTD-WEC, Correlation: 0.9400748255522707
Pair: MTD-WST, Correlation: 0.961466664122095
Pair: MTD-WTW, Correlation: 0.9581810257337476
Pair: MTD-XEL, Correlation: 0.9437763872298501
Pair: MTD-XYL, Correlation: 0.9569886299785519
Pair: MTD-YUM, Correlation: 0.964744294107821
Pair: MTD-ZBRA, Correlation: 0.9253578066354298
Pair: MTD-ZTS, Correlation: 0.9655272483630744
Pair: MGM-MCHP, Correlation: 0.9177401130661819
Pair: MGM-MS, Correlation: 0.900590766987897
Pair: MGM-NXPI, Correlation: 0.9147217522592599
Pair: MGM-PKG, Correlation: 0.9006996695174071
Pair: MGM-PNC, Correlation: 0.9159772030273478
Pair: MGM-PPG, Correlation: 0.9090763667452942
Pair: MGM-PFG, Correlation: 0.9331091437671503
Pair: MGM-PRU, Correlation: 0.9338995895608305
Pair: MGM-RJF, Correlation: 0.9018287795840686
Pair: MGM-RF, Correlation: 0.929432188644008
Pair: MGM-ROK, Correlation: 0.9212536839690872
Pair: MGM-SNA, Correlation: 0.9109887863415407
Pair: MGM-TEL, Correlation: 0.9405863876025918
Pair: MGM-TXT, Correlation: 0.9316654232031298
Pair: MGM-TRV, Correlation: 0.9006926560865296
Pair: MGM-ULTA, Correlation: 0.9003539836298368
Pair: MGM-VMC, Correlation: 0.9071741067832952
Pair: MGM-WAT, Correlation: 0.9055582219238505
Pair: MGM-WY, Correlation: 0.9150307064777902
Pair: MGM-YUM, Correlation: 0.9036482986066419
Pair: MCHP-MU, Correlation: 0.9410443034463617
Pair: MCHP-MSFT, Correlation: 0.9614221201385215
Pair: MCHP-MAA, Correlation: 0.924309263020528
Pair: MCHP-MOH, Correlation: 0.9536932287136863
Pair: MCHP-MDLZ, Correlation: 0.9538586443826763
Pair: MCHP-MPWR, Correlation: 0.9328792351204394
Pair: MCHP-MNST, Correlation: 0.9590006649647218
Pair: MCHP-MCO, Correlation: 0.9657973289204943
Pair: MCHP-MS, Correlation: 0.9568954838906624
Pair: MCHP-MSI, Correlation: 0.9308666214440436
Pair: MCHP-MSCI, Correlation: 0.9630194452755002
Pair: MCHP-NDAQ, Correlation: 0.963023744646145
Pair: MCHP-NEE, Correlation: 0.9430522485203064
Pair: MCHP-NDSN, Correlation: 0.980818872501838
Pair: MCHP-NSC, Correlation: 0.9551505710001048
Pair: MCHP-NOC, Correlation: 0.9364733989173916
Pair: MCHP-NVR, Correlation: 0.9536885873951285
Pair: MCHP-NXPI, Correlation: 0.9665100709869148
Pair: MCHP-ORLY, Correlation: 0.935967251377382
Pair: MCHP-ODFL, Correlation: 0.9609262593997167
Pair: MCHP-ON, Correlation: 0.9223996947079381
Pair: MCHP-PCAR, Correlation: 0.9096499582570001
Pair: MCHP-PKG, Correlation: 0.9460156667837194
Pair: MCHP-PH, Correlation: 0.9153827913824861
Pair: MCHP-PAYX, Correlation: 0.9670087889756799
Pair: MCHP-PEP, Correlation: 0.9642668168225081
Pair: MCHP-PNC, Correlation: 0.9197191682888362
Pair: MCHP-POOL, Correlation: 0.9513015612277345
Pair: MCHP-PFG, Correlation: 0.9226493331052377
Pair: MCHP-PG, Correlation: 0.9611507893128433
Pair: MCHP-PGR, Correlation: 0.9090332387874834
Pair: MCHP-PLD, Correlation: 0.961344655560564
Pair: MCHP-PEG, Correlation: 0.9374707438154493
Pair: MCHP-PTC, Correlation: 0.9677468905826881
Pair: MCHP-PSA, Correlation: 0.9164078296093031
Pair: MCHP-QCOM, Correlation: 0.9212506295113275
Pair: MCHP-DGX, Correlation: 0.9658101610595683
Pair: MCHP-RJF, Correlation: 0.952881827506228
Pair: MCHP-RF, Correlation: 0.9357377725388717
Pair: MCHP-RSG, Correlation: 0.9524887843708183
Pair: MCHP-RMD, Correlation: 0.934797190490547
Pair: MCHP-RVTY, Correlation: 0.9014523545530706
Pair: MCHP-ROK, Correlation: 0.9794036489587864
Pair: MCHP-ROL, Correlation: 0.9664949546030488
Pair: MCHP-ROP, Correlation: 0.9710982200006739
Pair: MCHP-ROST, Correlation: 0.9326213082799967
Pair: MCHP-SPGI, Correlation: 0.9693582785582276
Pair: MCHP-CRM, Correlation: 0.937391210644196
Pair: MCHP-STX, Correlation: 0.9141334298909437
Pair: MCHP-SRE, Correlation: 0.9130174594615582
Pair: MCHP-NOW, Correlation: 0.935115926021164
Pair: MCHP-SHW, Correlation: 0.964482867407289
Pair: MCHP-SNA, Correlation: 0.9288496767136891
Pair: MCHP-SO, Correlation: 0.9393850656060401
Pair: MCHP-SBUX, Correlation: 0.9258815192496005
Pair: MCHP-STE, Correlation: 0.9676908638170418
Pair: MCHP-SYK, Correlation: 0.971714987198927
Pair: MCHP-SNPS, Correlation: 0.9412781747357979
Pair: MCHP-SYY, Correlation: 0.9310129354087707
Pair: MCHP-TMUS, Correlation: 0.956187195084893
Pair: MCHP-TTWO, Correlation: 0.9088592155725932
Pair: MCHP-TEL, Correlation: 0.9787199431043192
Pair: MCHP-TDY, Correlation: 0.9577253775560721
Pair: MCHP-TER, Correlation: 0.9588088851158232
Pair: MCHP-TXN, Correlation: 0.9808722127389081
Pair: MCHP-TXT, Correlation: 0.9011807266419222
Pair: MCHP-TMO, Correlation: 0.9697835218292373
Pair: MCHP-TJX, Correlation: 0.9422134044713487
Pair: MCHP-TSCO, Correlation: 0.9384805104869732
Pair: MCHP-TT, Correlation: 0.9076803242740515
Pair: MCHP-TDG, Correlation: 0.9211796577710164
Pair: MCHP-TRV, Correlation: 0.9323184792047886
Pair: MCHP-TYL, Correlation: 0.9464170848010999
Pair: MCHP-ULTA, Correlation: 0.9174195951912879
Pair: MCHP-UNP, Correlation: 0.9649323006592411
Pair: MCHP-UPS, Correlation: 0.9278381302368481
Pair: MCHP-UNH, Correlation: 0.9649611618317798
Pair: MCHP-VRSK, Correlation: 0.9605505476352464
Pair: MCHP-VRTX, Correlation: 0.9101523390674338
Pair: MCHP-V, Correlation: 0.9658550746424618
Pair: MCHP-VMC, Correlation: 0.9553571446060937
Pair: MCHP-WRB, Correlation: 0.9411937717608434
Pair: MCHP-WMT, Correlation: 0.9281036250731195
Pair: MCHP-WM, Correlation: 0.9667547420220104
Pair: MCHP-WAT, Correlation: 0.9527141038426437
Pair: MCHP-WEC, Correlation: 0.9134317797926668
Pair: MCHP-WST, Correlation: 0.9531967089122144
Pair: MCHP-WTW, Correlation: 0.9633902030477504
Pair: MCHP-WDAY, Correlation: 0.9072592543195768
Pair: MCHP-XEL, Correlation: 0.9127740131212788
Pair: MCHP-XYL, Correlation: 0.9679356821681293
Pair: MCHP-YUM, Correlation: 0.970472801836645
Pair: MCHP-ZTS, Correlation: 0.9455037739449889
Pair: MU-MSFT, Correlation: 0.9344455430227399
Pair: MU-MPWR, Correlation: 0.9147139087452115
Pair: MU-MCO, Correlation: 0.9462275729317329
Pair: MU-MS, Correlation: 0.9261589774894852
Pair: MU-MSI, Correlation: 0.910162874942428
Pair: MU-NDAQ, Correlation: 0.9151279379217617
Pair: MU-NTAP, Correlation: 0.9156090366165602
Pair: MU-NFLX, Correlation: 0.9142507643126903
Pair: MU-NDSN, Correlation: 0.9223138048269602
Pair: MU-NSC, Correlation: 0.9196943240219403
Pair: MU-NVR, Correlation: 0.9383988636063236
Pair: MU-NXPI, Correlation: 0.9460341989810906
Pair: MU-ODFL, Correlation: 0.9032686600315961
Pair: MU-PCAR, Correlation: 0.9049285246270413
Pair: MU-PKG, Correlation: 0.9454593533379047
Pair: MU-PH, Correlation: 0.9183492096636006
Pair: MU-PAYX, Correlation: 0.9127858770416011
Pair: MU-PNR, Correlation: 0.909745572467281
Pair: MU-PNC, Correlation: 0.9126497122771785
Pair: MU-PG, Correlation: 0.9165105935677114
Pair: MU-PGR, Correlation: 0.9034013589812848
Pair: MU-PEG, Correlation: 0.9221484044697841
Pair: MU-PTC, Correlation: 0.9513259536307286
Pair: MU-QCOM, Correlation: 0.9281033679655132
Pair: MU-DGX, Correlation: 0.9020509593345859
Pair: MU-RJF, Correlation: 0.9182736296510906
Pair: MU-RF, Correlation: 0.9092642983380628
Pair: MU-RSG, Correlation: 0.921885648392567
Pair: MU-ROK, Correlation: 0.9121662255022261
Pair: MU-ROL, Correlation: 0.9261184507039467
Pair: MU-ROP, Correlation: 0.9334409631531737
Pair: MU-ROST, Correlation: 0.9116536368941639
Pair: MU-SPGI, Correlation: 0.9348247983045398
Pair: MU-CRM, Correlation: 0.9244022014662756
Pair: MU-STX, Correlation: 0.9520879579169914
Pair: MU-NOW, Correlation: 0.9225650762004268
Pair: MU-SHW, Correlation: 0.9419560206560568
Pair: MU-STE, Correlation: 0.9203679085646834
Pair: MU-SYK, Correlation: 0.9439148400386701
Pair: MU-SNPS, Correlation: 0.9013524944119087
Pair: MU-TMUS, Correlation: 0.9205902482461711
Pair: MU-TEL, Correlation: 0.9477946880154074
Pair: MU-TDY, Correlation: 0.9079863727436139
Pair: MU-TER, Correlation: 0.928470370312201
Pair: MU-TXN, Correlation: 0.9379578154058282
Pair: MU-TMO, Correlation: 0.9092514352994355
Pair: MU-TJX, Correlation: 0.921880398283902
Pair: MU-TSCO, Correlation: 0.9009810256496966
Pair: MU-TT, Correlation: 0.9196329362209149
Pair: MU-TDG, Correlation: 0.922866064000111
Pair: MU-TRV, Correlation: 0.9099957723708495
Pair: MU-TYL, Correlation: 0.9312904063193886
Pair: MU-UNP, Correlation: 0.9372746186289043
Pair: MU-URI, Correlation: 0.9050229253322962
Pair: MU-UNH, Correlation: 0.902218088551701
Pair: MU-VRSK, Correlation: 0.9270470617648348
Pair: MU-V, Correlation: 0.9322437689562334
Pair: MU-VMC, Correlation: 0.9207405673405074
Pair: MU-WRB, Correlation: 0.9057623933764316
Pair: MU-WMT, Correlation: 0.9280285124599819
Pair: MU-WM, Correlation: 0.9296280265617364
Pair: MU-WAT, Correlation: 0.9005262712145446
Pair: MU-WTW, Correlation: 0.932253881364918
Pair: MU-XYL, Correlation: 0.9342171403945335
Pair: MU-YUM, Correlation: 0.9128368578726571
Pair: MSFT-MOH, Correlation: 0.9672744026561875
Pair: MSFT-MDLZ, Correlation: 0.9336687086545801
Pair: MSFT-MPWR, Correlation: 0.9805889074692438
Pair: MSFT-MNST, Correlation: 0.9190922719090243
Pair: MSFT-MCO, Correlation: 0.9763716732370643
Pair: MSFT-MS, Correlation: 0.9552997357201438
Pair: MSFT-MSI, Correlation: 0.9757286066734577
Pair: MSFT-MSCI, Correlation: 0.9682821698022163
Pair: MSFT-NDAQ, Correlation: 0.959649584419024
Pair: MSFT-NTAP, Correlation: 0.9107868975010174
Pair: MSFT-NEE, Correlation: 0.914292548365292
Pair: MSFT-NDSN, Correlation: 0.9576801901726816
Pair: MSFT-NSC, Correlation: 0.92213035505397
Pair: MSFT-NOC, Correlation: 0.9020502793648513
Pair: MSFT-NUE, Correlation: 0.9154706208242045
Pair: MSFT-NVR, Correlation: 0.9717851026349543
Pair: MSFT-NXPI, Correlation: 0.949654115085092
Pair: MSFT-ORLY, Correlation: 0.9682803697265134
Pair: MSFT-ODFL, Correlation: 0.983577390931115
Pair: MSFT-ON, Correlation: 0.9251906635943622
Pair: MSFT-ORCL, Correlation: 0.953662429704497
Pair: MSFT-OTIS, Correlation: 0.9179577271963075
Pair: MSFT-PCAR, Correlation: 0.9483161197745242
Pair: MSFT-PKG, Correlation: 0.9372803260531061
Pair: MSFT-PANW, Correlation: 0.952160978742899
Pair: MSFT-PH, Correlation: 0.9584811714246853
Pair: MSFT-PAYX, Correlation: 0.9619545214355255
Pair: MSFT-PEP, Correlation: 0.9412921864434788
Pair: MSFT-POOL, Correlation: 0.9344321835144946
Pair: MSFT-PG, Correlation: 0.971090350554308
Pair: MSFT-PGR, Correlation: 0.9632944516411213
Pair: MSFT-PLD, Correlation: 0.947767817127795
Pair: MSFT-PEG, Correlation: 0.9356797015438973
Pair: MSFT-PTC, Correlation: 0.9608458522874295
Pair: MSFT-PSA, Correlation: 0.9049215354641051
Pair: MSFT-PHM, Correlation: 0.9332873830328794
Pair: MSFT-PWR, Correlation: 0.9235316411196909
Pair: MSFT-QCOM, Correlation: 0.9515770660085141
Pair: MSFT-DGX, Correlation: 0.9300102441401518
Pair: MSFT-RJF, Correlation: 0.9501206320448536
Pair: MSFT-RSG, Correlation: 0.9830499996418749
Pair: MSFT-RMD, Correlation: 0.9193346454898845
Pair: MSFT-ROK, Correlation: 0.935784204075737
Pair: MSFT-ROL, Correlation: 0.9577700019161834
Pair: MSFT-ROP, Correlation: 0.9576711500024253
Pair: MSFT-ROST, Correlation: 0.9022895927986311
Pair: MSFT-SPGI, Correlation: 0.9706667742178914
Pair: MSFT-CRM, Correlation: 0.9355196196474687
Pair: MSFT-STX, Correlation: 0.9292944744904892
Pair: MSFT-NOW, Correlation: 0.9818496432545986
Pair: MSFT-SHW, Correlation: 0.9682585012962277
Pair: MSFT-SNA, Correlation: 0.9139949252843307
Pair: MSFT-SO, Correlation: 0.9574698020940133
Pair: MSFT-STLD, Correlation: 0.9235847316323156
Pair: MSFT-STE, Correlation: 0.9602318795343759
Pair: MSFT-SYK, Correlation: 0.9656331915034261
Pair: MSFT-SNPS, Correlation: 0.9855169174720626
Pair: MSFT-TMUS, Correlation: 0.9650694628455683
Pair: MSFT-TEL, Correlation: 0.9421545140490327
Pair: MSFT-TDY, Correlation: 0.9342983503930042
Pair: MSFT-TER, Correlation: 0.9461006676869459
Pair: MSFT-TXN, Correlation: 0.9559807288746306
Pair: MSFT-TPL, Correlation: 0.9061126611520205
Pair: MSFT-TMO, Correlation: 0.9589638427020417
Pair: MSFT-TJX, Correlation: 0.9577066049863464
Pair: MSFT-TSCO, Correlation: 0.9737566056967403
Pair: MSFT-TT, Correlation: 0.96346372046536
Pair: MSFT-TDG, Correlation: 0.9666509024635228
Pair: MSFT-TRV, Correlation: 0.9224870576588675
Pair: MSFT-TYL, Correlation: 0.9435626499344768
Pair: MSFT-UNP, Correlation: 0.9465885746514144
Pair: MSFT-URI, Correlation: 0.9450176484706652
Pair: MSFT-UNH, Correlation: 0.9618247079553105
Pair: MSFT-VRSK, Correlation: 0.974428778348148
Pair: MSFT-VRTX, Correlation: 0.9425410580634772
Pair: MSFT-V, Correlation: 0.9545909892753631
Pair: MSFT-VMC, Correlation: 0.9465623868391464
Pair: MSFT-WRB, Correlation: 0.9612977129987145
Pair: MSFT-GWW, Correlation: 0.9412671775044273
Pair: MSFT-WMT, Correlation: 0.9662004355897353
Pair: MSFT-WM, Correlation: 0.9787025619237301
Pair: MSFT-WAT, Correlation: 0.9130125185106368
Pair: MSFT-WST, Correlation: 0.9500994227734312
Pair: MSFT-WTW, Correlation: 0.9540038059952952
Pair: MSFT-XYL, Correlation: 0.9437248587272536
Pair: MSFT-YUM, Correlation: 0.941634041237384
Pair: MSFT-ZTS, Correlation: 0.9384371151411298
Pair: MAA-MOH, Correlation: 0.919182476919691
Pair: MAA-MDLZ, Correlation: 0.9240827774160072
Pair: MAA-MNST, Correlation: 0.9096311299791685
Pair: MAA-MCO, Correlation: 0.9323201637985944
Pair: MAA-MS, Correlation: 0.9225502275991816
Pair: MAA-MSCI, Correlation: 0.9432058077095489
Pair: MAA-NDAQ, Correlation: 0.9620733187515582
Pair: MAA-NEE, Correlation: 0.9641239838474748
Pair: MAA-NKE, Correlation: 0.928061992590292
Pair: MAA-NDSN, Correlation: 0.9445690772880818
Pair: MAA-NSC, Correlation: 0.9543395777240657
Pair: MAA-NOC, Correlation: 0.9169613100078097
Pair: MAA-NXPI, Correlation: 0.9007542090730949
Pair: MAA-PAYX, Correlation: 0.9569268386965687
Pair: MAA-PEP, Correlation: 0.9445353901411436
Pair: MAA-PFE, Correlation: 0.9092262124497311
Pair: MAA-PNC, Correlation: 0.9416953612177916
Pair: MAA-POOL, Correlation: 0.9639212855215027
Pair: MAA-PG, Correlation: 0.9366261130754421
Pair: MAA-PLD, Correlation: 0.9756698674621281
Pair: MAA-PEG, Correlation: 0.9244887543445044
Pair: MAA-PSA, Correlation: 0.9583190718467035
Pair: MAA-DGX, Correlation: 0.9536209365566325
Pair: MAA-RJF, Correlation: 0.9086395109480124
Pair: MAA-O, Correlation: 0.9316501572948281
Pair: MAA-RF, Correlation: 0.9244884623280532
Pair: MAA-RMD, Correlation: 0.9641197407370754
Pair: MAA-RVTY, Correlation: 0.9634827674927168
Pair: MAA-ROK, Correlation: 0.9390738005270179
Pair: MAA-ROL, Correlation: 0.9038672649328722
Pair: MAA-ROP, Correlation: 0.9285667451554375
Pair: MAA-SPGI, Correlation: 0.9464507730888221
Pair: MAA-SBAC, Correlation: 0.9328384619195568
Pair: MAA-SRE, Correlation: 0.9121825658014204
Pair: MAA-SHW, Correlation: 0.9406879279003812
Pair: MAA-SO, Correlation: 0.9210126337494552
Pair: MAA-SBUX, Correlation: 0.9306129991809109
Pair: MAA-STE, Correlation: 0.9593072239633906
Pair: MAA-SYK, Correlation: 0.9107878774576348
Pair: MAA-SYY, Correlation: 0.9352183991690728
Pair: MAA-TMUS, Correlation: 0.9075903367331649
Pair: MAA-TROW, Correlation: 0.9050562433931185
Pair: MAA-TGT, Correlation: 0.9314313590923706
Pair: MAA-TEL, Correlation: 0.9444578363947399
Pair: MAA-TDY, Correlation: 0.9526520657839651
Pair: MAA-TER, Correlation: 0.9317983111837548
Pair: MAA-TXN, Correlation: 0.9544619860937146
Pair: MAA-TMO, Correlation: 0.9617714429935411
Pair: MAA-TRMB, Correlation: 0.9058786943901848
Pair: MAA-TYL, Correlation: 0.9373571525467712
Pair: MAA-UDR, Correlation: 0.9596469062193023
Pair: MAA-UNP, Correlation: 0.9440837277037788
Pair: MAA-UPS, Correlation: 0.9508245948262749
Pair: MAA-UNH, Correlation: 0.9401472375342215
Pair: MAA-VRSN, Correlation: 0.9102986733525726
Pair: MAA-VRSK, Correlation: 0.9127365858806766
Pair: MAA-V, Correlation: 0.921723746634995
Pair: MAA-WM, Correlation: 0.9224389360736435
Pair: MAA-WAT, Correlation: 0.9629193407013732
Pair: MAA-WEC, Correlation: 0.9427652106455519
Pair: MAA-WST, Correlation: 0.9399790011986965
Pair: MAA-WTW, Correlation: 0.9261216519560131
Pair: MAA-XEL, Correlation: 0.9444127854194387
Pair: MAA-XYL, Correlation: 0.9031789270691282
Pair: MAA-YUM, Correlation: 0.937853100960249
Pair: MAA-ZBRA, Correlation: 0.9248119553295449
Pair: MAA-ZTS, Correlation: 0.9452983121313566
Pair: MHK-VLTO, Correlation: 0.9264648296794227
Pair: MOH-MDLZ, Correlation: 0.9406876779611795
Pair: MOH-MPWR, Correlation: 0.9359874154930657
Pair: MOH-MNST, Correlation: 0.9336739128848982
Pair: MOH-MCO, Correlation: 0.9504579034641977
Pair: MOH-MS, Correlation: 0.9453080986628909
Pair: MOH-MSI, Correlation: 0.938959436168089
Pair: MOH-MSCI, Correlation: 0.9691370925918177
Pair: MOH-NDAQ, Correlation: 0.9647948647344017
Pair: MOH-NEE, Correlation: 0.9319627469256071
Pair: MOH-NDSN, Correlation: 0.9633281657421605
Pair: MOH-NSC, Correlation: 0.9404797459050911
Pair: MOH-NOC, Correlation: 0.9249386957029161
Pair: MOH-NUE, Correlation: 0.9220612706065552
Pair: MOH-NVR, Correlation: 0.9249299982054658
Pair: MOH-NXPI, Correlation: 0.92264629113457
Pair: MOH-ORLY, Correlation: 0.956122276657018
Pair: MOH-ODFL, Correlation: 0.975691338917494
Pair: MOH-ON, Correlation: 0.9357301528776715
Pair: MOH-PCAR, Correlation: 0.9017209492274795
Pair: MOH-PKG, Correlation: 0.9125523835611477
Pair: MOH-PANW, Correlation: 0.9050515549059646
Pair: MOH-PH, Correlation: 0.9040533706813579
Pair: MOH-PAYX, Correlation: 0.9721132093109043
Pair: MOH-PEP, Correlation: 0.9592290219305571
Pair: MOH-POOL, Correlation: 0.9468613631875151
Pair: MOH-PG, Correlation: 0.9624575793467925
Pair: MOH-PGR, Correlation: 0.9245429092739701
Pair: MOH-PLD, Correlation: 0.962248644152933
Pair: MOH-PEG, Correlation: 0.9202719114548734
Pair: MOH-PTC, Correlation: 0.943295247853867
Pair: MOH-PSA, Correlation: 0.9239740992158363
Pair: MOH-QCOM, Correlation: 0.9225052825163004
Pair: MOH-DGX, Correlation: 0.9354575999938459
Pair: MOH-RJF, Correlation: 0.9531753317932459
Pair: MOH-RF, Correlation: 0.9032287270202839
Pair: MOH-RSG, Correlation: 0.9589745115039344
Pair: MOH-RMD, Correlation: 0.9321683299764263
Pair: MOH-ROK, Correlation: 0.9400364328677987
Pair: MOH-ROL, Correlation: 0.9498702632024933
Pair: MOH-ROP, Correlation: 0.9496990200294987
Pair: MOH-SPGI, Correlation: 0.9552867313572307
Pair: MOH-CRM, Correlation: 0.9062992945933309
Pair: MOH-STX, Correlation: 0.9013337507169443
Pair: MOH-SRE, Correlation: 0.9019341288963512
Pair: MOH-NOW, Correlation: 0.9348085006772933
Pair: MOH-SHW, Correlation: 0.9512198295597736
Pair: MOH-SNA, Correlation: 0.9099469473849963
Pair: MOH-SO, Correlation: 0.9440273440188467
Pair: MOH-STLD, Correlation: 0.9090733630465482
Pair: MOH-STE, Correlation: 0.966143280688094
Pair: MOH-SYK, Correlation: 0.9412422312520671
Pair: MOH-SNPS, Correlation: 0.9539967014010325
Pair: MOH-TMUS, Correlation: 0.9516747413784711
Pair: MOH-TEL, Correlation: 0.9383007483340768
Pair: MOH-TDY, Correlation: 0.946464087174087
Pair: MOH-TER, Correlation: 0.9253607296617947
Pair: MOH-TSLA, Correlation: 0.9088377753317372
Pair: MOH-TXN, Correlation: 0.9526817259881459
Pair: MOH-TPL, Correlation: 0.9029648175057642
Pair: MOH-TMO, Correlation: 0.9739128688099621
Pair: MOH-TJX, Correlation: 0.9288193040924927
Pair: MOH-TSCO, Correlation: 0.9618883814289063
Pair: MOH-TT, Correlation: 0.9041993092125253
Pair: MOH-TDG, Correlation: 0.911474055610485
Pair: MOH-TRV, Correlation: 0.9144051087497622
Pair: MOH-TYL, Correlation: 0.9209670965124623
Pair: MOH-UNP, Correlation: 0.9579898384445701
Pair: MOH-UPS, Correlation: 0.9176385083003351
Pair: MOH-UNH, Correlation: 0.9807850826506437
Pair: MOH-VRSK, Correlation: 0.9531159530702872
Pair: MOH-VRTX, Correlation: 0.9175065658717572
Pair: MOH-VICI, Correlation: 0.9122074997821555
Pair: MOH-V, Correlation: 0.9452344948201088
Pair: MOH-VMC, Correlation: 0.9195597539167388
Pair: MOH-WRB, Correlation: 0.9599786360433922
Pair: MOH-WMT, Correlation: 0.9271463726478658
Pair: MOH-WM, Correlation: 0.9670230478593671
Pair: MOH-WAT, Correlation: 0.932086316959105
Pair: MOH-WST, Correlation: 0.9521106988493254
Pair: MOH-WTW, Correlation: 0.9435916553730174
Pair: MOH-XYL, Correlation: 0.9185519313423194
Pair: MOH-YUM, Correlation: 0.9476851954398555
Pair: MOH-ZTS, Correlation: 0.9387239728638135
Pair: MDLZ-MNST, Correlation: 0.9784681007691862
Pair: MDLZ-MCO, Correlation: 0.9567628381488542
Pair: MDLZ-MS, Correlation: 0.9165795924180473
Pair: MDLZ-MSI, Correlation: 0.9251435129781913
Pair: MDLZ-MSCI, Correlation: 0.9297485643140739
Pair: MDLZ-NDAQ, Correlation: 0.9519328225280644
Pair: MDLZ-NEE, Correlation: 0.9396879002145677
Pair: MDLZ-NI, Correlation: 0.9320127974361878
Pair: MDLZ-NDSN, Correlation: 0.9637807423474906
Pair: MDLZ-NSC, Correlation: 0.9341281402512907
Pair: MDLZ-NOC, Correlation: 0.9614128618539138
Pair: MDLZ-NVR, Correlation: 0.9380351806936632
Pair: MDLZ-NXPI, Correlation: 0.9490536324227351
Pair: MDLZ-ORLY, Correlation: 0.9517999765977627
Pair: MDLZ-ODFL, Correlation: 0.9331771429288429
Pair: MDLZ-OMC, Correlation: 0.9004235949623104
Pair: MDLZ-PKG, Correlation: 0.9421232459985034
Pair: MDLZ-PAYX, Correlation: 0.9676784809154164
Pair: MDLZ-PEP, Correlation: 0.9872982795447242
Pair: MDLZ-PM, Correlation: 0.9071799527780986
Pair: MDLZ-POOL, Correlation: 0.9201313987799324
Pair: MDLZ-PPG, Correlation: 0.916815127940638
Pair: MDLZ-PFG, Correlation: 0.9277328481130392
Pair: MDLZ-PG, Correlation: 0.972220587493821
Pair: MDLZ-PGR, Correlation: 0.9011061612502965
Pair: MDLZ-PLD, Correlation: 0.9472489048121415
Pair: MDLZ-PEG, Correlation: 0.9526217103463
Pair: MDLZ-PTC, Correlation: 0.933287794931244
Pair: MDLZ-PSA, Correlation: 0.955279129290811
Pair: MDLZ-DGX, Correlation: 0.9502603992994637
Pair: MDLZ-RJF, Correlation: 0.9322748074964652
Pair: MDLZ-RTX, Correlation: 0.9148065452593647
Pair: MDLZ-O, Correlation: 0.9253569047763797
Pair: MDLZ-REGN, Correlation: 0.9231085207509059
Pair: MDLZ-RF, Correlation: 0.9038135240745839
Pair: MDLZ-RSG, Correlation: 0.9445597211475338
Pair: MDLZ-RMD, Correlation: 0.9168463512453975
Pair: MDLZ-ROK, Correlation: 0.9507614717387572
Pair: MDLZ-ROL, Correlation: 0.9563462208252744
Pair: MDLZ-ROP, Correlation: 0.9717099102784883
Pair: MDLZ-ROST, Correlation: 0.942931861936024
Pair: MDLZ-SPGI, Correlation: 0.9553459618350026
Pair: MDLZ-CRM, Correlation: 0.9208954151834965
Pair: MDLZ-SRE, Correlation: 0.9671683468076837
Pair: MDLZ-NOW, Correlation: 0.9242290958278745
Pair: MDLZ-SHW, Correlation: 0.9568026802457068
Pair: MDLZ-SJM, Correlation: 0.9133630601716084
Pair: MDLZ-SNA, Correlation: 0.9594657937309599
Pair: MDLZ-SO, Correlation: 0.9605402527878374
Pair: MDLZ-SBUX, Correlation: 0.9539272194786946
Pair: MDLZ-STE, Correlation: 0.9618900294411072
Pair: MDLZ-SYK, Correlation: 0.9641613154321003
Pair: MDLZ-SNPS, Correlation: 0.9097354558769082
Pair: MDLZ-SYY, Correlation: 0.9364660402809796
Pair: MDLZ-TMUS, Correlation: 0.9514251472539282
Pair: MDLZ-TEL, Correlation: 0.9572561861167532
Pair: MDLZ-TDY, Correlation: 0.9460632829806472
Pair: MDLZ-TER, Correlation: 0.9003798567965873
Pair: MDLZ-TXN, Correlation: 0.9554847019996707
Pair: MDLZ-TMO, Correlation: 0.954059685745818
Pair: MDLZ-TJX, Correlation: 0.9574980908938577
Pair: MDLZ-TSCO, Correlation: 0.9372685950187253
Pair: MDLZ-TDG, Correlation: 0.9144635163978814
Pair: MDLZ-TRV, Correlation: 0.9560591962580671
Pair: MDLZ-TYL, Correlation: 0.9430603976886327
Pair: MDLZ-ULTA, Correlation: 0.944002088530436
Pair: MDLZ-UNP, Correlation: 0.9636488028810976
Pair: MDLZ-UPS, Correlation: 0.9151598570551188
Pair: MDLZ-UNH, Correlation: 0.9591500172259823
Pair: MDLZ-VRSN, Correlation: 0.9142817608998753
Pair: MDLZ-VRSK, Correlation: 0.9650340622300801
Pair: MDLZ-VRTX, Correlation: 0.928570717580246
Pair: MDLZ-VICI, Correlation: 0.927259846606961
Pair: MDLZ-V, Correlation: 0.9700669421606222
Pair: MDLZ-VMC, Correlation: 0.9573675944225192
Pair: MDLZ-WRB, Correlation: 0.9489356368015301
Pair: MDLZ-WMT, Correlation: 0.9275246925157321
Pair: MDLZ-WM, Correlation: 0.9608308335163279
Pair: MDLZ-WAT, Correlation: 0.934816770199191
Pair: MDLZ-WEC, Correlation: 0.9510623136329828
Pair: MDLZ-WELL, Correlation: 0.9010019926632453
Pair: MDLZ-WST, Correlation: 0.9217794999244137
Pair: MDLZ-WTW, Correlation: 0.9625186754492768
Pair: MDLZ-XEL, Correlation: 0.9423694792888883
Pair: MDLZ-XYL, Correlation: 0.9342843669854446
Pair: MDLZ-YUM, Correlation: 0.9728638870725576
Pair: MDLZ-ZTS, Correlation: 0.9383947994586191
Pair: MPWR-MCO, Correlation: 0.9493091342920824
Pair: MPWR-MS, Correlation: 0.947414395388116
Pair: MPWR-MSI, Correlation: 0.9730687110470856
Pair: MPWR-MSCI, Correlation: 0.9353888772574254
Pair: MPWR-NDAQ, Correlation: 0.9347941410457282
Pair: MPWR-NTAP, Correlation: 0.9191175733365287
Pair: MPWR-NDSN, Correlation: 0.9218347702455252
Pair: MPWR-NUE, Correlation: 0.9175852848019183
Pair: MPWR-NVR, Correlation: 0.9636424795122172
Pair: MPWR-NXPI, Correlation: 0.9403767986515287
Pair: MPWR-ORLY, Correlation: 0.9581754467279734
Pair: MPWR-ODFL, Correlation: 0.9631748684014202
Pair: MPWR-ON, Correlation: 0.9173654002578417
Pair: MPWR-ORCL, Correlation: 0.9622235303643535
Pair: MPWR-PCAR, Correlation: 0.9468668643912674
Pair: MPWR-PKG, Correlation: 0.928436000885712
Pair: MPWR-PANW, Correlation: 0.9642003457133047
Pair: MPWR-PH, Correlation: 0.9691494069384307
Pair: MPWR-PAYX, Correlation: 0.9355178987186265
Pair: MPWR-PNR, Correlation: 0.9046806583699394
Pair: MPWR-PEP, Correlation: 0.9051352284717147
Pair: MPWR-PG, Correlation: 0.9392203279843477
Pair: MPWR-PGR, Correlation: 0.96787295652639
Pair: MPWR-PLD, Correlation: 0.9062313492637214
Pair: MPWR-PEG, Correlation: 0.91571635665622
Pair: MPWR-PTC, Correlation: 0.9404696475289269
Pair: MPWR-PHM, Correlation: 0.9497092292640484
Pair: MPWR-PWR, Correlation: 0.9515126250787524
Pair: MPWR-QCOM, Correlation: 0.9458043511134485
Pair: MPWR-RJF, Correlation: 0.9390639407619504
Pair: MPWR-RSG, Correlation: 0.9727491353012809
Pair: MPWR-ROL, Correlation: 0.9308252801719111
Pair: MPWR-ROP, Correlation: 0.9151970557741573
Pair: MPWR-SPGI, Correlation: 0.9360657108662924
Pair: MPWR-STX, Correlation: 0.9189904749362289
Pair: MPWR-NOW, Correlation: 0.9601394211049654
Pair: MPWR-SHW, Correlation: 0.9415757969301428
Pair: MPWR-SNA, Correlation: 0.9008020723988861
Pair: MPWR-SO, Correlation: 0.9440018917585722
Pair: MPWR-STLD, Correlation: 0.9343659230163127
Pair: MPWR-STE, Correlation: 0.9180700493689227
Pair: MPWR-SYK, Correlation: 0.9380046813005516
Pair: MPWR-SNPS, Correlation: 0.9779880436598245
Pair: MPWR-TMUS, Correlation: 0.9488014578326043
Pair: MPWR-TEL, Correlation: 0.9170372339472116
Pair: MPWR-TER, Correlation: 0.918586256805327
Pair: MPWR-TXN, Correlation: 0.9266242122592937
Pair: MPWR-TPL, Correlation: 0.9072533609658844
Pair: MPWR-TMO, Correlation: 0.9274525760884166
Pair: MPWR-TJX, Correlation: 0.9452385324301421
Pair: MPWR-TSCO, Correlation: 0.9711541700412961
Pair: MPWR-TT, Correlation: 0.9761181854337465
Pair: MPWR-TDG, Correlation: 0.9671373862128296
Pair: MPWR-TRV, Correlation: 0.9133395803566999
Pair: MPWR-TYL, Correlation: 0.9137175083832852
Pair: MPWR-UNP, Correlation: 0.9062136542794772
Pair: MPWR-URI, Correlation: 0.9671299093582615
Pair: MPWR-UNH, Correlation: 0.9348845642164135
Pair: MPWR-VRSK, Correlation: 0.9409097119893904
Pair: MPWR-VRTX, Correlation: 0.9271837866782355
Pair: MPWR-V, Correlation: 0.9106075580693607
Pair: MPWR-VMC, Correlation: 0.9295644778927913
Pair: MPWR-WRB, Correlation: 0.9474861763127994
Pair: MPWR-GWW, Correlation: 0.9530768132306711
Pair: MPWR-WMT, Correlation: 0.9542210312577415
Pair: MPWR-WM, Correlation: 0.9564548689103488
Pair: MPWR-WST, Correlation: 0.90607855602854
Pair: MPWR-WTW, Correlation: 0.9221298648662475
Pair: MPWR-XYL, Correlation: 0.9192111838435084
Pair: MPWR-YUM, Correlation: 0.9025441661396376
Pair: MNST-MCO, Correlation: 0.9445163326987374
Pair: MNST-MS, Correlation: 0.9143915201233367
Pair: MNST-MSCI, Correlation: 0.9264965181525803
Pair: MNST-NDAQ, Correlation: 0.9475653521411266
Pair: MNST-NEE, Correlation: 0.935234294836299
Pair: MNST-NI, Correlation: 0.9207651114942774
Pair: MNST-NDSN, Correlation: 0.9612710121049828
Pair: MNST-NSC, Correlation: 0.9322812924416214
Pair: MNST-NOC, Correlation: 0.9566978638425178
Pair: MNST-NVR, Correlation: 0.9277576663161379
Pair: MNST-NXPI, Correlation: 0.9490248871999866
Pair: MNST-ORLY, Correlation: 0.9319587697443323
Pair: MNST-ODFL, Correlation: 0.9253114029364259
Pair: MNST-PKG, Correlation: 0.9362777978147783
Pair: MNST-PAYX, Correlation: 0.953651508918361
Pair: MNST-PEP, Correlation: 0.9737659939882545
Pair: MNST-POOL, Correlation: 0.9201657011482494
Pair: MNST-PPG, Correlation: 0.917496279907032
Pair: MNST-PFG, Correlation: 0.9178963808564454
Pair: MNST-PG, Correlation: 0.9463153086927524
Pair: MNST-PLD, Correlation: 0.9341530299947398
Pair: MNST-PEG, Correlation: 0.9362778833617226
Pair: MNST-PTC, Correlation: 0.9398617099933368
Pair: MNST-PSA, Correlation: 0.933324398846689
Pair: MNST-DGX, Correlation: 0.9568467008669681
Pair: MNST-RJF, Correlation: 0.9257012782679771
Pair: MNST-O, Correlation: 0.9088010989794302
Pair: MNST-REGN, Correlation: 0.9060583173538298
Pair: MNST-RF, Correlation: 0.9040167353697381
Pair: MNST-RSG, Correlation: 0.9256893100995361
Pair: MNST-RMD, Correlation: 0.913667265166624
Pair: MNST-ROK, Correlation: 0.9581404915668803
Pair: MNST-ROL, Correlation: 0.9617005651707798
Pair: MNST-ROP, Correlation: 0.9650495111282227
Pair: MNST-ROST, Correlation: 0.9403890980305529
Pair: MNST-SPGI, Correlation: 0.9477492383051398
Pair: MNST-CRM, Correlation: 0.9244378284635615
Pair: MNST-SRE, Correlation: 0.9438948803229867
Pair: MNST-NOW, Correlation: 0.9039077141344025
Pair: MNST-SHW, Correlation: 0.9489989899012335
Pair: MNST-SJM, Correlation: 0.9065504342615953
Pair: MNST-SNA, Correlation: 0.9549472520018533
Pair: MNST-SO, Correlation: 0.9335543379424491
Pair: MNST-SBUX, Correlation: 0.9523312032940667
Pair: MNST-STE, Correlation: 0.9517950134671774
Pair: MNST-SYK, Correlation: 0.9550807033395247
Pair: MNST-SYY, Correlation: 0.9349462630357604
Pair: MNST-TMUS, Correlation: 0.9442792852758812
Pair: MNST-TTWO, Correlation: 0.9003844385014012
Pair: MNST-TEL, Correlation: 0.959205203633817
Pair: MNST-TDY, Correlation: 0.9387572137196805
Pair: MNST-TXN, Correlation: 0.9564363275204817
Pair: MNST-TMO, Correlation: 0.9473924849374142
Pair: MNST-TJX, Correlation: 0.938809745317739
Pair: MNST-TSCO, Correlation: 0.9174965577500774
Pair: MNST-TRV, Correlation: 0.9414554080249138
Pair: MNST-TYL, Correlation: 0.93805292186252
Pair: MNST-ULTA, Correlation: 0.9437449147396716
Pair: MNST-UNP, Correlation: 0.9524042119395857
Pair: MNST-UPS, Correlation: 0.920746171570961
Pair: MNST-UNH, Correlation: 0.9546040846177609
Pair: MNST-VRSN, Correlation: 0.9135025990246768
Pair: MNST-VRSK, Correlation: 0.9490035032670677
Pair: MNST-VRTX, Correlation: 0.9152174208882883
Pair: MNST-VICI, Correlation: 0.9139390036692441
Pair: MNST-V, Correlation: 0.964092423421929
Pair: MNST-VMC, Correlation: 0.95001413821138
Pair: MNST-WRB, Correlation: 0.9256829653418522
Pair: MNST-WMT, Correlation: 0.9076117241558966
Pair: MNST-WM, Correlation: 0.945820843019599
Pair: MNST-WAT, Correlation: 0.9394287644835406
Pair: MNST-WEC, Correlation: 0.9402258970090697
Pair: MNST-WST, Correlation: 0.92215694549501
Pair: MNST-WTW, Correlation: 0.9516297160647815
Pair: MNST-XEL, Correlation: 0.9379693193459131
Pair: MNST-XYL, Correlation: 0.9370435276415575
Pair: MNST-YUM, Correlation: 0.9631033320309428
Pair: MNST-ZTS, Correlation: 0.9255649536891074
Pair: MCO-MS, Correlation: 0.9556539819885222
Pair: MCO-MSI, Correlation: 0.9578172267707596
Pair: MCO-MSCI, Correlation: 0.9718128453823671
Pair: MCO-NDAQ, Correlation: 0.9800831864414989
Pair: MCO-NFLX, Correlation: 0.9384683527398636
Pair: MCO-NEE, Correlation: 0.9553770138655222
Pair: MCO-NDSN, Correlation: 0.9772768758613155
Pair: MCO-NSC, Correlation: 0.9606467340154747
Pair: MCO-NOC, Correlation: 0.9317527695666014
Pair: MCO-NVR, Correlation: 0.9722710372753263
Pair: MCO-NXPI, Correlation: 0.9604259524299005
Pair: MCO-ORLY, Correlation: 0.9447977386946964
Pair: MCO-ODFL, Correlation: 0.9576360679170796
Pair: MCO-ORCL, Correlation: 0.9301393303570743
Pair: MCO-PCAR, Correlation: 0.9120570379602044
Pair: MCO-PKG, Correlation: 0.9581651320911865
Pair: MCO-PANW, Correlation: 0.9063658099518622
Pair: MCO-PH, Correlation: 0.9313363935259381
Pair: MCO-PAYX, Correlation: 0.9710667000264129
Pair: MCO-PNR, Correlation: 0.9119509601734542
Pair: MCO-PEP, Correlation: 0.9565486483165432
Pair: MCO-PNC, Correlation: 0.9280859217215283
Pair: MCO-POOL, Correlation: 0.9559520247577874
Pair: MCO-PG, Correlation: 0.9784241711302184
Pair: MCO-PGR, Correlation: 0.9364576827299528
Pair: MCO-PLD, Correlation: 0.9649528211934548
Pair: MCO-PEG, Correlation: 0.9657032835041394
Pair: MCO-PTC, Correlation: 0.9617667880575471
Pair: MCO-PSA, Correlation: 0.9306517608020953
Pair: MCO-PHM, Correlation: 0.9040365488536474
Pair: MCO-QCOM, Correlation: 0.9363388270629744
Pair: MCO-DGX, Correlation: 0.9618946539770729
Pair: MCO-RJF, Correlation: 0.9438122438271002
Pair: MCO-RTX, Correlation: 0.9026726009864982
Pair: MCO-RF, Correlation: 0.9209074876971098
Pair: MCO-RSG, Correlation: 0.9658663103172709
Pair: MCO-RMD, Correlation: 0.9551002853739698
Pair: MCO-RVTY, Correlation: 0.9041092210746018
Pair: MCO-ROK, Correlation: 0.9629520017793748
Pair: MCO-ROL, Correlation: 0.9730346123849876
Pair: MCO-ROP, Correlation: 0.9849542755841765
Pair: MCO-ROST, Correlation: 0.9475778025668725
Pair: MCO-SPGI, Correlation: 0.9959852801460223
Pair: MCO-CRM, Correlation: 0.9687832265473137
Pair: MCO-STX, Correlation: 0.9473966386541943
Pair: MCO-SRE, Correlation: 0.9285188910748735
Pair: MCO-NOW, Correlation: 0.9835535022480577
Pair: MCO-SHW, Correlation: 0.993102253809301
Pair: MCO-SNA, Correlation: 0.925747304615324
Pair: MCO-SO, Correlation: 0.9609731676698932
Pair: MCO-SBUX, Correlation: 0.928760575873624
Pair: MCO-STE, Correlation: 0.9796974424079148
Pair: MCO-SYK, Correlation: 0.9801725142839497
Pair: MCO-SNPS, Correlation: 0.9382716572362139
Pair: MCO-SYY, Correlation: 0.9179298916679566
Pair: MCO-TMUS, Correlation: 0.9743062328828495
Pair: MCO-TTWO, Correlation: 0.9145386714051386
Pair: MCO-TEL, Correlation: 0.9714107903101602
Pair: MCO-TDY, Correlation: 0.9676296439744151
Pair: MCO-TER, Correlation: 0.9582083519153693
Pair: MCO-TXN, Correlation: 0.9819260517672981
Pair: MCO-TMO, Correlation: 0.9719797568558063
Pair: MCO-TJX, Correlation: 0.9632265168765737
Pair: MCO-TSCO, Correlation: 0.9520455655382364
Pair: MCO-TT, Correlation: 0.9415626160131887
Pair: MCO-TDG, Correlation: 0.9467138484220813
Pair: MCO-TRV, Correlation: 0.938241432907243
Pair: MCO-TYL, Correlation: 0.9836594731692624
Pair: MCO-UNP, Correlation: 0.9756589666126584
Pair: MCO-UPS, Correlation: 0.9009285358901445
Pair: MCO-URI, Correlation: 0.9128046212917109
Pair: MCO-UNH, Correlation: 0.9634903418497234
Pair: MCO-VLTO, Correlation: 0.9151025678481893
Pair: MCO-VRSN, Correlation: 0.909027587088825
Pair: MCO-VRSK, Correlation: 0.9860116323820634
Pair: MCO-VRTX, Correlation: 0.9366903661566242
Pair: MCO-V, Correlation: 0.9825354637563627
Pair: MCO-VMC, Correlation: 0.9532716008711134
Pair: MCO-WRB, Correlation: 0.9512583369824645
Pair: MCO-WMT, Correlation: 0.9713691319146364
Pair: MCO-WM, Correlation: 0.9757387075516205
Pair: MCO-WAT, Correlation: 0.9512148539946573
Pair: MCO-WEC, Correlation: 0.9337505917618969
Pair: MCO-WELL, Correlation: 0.9074842264005654
Pair: MCO-WST, Correlation: 0.9503400203527795
Pair: MCO-WTW, Correlation: 0.9822660772004048
Pair: MCO-WDAY, Correlation: 0.9268773755670504
Pair: MCO-XEL, Correlation: 0.9250603004502429
Pair: MCO-XYL, Correlation: 0.9681254493638138
Pair: MCO-YUM, Correlation: 0.9646607967652051
Pair: MCO-ZTS, Correlation: 0.9653972996543182
Pair: MS-MSI, Correlation: 0.947975180073242
Pair: MS-MSCI, Correlation: 0.9576130017498735
Pair: MS-NDAQ, Correlation: 0.9708567397258452
Pair: MS-NTAP, Correlation: 0.9064206866063174
Pair: MS-NEE, Correlation: 0.9190061453267155
Pair: MS-NDSN, Correlation: 0.9532934205686484
Pair: MS-NSC, Correlation: 0.9299043354629903
Pair: MS-NOC, Correlation: 0.9100274709438314
Pair: MS-NUE, Correlation: 0.9170030319032207
Pair: MS-NVR, Correlation: 0.9461549413904582
Pair: MS-NXPI, Correlation: 0.9588419193883296
Pair: MS-ORLY, Correlation: 0.9392273247413216
Pair: MS-ODFL, Correlation: 0.9614201194588547
Pair: MS-ON, Correlation: 0.9251946477087538
Pair: MS-ORCL, Correlation: 0.9336192896187956
Pair: MS-OTIS, Correlation: 0.9059032945001301
Pair: MS-PCAR, Correlation: 0.9048175734036389
Pair: MS-PKG, Correlation: 0.9469675773173647
Pair: MS-PANW, Correlation: 0.911402246691991
Pair: MS-PH, Correlation: 0.9355425529377122
Pair: MS-PAYX, Correlation: 0.9648587930031876
Pair: MS-PNR, Correlation: 0.9097111367367426
Pair: MS-PEP, Correlation: 0.9365788266705378
Pair: MS-PNC, Correlation: 0.9306608200791467
Pair: MS-POOL, Correlation: 0.932937577800959
Pair: MS-PFG, Correlation: 0.9368325001848515
Pair: MS-PG, Correlation: 0.9424682024305815
Pair: MS-PGR, Correlation: 0.9239917929820953
Pair: MS-PLD, Correlation: 0.9421177488839835
Pair: MS-PRU, Correlation: 0.9067388732998914
Pair: MS-PEG, Correlation: 0.9315593984018727
Pair: MS-PTC, Correlation: 0.9493911486678503
Pair: MS-PSA, Correlation: 0.9253122012477366
Pair: MS-QCOM, Correlation: 0.9275455601585765
Pair: MS-DGX, Correlation: 0.9489233525013099
Pair: MS-RJF, Correlation: 0.9783854511738505
Pair: MS-RTX, Correlation: 0.9069809960239502
Pair: MS-RF, Correlation: 0.9558399658692314
Pair: MS-RSG, Correlation: 0.9553743515057818
Pair: MS-RMD, Correlation: 0.9297828565562388
Pair: MS-ROK, Correlation: 0.9479089145305767
Pair: MS-ROL, Correlation: 0.9357241474973885
Pair: MS-ROP, Correlation: 0.930454900911824
Pair: MS-SPGI, Correlation: 0.9506540555484756
Pair: MS-STX, Correlation: 0.9368257349722814
Pair: MS-NOW, Correlation: 0.9356459630314505
Pair: MS-SHW, Correlation: 0.954698214188217
Pair: MS-SNA, Correlation: 0.931079525376866
Pair: MS-SO, Correlation: 0.9355879541555063
Pair: MS-STLD, Correlation: 0.9236978470140613
Pair: MS-STE, Correlation: 0.9402515058380996
Pair: MS-SYK, Correlation: 0.9459444472726656
Pair: MS-SNPS, Correlation: 0.9379038939889974
Pair: MS-TMUS, Correlation: 0.9576431679107985
Pair: MS-TEL, Correlation: 0.9648150730942563
Pair: MS-TDY, Correlation: 0.9253033420021101
Pair: MS-TER, Correlation: 0.9365826185313282
Pair: MS-TSLA, Correlation: 0.9088065507154295
Pair: MS-TXN, Correlation: 0.961818467224321
Pair: MS-TPL, Correlation: 0.9350333583552591
Pair: MS-TXT, Correlation: 0.9094418558041666
Pair: MS-TMO, Correlation: 0.9544275917949877
Pair: MS-TJX, Correlation: 0.9294160332107487
Pair: MS-TSCO, Correlation: 0.9566914391606792
Pair: MS-TT, Correlation: 0.9372470822893267
Pair: MS-TDG, Correlation: 0.9180012959509395
Pair: MS-TRV, Correlation: 0.9339810863650938
Pair: MS-TYL, Correlation: 0.9315661041244181
Pair: MS-UNP, Correlation: 0.937336142777193
Pair: MS-UPS, Correlation: 0.9122399919889712
Pair: MS-URI, Correlation: 0.9307466090650335
Pair: MS-UNH, Correlation: 0.9606246832923031
Pair: MS-VRSK, Correlation: 0.9305360618671855
Pair: MS-VICI, Correlation: 0.9173967599736694
Pair: MS-V, Correlation: 0.9272733105213896
Pair: MS-VMC, Correlation: 0.9400863232476264
Pair: MS-WRB, Correlation: 0.9429441512817951
Pair: MS-GWW, Correlation: 0.9007118232838194
Pair: MS-WMT, Correlation: 0.9324509736781099
Pair: MS-WM, Correlation: 0.9582572178788424
Pair: MS-WAT, Correlation: 0.9479351394300947
Pair: MS-WST, Correlation: 0.9334410702510912
Pair: MS-WTW, Correlation: 0.9417060735243801
Pair: MS-XYL, Correlation: 0.9455998988084037
Pair: MS-YUM, Correlation: 0.9340052926133974
Pair: MS-ZTS, Correlation: 0.9105764462372444
Pair: MSI-MSCI, Correlation: 0.9319835507041127
Pair: MSI-NDAQ, Correlation: 0.9469311395576638
Pair: MSI-NTAP, Correlation: 0.9224841670244118
Pair: MSI-NDSN, Correlation: 0.9315113758522827
Pair: MSI-NOC, Correlation: 0.9104962101779602
Pair: MSI-NRG, Correlation: 0.9024225859705228
Pair: MSI-NUE, Correlation: 0.9182536677198645
Pair: MSI-NVR, Correlation: 0.9784252551180413
Pair: MSI-NXPI, Correlation: 0.9257712019548691
Pair: MSI-ORLY, Correlation: 0.9808473716050864
Pair: MSI-ODFL, Correlation: 0.9627979697120679
Pair: MSI-ON, Correlation: 0.9176866625647898
Pair: MSI-OKE, Correlation: 0.9272046864518032
Pair: MSI-ORCL, Correlation: 0.9794887557610087
Pair: MSI-OTIS, Correlation: 0.9040109322061899
Pair: MSI-PCAR, Correlation: 0.9573070268005339
Pair: MSI-PKG, Correlation: 0.9472196733718422
Pair: MSI-PANW, Correlation: 0.9672442327159003
Pair: MSI-PH, Correlation: 0.9764002955901783
Pair: MSI-PAYX, Correlation: 0.9561925076994225
Pair: MSI-PNR, Correlation: 0.9031263345581532
Pair: MSI-PEP, Correlation: 0.9315457537112741
Pair: MSI-PFG, Correlation: 0.9038976559252434
Pair: MSI-PG, Correlation: 0.9550121265516096
Pair: MSI-PGR, Correlation: 0.9876387686613888
Pair: MSI-PLD, Correlation: 0.9095920283381225
Pair: MSI-PEG, Correlation: 0.9505956883691664
Pair: MSI-PTC, Correlation: 0.9533926687463375
Pair: MSI-PSA, Correlation: 0.9073027160380359
Pair: MSI-PHM, Correlation: 0.9567461505083947
Pair: MSI-PWR, Correlation: 0.9515795053682276
Pair: MSI-QCOM, Correlation: 0.9156099241112899
Pair: MSI-DGX, Correlation: 0.9153908614519718
Pair: MSI-RJF, Correlation: 0.9602671505467381
Pair: MSI-RTX, Correlation: 0.9127091123485348
Pair: MSI-RSG, Correlation: 0.9895158998952832
Pair: MSI-ROK, Correlation: 0.9011311655681581
Pair: MSI-ROL, Correlation: 0.945904925304905
Pair: MSI-ROP, Correlation: 0.9381574834594566
Pair: MSI-ROST, Correlation: 0.9037715794905651
Pair: MSI-SPGI, Correlation: 0.9437194863116547
Pair: MSI-STX, Correlation: 0.9123727552795163
Pair: MSI-SRE, Correlation: 0.9004877800376035
Pair: MSI-NOW, Correlation: 0.9532763650539126
Pair: MSI-SHW, Correlation: 0.9487421917569668
Pair: MSI-SNA, Correlation: 0.9288875641138711
Pair: MSI-SO, Correlation: 0.9697962694507002
Pair: MSI-STLD, Correlation: 0.9461146812860534
Pair: MSI-STE, Correlation: 0.926645164827244
Pair: MSI-SYK, Correlation: 0.9626236683353264
Pair: MSI-SNPS, Correlation: 0.9717310368701694
Pair: MSI-TMUS, Correlation: 0.9641175894213228
Pair: MSI-TEL, Correlation: 0.9221824172599109
Pair: MSI-TDY, Correlation: 0.9057724253956376
Pair: MSI-TXN, Correlation: 0.9365812069701162
Pair: MSI-TPL, Correlation: 0.949672398415802
Pair: MSI-TMO, Correlation: 0.9249051338533375
Pair: MSI-TJX, Correlation: 0.9761874383109439
Pair: MSI-TSCO, Correlation: 0.9714234160451292
Pair: MSI-TT, Correlation: 0.981856061773121
Pair: MSI-TDG, Correlation: 0.983620453386878
Pair: MSI-TRV, Correlation: 0.9490292504376027
Pair: MSI-TYL, Correlation: 0.9165320694308101
Pair: MSI-UNP, Correlation: 0.923210166460749
Pair: MSI-URI, Correlation: 0.9662407377182743
Pair: MSI-UNH, Correlation: 0.9530647731948947
Pair: MSI-VLO, Correlation: 0.9091613398334074
Pair: MSI-VLTO, Correlation: 0.9059034287388319
Pair: MSI-VRSK, Correlation: 0.9597216974232746
Pair: MSI-VRTX, Correlation: 0.9533054115068944
Pair: MSI-V, Correlation: 0.9391525270514219
Pair: MSI-VMC, Correlation: 0.9468576766340681
Pair: MSI-WRB, Correlation: 0.9761247117811593
Pair: MSI-GWW, Correlation: 0.9688558929757795
Pair: MSI-WMT, Correlation: 0.9765372723308352
Pair: MSI-WM, Correlation: 0.9780209618540682
Pair: MSI-WELL, Correlation: 0.9289178820628203
Pair: MSI-WTW, Correlation: 0.9503432474325844
Pair: MSI-XYL, Correlation: 0.9272333167135144
Pair: MSI-YUM, Correlation: 0.9372297043309424
Pair: MSCI-NDAQ, Correlation: 0.9777935619717876
Pair: MSCI-NEE, Correlation: 0.9559601915981254
Pair: MSCI-NKE, Correlation: 0.9019905583420983
Pair: MSCI-NDSN, Correlation: 0.9701403363502402
Pair: MSCI-NSC, Correlation: 0.9556568199121886
Pair: MSCI-NOC, Correlation: 0.9026552856339072
Pair: MSCI-NVR, Correlation: 0.9315058467038851
Pair: MSCI-NXPI, Correlation: 0.9270357427240575
Pair: MSCI-ORLY, Correlation: 0.9272812119028078
Pair: MSCI-ODFL, Correlation: 0.9702357705864586
Pair: MSCI-ON, Correlation: 0.9076584378591754
Pair: MSCI-PKG, Correlation: 0.904414278939329
Pair: MSCI-PAYX, Correlation: 0.9632384219166964
Pair: MSCI-PEP, Correlation: 0.9469412898553734
Pair: MSCI-POOL, Correlation: 0.9790478992200621
Pair: MSCI-PG, Correlation: 0.9642351353309845
Pair: MSCI-PGR, Correlation: 0.9020576730053996
Pair: MSCI-PLD, Correlation: 0.9763069960695239
Pair: MSCI-PEG, Correlation: 0.9178428047025059
Pair: MSCI-PTC, Correlation: 0.9364720601132168
Pair: MSCI-PSA, Correlation: 0.9110284605300767
Pair: MSCI-QCOM, Correlation: 0.9320426584626763
Pair: MSCI-DGX, Correlation: 0.9516011484383202
Pair: MSCI-RJF, Correlation: 0.9321460028717018
Pair: MSCI-RF, Correlation: 0.9030799060311152
Pair: MSCI-RSG, Correlation: 0.9415142475927688
Pair: MSCI-RMD, Correlation: 0.9690730677100614
Pair: MSCI-RVTY, Correlation: 0.9230979685412146
Pair: MSCI-ROK, Correlation: 0.962989176834162
Pair: MSCI-ROL, Correlation: 0.9484659318610471
Pair: MSCI-ROP, Correlation: 0.9566049781342154
Pair: MSCI-SPGI, Correlation: 0.9790339476586601
Pair: MSCI-CRM, Correlation: 0.9389218173163341
Pair: MSCI-STX, Correlation: 0.9080464626487023
Pair: MSCI-NOW, Correlation: 0.9609668114057918
Pair: MSCI-SHW, Correlation: 0.9673193423436183
Pair: MSCI-SO, Correlation: 0.9338101551967556
Pair: MSCI-SBUX, Correlation: 0.9210726620745997
Pair: MSCI-STE, Correlation: 0.9749366332795575
Pair: MSCI-SYK, Correlation: 0.9475861550835258
Pair: MSCI-SNPS, Correlation: 0.936824423547261
Pair: MSCI-TMUS, Correlation: 0.9549811446120162
Pair: MSCI-TGT, Correlation: 0.9354348589105899
Pair: MSCI-TEL, Correlation: 0.9493848900763644
Pair: MSCI-TDY, Correlation: 0.9693881220184476
Pair: MSCI-TER, Correlation: 0.9670328644200946
Pair: MSCI-TSLA, Correlation: 0.9259939566990837
Pair: MSCI-TXN, Correlation: 0.9722183352020227
Pair: MSCI-TMO, Correlation: 0.9841985787021568
Pair: MSCI-TJX, Correlation: 0.9175223812962622
Pair: MSCI-TSCO, Correlation: 0.9460359262115691
Pair: MSCI-TT, Correlation: 0.9043726614646015
Pair: MSCI-TYL, Correlation: 0.9527703756160791
Pair: MSCI-UNP, Correlation: 0.9536398068478744
Pair: MSCI-UPS, Correlation: 0.9298188724154632
Pair: MSCI-UNH, Correlation: 0.9624470184001874
Pair: MSCI-VRSK, Correlation: 0.958710233761587
Pair: MSCI-V, Correlation: 0.9537363027188138
Pair: MSCI-VMC, Correlation: 0.911809874878403
Pair: MSCI-WRB, Correlation: 0.9287113783350596
Pair: MSCI-WMT, Correlation: 0.932487953540512
Pair: MSCI-WM, Correlation: 0.9554090354402359
Pair: MSCI-WAT, Correlation: 0.949909505102791
Pair: MSCI-WEC, Correlation: 0.9107173107037044
Pair: MSCI-WST, Correlation: 0.9793616962438065
Pair: MSCI-WTW, Correlation: 0.9528842122898316
Pair: MSCI-WDAY, Correlation: 0.9168505795715414
Pair: MSCI-XEL, Correlation: 0.9111945780522712
Pair: MSCI-XYL, Correlation: 0.9485976059352581
Pair: MSCI-YUM, Correlation: 0.9476630090913891
Pair: MSCI-ZBRA, Correlation: 0.91755838199764
Pair: MSCI-ZTS, Correlation: 0.980048842319119
Pair: NDAQ-NEE, Correlation: 0.9714733398563374
Pair: NDAQ-NDSN, Correlation: 0.9797806131594079
Pair: NDAQ-NSC, Correlation: 0.9660513945636093
Pair: NDAQ-NOC, Correlation: 0.948548172206127
Pair: NDAQ-NVR, Correlation: 0.9479291276173012
Pair: NDAQ-NXPI, Correlation: 0.9490752816481869
Pair: NDAQ-ORLY, Correlation: 0.9434463919067657
Pair: NDAQ-ODFL, Correlation: 0.9549212519306639
Pair: NDAQ-ORCL, Correlation: 0.9076782859398199
Pair: NDAQ-PKG, Correlation: 0.9450829241655943
Pair: NDAQ-PH, Correlation: 0.9071385191242402
Pair: NDAQ-PAYX, Correlation: 0.9835107278376835
Pair: NDAQ-PEP, Correlation: 0.9676031532317807
Pair: NDAQ-PNC, Correlation: 0.9435703450298737
Pair: NDAQ-POOL, Correlation: 0.9646731220567988
Pair: NDAQ-PFG, Correlation: 0.9144049649101733
Pair: NDAQ-PG, Correlation: 0.9707648287214891
Pair: NDAQ-PGR, Correlation: 0.921744418369211
Pair: NDAQ-PLD, Correlation: 0.9734328251880529
Pair: NDAQ-PEG, Correlation: 0.9601662528062659
Pair: NDAQ-PTC, Correlation: 0.9495407154521318
Pair: NDAQ-PSA, Correlation: 0.9555603830311977
Pair: NDAQ-QCOM, Correlation: 0.9250185775707983
Pair: NDAQ-DGX, Correlation: 0.9774215397908397
Pair: NDAQ-RJF, Correlation: 0.9623583704915282
Pair: NDAQ-RTX, Correlation: 0.9059230589388578
Pair: NDAQ-RF, Correlation: 0.9464246956769009
Pair: NDAQ-RSG, Correlation: 0.9604676199530594
Pair: NDAQ-RMD, Correlation: 0.971153373092875
Pair: NDAQ-RVTY, Correlation: 0.9301578684104317
Pair: NDAQ-ROK, Correlation: 0.9629936654971587
Pair: NDAQ-ROL, Correlation: 0.9661614002549672
Pair: NDAQ-ROP, Correlation: 0.9679582708301565
Pair: NDAQ-ROST, Correlation: 0.9232974038145367
Pair: NDAQ-SPGI, Correlation: 0.983721852445757
Pair: NDAQ-CRM, Correlation: 0.9393397552769883
Pair: NDAQ-STX, Correlation: 0.9258093378477821
Pair: NDAQ-SRE, Correlation: 0.9315097775657695
Pair: NDAQ-NOW, Correlation: 0.9517885720222039
Pair: NDAQ-SHW, Correlation: 0.9807714859333583
Pair: NDAQ-SNA, Correlation: 0.926571053641053
Pair: NDAQ-SO, Correlation: 0.9606427456861328
Pair: NDAQ-SBUX, Correlation: 0.9342586990734708
Pair: NDAQ-STE, Correlation: 0.9741593496017357
Pair: NDAQ-SYK, Correlation: 0.9636088032305697
Pair: NDAQ-SNPS, Correlation: 0.9241927105111294
Pair: NDAQ-SYY, Correlation: 0.9343738870087761
Pair: NDAQ-TMUS, Correlation: 0.9743742948200733
Pair: NDAQ-TGT, Correlation: 0.9169115026974081
Pair: NDAQ-TEL, Correlation: 0.9714952948890816
Pair: NDAQ-TDY, Correlation: 0.9657083696152
Pair: NDAQ-TER, Correlation: 0.9510976302530135
Pair: NDAQ-TSLA, Correlation: 0.9014771652151382
Pair: NDAQ-TXN, Correlation: 0.9859993381081553
Pair: NDAQ-TPL, Correlation: 0.9219382684163299
Pair: NDAQ-TMO, Correlation: 0.9839784909056357
Pair: NDAQ-TJX, Correlation: 0.9435694914670256
Pair: NDAQ-TSCO, Correlation: 0.9559048705515594
Pair: NDAQ-TT, Correlation: 0.9194460759014004
Pair: NDAQ-TDG, Correlation: 0.9143446403729205
Pair: NDAQ-TRV, Correlation: 0.9414650591831467
Pair: NDAQ-TYL, Correlation: 0.9697674218213531
Pair: NDAQ-UDR, Correlation: 0.9042645100906643
Pair: NDAQ-ULTA, Correlation: 0.9022712848120739
Pair: NDAQ-UNP, Correlation: 0.9687329343363579
Pair: NDAQ-UPS, Correlation: 0.933320633505388
Pair: NDAQ-UNH, Correlation: 0.9800194740028889
Pair: NDAQ-VRSN, Correlation: 0.9024677077402923
Pair: NDAQ-VRSK, Correlation: 0.9636625314523249
Pair: NDAQ-VRTX, Correlation: 0.9071995367326438
Pair: NDAQ-VICI, Correlation: 0.9124141982969005
Pair: NDAQ-V, Correlation: 0.965761804026051
Pair: NDAQ-VMC, Correlation: 0.9459055097019244
Pair: NDAQ-WRB, Correlation: 0.95626947873444
Pair: NDAQ-WMT, Correlation: 0.9463293213196156
Pair: NDAQ-WM, Correlation: 0.9756722599251211
Pair: NDAQ-WAT, Correlation: 0.9726443578980897
Pair: NDAQ-WEC, Correlation: 0.9391080290598182
Pair: NDAQ-WST, Correlation: 0.9513460170817939
Pair: NDAQ-WTW, Correlation: 0.9739704451806153
Pair: NDAQ-XEL, Correlation: 0.9358931089821444
Pair: NDAQ-XYL, Correlation: 0.9631342820338182
Pair: NDAQ-YUM, Correlation: 0.9634159480048313
Pair: NDAQ-ZBRA, Correlation: 0.9036999054960381
Pair: NDAQ-ZTS, Correlation: 0.9590213984267206
Pair: NTAP-NRG, Correlation: 0.9140118605006374
Pair: NTAP-NVR, Correlation: 0.9132336209992253
Pair: NTAP-ORCL, Correlation: 0.9116745931400622
Pair: NTAP-PANW, Correlation: 0.9020080161492265
Pair: NTAP-PH, Correlation: 0.9227054710743285
Pair: NTAP-PGR, Correlation: 0.9158010754076974
Pair: NTAP-PTC, Correlation: 0.9254707376575204
Pair: NTAP-RJF, Correlation: 0.9043825167341735
Pair: NTAP-RSG, Correlation: 0.9168850228959279
Pair: NTAP-NOW, Correlation: 0.9046572731252255
Pair: NTAP-TT, Correlation: 0.926689148700514
Pair: NTAP-TDG, Correlation: 0.9136552504535738
Pair: NTAP-URI, Correlation: 0.9181580675258028
Pair: NTAP-VLTO, Correlation: 0.9269677854685344
Pair: NTAP-WM, Correlation: 0.9041387832506466
Pair: NTAP-XYL, Correlation: 0.9130956175382052
Pair: NFLX-NDSN, Correlation: 0.9028608875373085
Pair: NFLX-NSC, Correlation: 0.9086980853094937
Pair: NFLX-NVR, Correlation: 0.9136513558744448
Pair: NFLX-PEG, Correlation: 0.9039021320056009
Pair: NFLX-PTC, Correlation: 0.9207668295751701
Pair: NFLX-ROK, Correlation: 0.9006404444242617
Pair: NFLX-ROL, Correlation: 0.9269434558388162
Pair: NFLX-ROP, Correlation: 0.9329606820431091
Pair: NFLX-ROST, Correlation: 0.9341200697789572
Pair: NFLX-SPGI, Correlation: 0.9364258209391471
Pair: NFLX-CRM, Correlation: 0.9701188461476628
Pair: NFLX-NOW, Correlation: 0.9186400071213858
Pair: NFLX-SHW, Correlation: 0.9313415020976809
Pair: NFLX-STE, Correlation: 0.9026886789267785
Pair: NFLX-SYK, Correlation: 0.9314895426505141
Pair: NFLX-TTWO, Correlation: 0.939310678668609
Pair: NFLX-TEL, Correlation: 0.9041375325307902
Pair: NFLX-TDY, Correlation: 0.9008506940480917
Pair: NFLX-TXN, Correlation: 0.9191335224663455
Pair: NFLX-TYL, Correlation: 0.945016024110465
Pair: NFLX-UNP, Correlation: 0.9054970447831115
Pair: NFLX-VRSK, Correlation: 0.925102457834148
Pair: NFLX-V, Correlation: 0.9341781861847208
Pair: NFLX-WMT, Correlation: 0.9071430625639474
Pair: NFLX-WTW, Correlation: 0.9244920090571659
Pair: NFLX-WDAY, Correlation: 0.9280446422149126
Pair: NFLX-XYL, Correlation: 0.9302181177300545
Pair: NWSA-NWS, Correlation: 0.9942711005087362
Pair: NWSA-PNR, Correlation: 0.9280798734394441
Pair: NWS-PNR, Correlation: 0.944160553402852
Pair: NWS-STX, Correlation: 0.9057490862849797
Pair: NWS-URI, Correlation: 0.9103097340324426
Pair: NEE-NKE, Correlation: 0.9349149328837508
Pair: NEE-NDSN, Correlation: 0.9650399553657104
Pair: NEE-NSC, Correlation: 0.9740317031034812
Pair: NEE-NOC, Correlation: 0.9347927862850484
Pair: NEE-NXPI, Correlation: 0.903015449285815
Pair: NEE-ODFL, Correlation: 0.9028510538355348
Pair: NEE-PKG, Correlation: 0.9019003198782769
Pair: NEE-PAYX, Correlation: 0.9564433330285362
Pair: NEE-PEP, Correlation: 0.9599462796431161
Pair: NEE-PNC, Correlation: 0.9252958412806626
Pair: NEE-POOL, Correlation: 0.9625658881340154
Pair: NEE-PG, Correlation: 0.9602095802459754
Pair: NEE-PLD, Correlation: 0.9691131806600465
Pair: NEE-PEG, Correlation: 0.9431899598560952
Pair: NEE-PTC, Correlation: 0.9062244387234187
Pair: NEE-PSA, Correlation: 0.9251404913046007
Pair: NEE-DGX, Correlation: 0.965150118414188
Pair: NEE-RJF, Correlation: 0.9034830680194402
Pair: NEE-O, Correlation: 0.9274366562808849
Pair: NEE-RF, Correlation: 0.9181873496277793
Pair: NEE-RSG, Correlation: 0.9087729089969879
Pair: NEE-RMD, Correlation: 0.9854617705807494
Pair: NEE-RVTY, Correlation: 0.9609817445344807
Pair: NEE-ROK, Correlation: 0.9512549599855146
Pair: NEE-ROL, Correlation: 0.9532278073927413
Pair: NEE-ROP, Correlation: 0.9571142674111237
Pair: NEE-ROST, Correlation: 0.9119440487107484
Pair: NEE-SPGI, Correlation: 0.9694718447750695
Pair: NEE-CRM, Correlation: 0.9287203023284757
Pair: NEE-SBAC, Correlation: 0.9543275152163309
Pair: NEE-SRE, Correlation: 0.9336958831138099
Pair: NEE-NOW, Correlation: 0.9084505623005855
Pair: NEE-SHW, Correlation: 0.9562732220428346
Pair: NEE-SO, Correlation: 0.9377229877400817
Pair: NEE-SBUX, Correlation: 0.9479029827189437
Pair: NEE-STE, Correlation: 0.9728544870761049
Pair: NEE-SYK, Correlation: 0.9351090798398372
Pair: NEE-SYY, Correlation: 0.9458192260390975
Pair: NEE-TMUS, Correlation: 0.9443362126469065
Pair: NEE-TROW, Correlation: 0.9122170926118573
Pair: NEE-TTWO, Correlation: 0.9239006539196284
Pair: NEE-TGT, Correlation: 0.9215203738247545
Pair: NEE-TEL, Correlation: 0.9490290779300252
Pair: NEE-TDY, Correlation: 0.9781180740535537
Pair: NEE-TER, Correlation: 0.9511553959486733
Pair: NEE-TXN, Correlation: 0.9784258681756383
Pair: NEE-TMO, Correlation: 0.9805867208556749
Pair: NEE-TSCO, Correlation: 0.9025788078003074
Pair: NEE-TYL, Correlation: 0.9605162837429964
Pair: NEE-UDR, Correlation: 0.9206753293208192
Pair: NEE-UNP, Correlation: 0.9652400083056552
Pair: NEE-UPS, Correlation: 0.9396397397377377
Pair: NEE-UNH, Correlation: 0.953246962315039
Pair: NEE-VLTO, Correlation: 0.9402011083362134
Pair: NEE-VRSN, Correlation: 0.9440023664321187
Pair: NEE-VRSK, Correlation: 0.9480178786634531
Pair: NEE-V, Correlation: 0.9579038858993506
Pair: NEE-WRB, Correlation: 0.9117868120227283
Pair: NEE-WMT, Correlation: 0.9149808871592509
Pair: NEE-WM, Correlation: 0.939651645055292
Pair: NEE-WAT, Correlation: 0.9559403379713803
Pair: NEE-WEC, Correlation: 0.974644609298546
Pair: NEE-WST, Correlation: 0.937881636287871
Pair: NEE-WTW, Correlation: 0.9559728379189328
Pair: NEE-XEL, Correlation: 0.9741155914070504
Pair: NEE-XYL, Correlation: 0.9365010291357421
Pair: NEE-YUM, Correlation: 0.9543919067832117
Pair: NEE-ZBRA, Correlation: 0.9231747401309582
Pair: NEE-ZTS, Correlation: 0.9668970082458548
Pair: NKE-NDSN, Correlation: 0.9017833013717803
Pair: NKE-NSC, Correlation: 0.9362053766860131
Pair: NKE-PAYC, Correlation: 0.9467282845316864
Pair: NKE-POOL, Correlation: 0.9478696855455376
Pair: NKE-PPG, Correlation: 0.9089527007515122
Pair: NKE-PLD, Correlation: 0.9208090478363787
Pair: NKE-RMD, Correlation: 0.9348959293536554
Pair: NKE-RVTY, Correlation: 0.9695010269962013
Pair: NKE-ROK, Correlation: 0.922855504085968
Pair: NKE-SPGI, Correlation: 0.9047614093161933
Pair: NKE-CRM, Correlation: 0.9036874707323719
Pair: NKE-SBAC, Correlation: 0.9533455113054011
Pair: NKE-SWKS, Correlation: 0.9248492162197979
Pair: NKE-SBUX, Correlation: 0.9525119884452617
Pair: NKE-STE, Correlation: 0.9208312655954395
Pair: NKE-SYY, Correlation: 0.9039801186629002
Pair: NKE-TROW, Correlation: 0.9551576762188456
Pair: NKE-TTWO, Correlation: 0.9148241082155881
Pair: NKE-TGT, Correlation: 0.933245541215267
Pair: NKE-TEL, Correlation: 0.9057384088217146
Pair: NKE-TDY, Correlation: 0.9326174663019258
Pair: NKE-TER, Correlation: 0.9049124108967778
Pair: NKE-TXN, Correlation: 0.9117750762705714
Pair: NKE-TMO, Correlation: 0.9201338825325266
Pair: NKE-TRMB, Correlation: 0.9056208987126417
Pair: NKE-TYL, Correlation: 0.912864928682401
Pair: NKE-UDR, Correlation: 0.9137736250532722
Pair: NKE-UNP, Correlation: 0.9114555166342461
Pair: NKE-UPS, Correlation: 0.9377879063174895
Pair: NKE-VRSN, Correlation: 0.9426146978805485
Pair: NKE-WAT, Correlation: 0.9175341675745367
Pair: NKE-WEC, Correlation: 0.9190731316673362
Pair: NKE-WST, Correlation: 0.9180881899399711
Pair: NKE-XEL, Correlation: 0.9293625969905501
Pair: NKE-ZBRA, Correlation: 0.9459426297316114
Pair: NKE-ZTS, Correlation: 0.9208756132212284
Pair: NI-NOC, Correlation: 0.95663907794233
Pair: NI-OMC, Correlation: 0.907588788985313
Pair: NI-PKG, Correlation: 0.9237669484094526
Pair: NI-PAYX, Correlation: 0.9138217965401789
Pair: NI-PEP, Correlation: 0.9270113476355073
Pair: NI-PM, Correlation: 0.9058922190072034
Pair: NI-PNW, Correlation: 0.9711241648881833
Pair: NI-PNC, Correlation: 0.9063220558240909
Pair: NI-PPL, Correlation: 0.938335169488125
Pair: NI-PRU, Correlation: 0.9007914639023412
Pair: NI-PEG, Correlation: 0.9516443536055222
Pair: NI-PSA, Correlation: 0.9262698876946396
Pair: NI-DGX, Correlation: 0.9174630329016066
Pair: NI-RTX, Correlation: 0.9244703119139945
Pair: NI-O, Correlation: 0.9575627932145881
Pair: NI-REG, Correlation: 0.9102974208090138
Pair: NI-ROL, Correlation: 0.9056923230911137
Pair: NI-ROP, Correlation: 0.9206756870746766
Pair: NI-ROST, Correlation: 0.9283912214634397
Pair: NI-SRE, Correlation: 0.9646605209343778
Pair: NI-SNA, Correlation: 0.9112474518039684
Pair: NI-SO, Correlation: 0.9085319400925347
Pair: NI-SYK, Correlation: 0.9178844343675361
Pair: NI-SYY, Correlation: 0.9426240305153396
Pair: NI-TEL, Correlation: 0.90612879579309
Pair: NI-TXN, Correlation: 0.9026413558528139
Pair: NI-TJX, Correlation: 0.9000702998706944
Pair: NI-TRV, Correlation: 0.940286833558101
Pair: NI-TSN, Correlation: 0.9050138553498555
Pair: NI-UDR, Correlation: 0.9326627030365646
Pair: NI-ULTA, Correlation: 0.9184659917028053
Pair: NI-UNP, Correlation: 0.9101904360254038
Pair: NI-V, Correlation: 0.9215798687661055
Pair: NI-VMC, Correlation: 0.9163313308274416
Pair: NI-WM, Correlation: 0.9047975455173466
Pair: NI-WAT, Correlation: 0.9026303290073033
Pair: NI-WEC, Correlation: 0.9432253288461813
Pair: NI-WTW, Correlation: 0.9135581555762109
Pair: NI-XEL, Correlation: 0.9330519618540595
Pair: NI-YUM, Correlation: 0.9248542784992794
Pair: NDSN-NSC, Correlation: 0.9716293404444893
Pair: NDSN-NOC, Correlation: 0.9540627551520116
Pair: NDSN-NVR, Correlation: 0.9483982070428548
Pair: NDSN-NXPI, Correlation: 0.9510933711959961
Pair: NDSN-ORLY, Correlation: 0.9370234744153652
Pair: NDSN-ODFL, Correlation: 0.9583559343161814
Pair: NDSN-PKG, Correlation: 0.9502290733951289
Pair: NDSN-PH, Correlation: 0.9049324870193841
Pair: NDSN-PAYX, Correlation: 0.9779112707635418
Pair: NDSN-PEP, Correlation: 0.97559970830874
Pair: NDSN-PNC, Correlation: 0.9332213384822762
Pair: NDSN-POOL, Correlation: 0.96513905956982
Pair: NDSN-PFG, Correlation: 0.9211440057614373
Pair: NDSN-PG, Correlation: 0.9746906568269863
Pair: NDSN-PGR, Correlation: 0.9093030956065201
Pair: NDSN-PLD, Correlation: 0.9771434159654194
Pair: NDSN-PEG, Correlation: 0.949822830485437
Pair: NDSN-PTC, Correlation: 0.9568159914793959
Pair: NDSN-PSA, Correlation: 0.9327584345570518
Pair: NDSN-QCOM, Correlation: 0.9181701130175747
Pair: NDSN-DGX, Correlation: 0.9787195724419574
Pair: NDSN-RJF, Correlation: 0.9547398984654053
Pair: NDSN-RTX, Correlation: 0.9012551164034179
Pair: NDSN-O, Correlation: 0.9010261218563945
Pair: NDSN-RF, Correlation: 0.9424209130411847
Pair: NDSN-RSG, Correlation: 0.9549042601379216
Pair: NDSN-RMD, Correlation: 0.9583688478233091
Pair: NDSN-RVTY, Correlation: 0.9257883718869603
Pair: NDSN-ROK, Correlation: 0.9834247965166979
Pair: NDSN-ROL, Correlation: 0.974567563455011
Pair: NDSN-ROP, Correlation: 0.9821487814147062
Pair: NDSN-ROST, Correlation: 0.9371265123264931
Pair: NDSN-SPGI, Correlation: 0.9842609743905604
Pair: NDSN-CRM, Correlation: 0.9515603326184235
Pair: NDSN-SBAC, Correlation: 0.9053323736215163
Pair: NDSN-STX, Correlation: 0.918557471604946
Pair: NDSN-SRE, Correlation: 0.9372774614443165
Pair: NDSN-NOW, Correlation: 0.9499640797237988
Pair: NDSN-SHW, Correlation: 0.9794356181757246
Pair: NDSN-SNA, Correlation: 0.9267874151960209
Pair: NDSN-SO, Correlation: 0.9506654026314483
Pair: NDSN-SBUX, Correlation: 0.9378285317801506
Pair: NDSN-STE, Correlation: 0.9778854989485284
Pair: NDSN-SYK, Correlation: 0.9700647512162247
Pair: NDSN-SNPS, Correlation: 0.9265758488631514
Pair: NDSN-SYY, Correlation: 0.9440880130083675
Pair: NDSN-TMUS, Correlation: 0.9666006677686116
Pair: NDSN-TTWO, Correlation: 0.9192169454440613
Pair: NDSN-TEL, Correlation: 0.9769716277333904
Pair: NDSN-TDY, Correlation: 0.9735064451180379
Pair: NDSN-TER, Correlation: 0.9491816942609886
Pair: NDSN-TXN, Correlation: 0.9838356681546069
Pair: NDSN-TMO, Correlation: 0.9817133664263284
Pair: NDSN-TJX, Correlation: 0.9423525972218355
Pair: NDSN-TSCO, Correlation: 0.9381968641889035
Pair: NDSN-TT, Correlation: 0.9010712416712889
Pair: NDSN-TDG, Correlation: 0.9120985656355985
Pair: NDSN-TRV, Correlation: 0.9379753964892374
Pair: NDSN-TYL, Correlation: 0.9615015829599309
Pair: NDSN-ULTA, Correlation: 0.918641532431436
Pair: NDSN-UNP, Correlation: 0.9812765963691145
Pair: NDSN-UPS, Correlation: 0.9375638040232795
Pair: NDSN-UNH, Correlation: 0.9760761340817706
Pair: NDSN-VRSN, Correlation: 0.9217957680541657
Pair: NDSN-VRSK, Correlation: 0.971112461544311
Pair: NDSN-VRTX, Correlation: 0.9169212358303699
Pair: NDSN-VICI, Correlation: 0.9125889379530076
Pair: NDSN-V, Correlation: 0.9765606553854747
Pair: NDSN-VMC, Correlation: 0.9493227655236663
Pair: NDSN-WRB, Correlation: 0.9507946801272926
Pair: NDSN-WMT, Correlation: 0.9416946143386267
Pair: NDSN-WM, Correlation: 0.9728012706846079
Pair: NDSN-WAT, Correlation: 0.9646029972485045
Pair: NDSN-WEC, Correlation: 0.9463884826437103
Pair: NDSN-WST, Correlation: 0.9575701892945461
Pair: NDSN-WTW, Correlation: 0.9744024638678872
Pair: NDSN-WDAY, Correlation: 0.9104903853532982
Pair: NDSN-XEL, Correlation: 0.9445778726216476
Pair: NDSN-XYL, Correlation: 0.9651234782679479
Pair: NDSN-YUM, Correlation: 0.9755919795842839
Pair: NDSN-ZTS, Correlation: 0.9676481271056875
Pair: NSC-NOC, Correlation: 0.9260092784136493
Pair: NSC-NVR, Correlation: 0.9109565255962505
Pair: NSC-NXPI, Correlation: 0.9156134095525179
Pair: NSC-ODFL, Correlation: 0.9136848331431895
Pair: NSC-PKG, Correlation: 0.9210318510436579
Pair: NSC-PAYX, Correlation: 0.9613377794729532
Pair: NSC-PEP, Correlation: 0.9460957696382898
Pair: NSC-PNC, Correlation: 0.953397181955536
Pair: NSC-POOL, Correlation: 0.9687570881856469
Pair: NSC-PG, Correlation: 0.9531994483002217
Pair: NSC-PLD, Correlation: 0.9712289726661448
Pair: NSC-PEG, Correlation: 0.9447479863723696
Pair: NSC-PTC, Correlation: 0.9397555746897043
Pair: NSC-PSA, Correlation: 0.9160772191282442
Pair: NSC-QCOM, Correlation: 0.9065445947836458
Pair: NSC-DGX, Correlation: 0.9578947253333507
Pair: NSC-RJF, Correlation: 0.9218375184339286
Pair: NSC-O, Correlation: 0.9154927755170376
Pair: NSC-RF, Correlation: 0.9431275340362704
Pair: NSC-RSG, Correlation: 0.9138039579234211
Pair: NSC-RMD, Correlation: 0.9670589566860069
Pair: NSC-RVTY, Correlation: 0.9583780159948285
Pair: NSC-ROK, Correlation: 0.9613885643635965
Pair: NSC-ROL, Correlation: 0.9540510254154732
Pair: NSC-ROP, Correlation: 0.9687496611544271
Pair: NSC-ROST, Correlation: 0.9341721455924754
Pair: NSC-SPGI, Correlation: 0.9722562184455577
Pair: NSC-CRM, Correlation: 0.9519979729878005
Pair: NSC-SBAC, Correlation: 0.9373880506834454
Pair: NSC-STX, Correlation: 0.9147409421645488
Pair: NSC-SRE, Correlation: 0.9237172716838665
Pair: NSC-NOW, Correlation: 0.9240246261259203
Pair: NSC-SHW, Correlation: 0.9669068547889056
Pair: NSC-SO, Correlation: 0.9206399282146238
Pair: NSC-SBUX, Correlation: 0.9446565781745757
Pair: NSC-STE, Correlation: 0.9768929164091648
Pair: NSC-SYK, Correlation: 0.9498970837725791
Pair: NSC-SYY, Correlation: 0.96090574499399
Pair: NSC-TMUS, Correlation: 0.940683565218759
Pair: NSC-TROW, Correlation: 0.9300176529767764
Pair: NSC-TTWO, Correlation: 0.9409680999159858
Pair: NSC-TGT, Correlation: 0.9234514326443217
Pair: NSC-TEL, Correlation: 0.9662450681448699
Pair: NSC-TDY, Correlation: 0.9827611137886628
Pair: NSC-TER, Correlation: 0.9516171641196938
Pair: NSC-TXN, Correlation: 0.9797016362600284
Pair: NSC-TMO, Correlation: 0.9725594890910135
Pair: NSC-TJX, Correlation: 0.9065471189715494
Pair: NSC-TRV, Correlation: 0.9073537460330906
Pair: NSC-TRMB, Correlation: 0.9249354258719118
Pair: NSC-TYL, Correlation: 0.9567484581995525
Pair: NSC-UDR, Correlation: 0.924343831248088
Pair: NSC-UNP, Correlation: 0.9856524234739614
Pair: NSC-UPS, Correlation: 0.939855420012243
Pair: NSC-UNH, Correlation: 0.950829836504443
Pair: NSC-VRSN, Correlation: 0.9468286796245663
Pair: NSC-VRSK, Correlation: 0.9476177632902586
Pair: NSC-V, Correlation: 0.9670220673707906
Pair: NSC-VMC, Correlation: 0.9072823778214694
Pair: NSC-WRB, Correlation: 0.9181487849509362
Pair: NSC-WMT, Correlation: 0.9153092359469824
Pair: NSC-WM, Correlation: 0.9447992232768277
Pair: NSC-WAT, Correlation: 0.9675539783082087
Pair: NSC-WEC, Correlation: 0.9539624418663203
Pair: NSC-WST, Correlation: 0.9396593303462345
Pair: NSC-WTW, Correlation: 0.965564842394319
Pair: NSC-WDAY, Correlation: 0.9386220812198364
Pair: NSC-XEL, Correlation: 0.956240003808661
Pair: NSC-XYL, Correlation: 0.9544765033507893
Pair: NSC-YUM, Correlation: 0.963695594195928
Pair: NSC-ZBRA, Correlation: 0.9367972090642308
Pair: NSC-ZTS, Correlation: 0.9680432706132454
Pair: NTRS-PNC, Correlation: 0.959373747930127
Pair: NTRS-O, Correlation: 0.9009978009493367
Pair: NTRS-RF, Correlation: 0.9191513628412376
Pair: NTRS-RVTY, Correlation: 0.9065173081300462
Pair: NTRS-SYY, Correlation: 0.9233305218710756
Pair: NTRS-TFC, Correlation: 0.9713109726455271
Pair: NTRS-TSN, Correlation: 0.9264125547977112
Pair: NTRS-USB, Correlation: 0.9552614805965121
Pair: NTRS-UDR, Correlation: 0.9359378958574631
Pair: NTRS-WAT, Correlation: 0.9074385189759853
Pair: NOC-NVR, Correlation: 0.9242564451597758
Pair: NOC-NXPI, Correlation: 0.9147984486500539
Pair: NOC-ORLY, Correlation: 0.9277172605666684
Pair: NOC-ODFL, Correlation: 0.9039282872848291
Pair: NOC-PKG, Correlation: 0.9455675105381504
Pair: NOC-PAYX, Correlation: 0.9637132092955251
Pair: NOC-PEP, Correlation: 0.9752675817007154
Pair: NOC-PNW, Correlation: 0.9055099043436885
Pair: NOC-PNC, Correlation: 0.9187708265413862
Pair: NOC-PFG, Correlation: 0.9390105882729163
Pair: NOC-PG, Correlation: 0.9389198605963088
Pair: NOC-PLD, Correlation: 0.9295168354869702
Pair: NOC-PRU, Correlation: 0.902189093450656
Pair: NOC-PEG, Correlation: 0.9590655282419863
Pair: NOC-PTC, Correlation: 0.9230556496144822
Pair: NOC-PSA, Correlation: 0.9401482744591219
Pair: NOC-DGX, Correlation: 0.9612800720139076
Pair: NOC-RJF, Correlation: 0.9410081683378613
Pair: NOC-RTX, Correlation: 0.9321374816832219
Pair: NOC-O, Correlation: 0.9264784003730565
Pair: NOC-RF, Correlation: 0.9356242526968016
Pair: NOC-RSG, Correlation: 0.9395005349772683
Pair: NOC-RMD, Correlation: 0.9056827585819739
Pair: NOC-ROK, Correlation: 0.9279709075464284
Pair: NOC-ROL, Correlation: 0.9520613622572119
Pair: NOC-ROP, Correlation: 0.9558102026511953
Pair: NOC-ROST, Correlation: 0.9318396272290697
Pair: NOC-SPGI, Correlation: 0.9374917660101209
Pair: NOC-SRE, Correlation: 0.9697066135249388
Pair: NOC-SHW, Correlation: 0.9324996986975992
Pair: NOC-SNA, Correlation: 0.933433388282517
Pair: NOC-SO, Correlation: 0.9462161696848644
Pair: NOC-SBUX, Correlation: 0.9156770809148876
Pair: NOC-STE, Correlation: 0.9412429409987879
Pair: NOC-SYK, Correlation: 0.9510933940808293
Pair: NOC-SYY, Correlation: 0.9590777551501479
Pair: NOC-TMUS, Correlation: 0.9434418381650178
Pair: NOC-TEL, Correlation: 0.9433396630831443
Pair: NOC-TDY, Correlation: 0.9365578865415666
Pair: NOC-TXN, Correlation: 0.951351712903108
Pair: NOC-TXT, Correlation: 0.9030360666179537
Pair: NOC-TMO, Correlation: 0.9336679749981805
Pair: NOC-TJX, Correlation: 0.9315333918401825
Pair: NOC-TRV, Correlation: 0.9577442430411693
Pair: NOC-TYL, Correlation: 0.9157688237752648
Pair: NOC-UDR, Correlation: 0.9003305550400967
Pair: NOC-ULTA, Correlation: 0.937919954640645
Pair: NOC-UNP, Correlation: 0.9483708629640618
Pair: NOC-UNH, Correlation: 0.9677301863338761
Pair: NOC-VLO, Correlation: 0.9267943679383202
Pair: NOC-VRSN, Correlation: 0.9077722418449901
Pair: NOC-VRSK, Correlation: 0.9347796625143967
Pair: NOC-VRTX, Correlation: 0.9236929547649947
Pair: NOC-V, Correlation: 0.9563839963896552
Pair: NOC-VMC, Correlation: 0.9419025389460187
Pair: NOC-WRB, Correlation: 0.9531794710878578
Pair: NOC-WMT, Correlation: 0.9061693467266558
Pair: NOC-WM, Correlation: 0.9591904154948394
Pair: NOC-WAT, Correlation: 0.9394011647701208
Pair: NOC-WEC, Correlation: 0.9526351305498761
Pair: NOC-WTW, Correlation: 0.9517247387532232
Pair: NOC-XEL, Correlation: 0.947216620033753
Pair: NOC-XYL, Correlation: 0.9206479657725593
Pair: NOC-YUM, Correlation: 0.9614484454385962
Pair: NRG-NVDA, Correlation: 0.9101370434982257
Pair: NRG-PH, Correlation: 0.9120581536649062
Pair: NRG-PGR, Correlation: 0.9186553738932753
Pair: NRG-PHM, Correlation: 0.9186047225859144
Pair: NRG-TT, Correlation: 0.9241864995296662
Pair: NRG-TDG, Correlation: 0.9140464521291797
Pair: NRG-URI, Correlation: 0.9098322454926367
Pair: NRG-VLTO, Correlation: 0.9327441375479354
Pair: NRG-VST, Correlation: 0.9211484178499938
Pair: NUE-ORLY, Correlation: 0.9449048155326524
Pair: NUE-ODFL, Correlation: 0.9469703845720973
Pair: NUE-ON, Correlation: 0.965013458454208
Pair: NUE-ORCL, Correlation: 0.9102927601902571
Pair: NUE-PCAR, Correlation: 0.9200597617992804
Pair: NUE-PANW, Correlation: 0.9262853999332452
Pair: NUE-PH, Correlation: 0.9162993455092804
Pair: NUE-PAYX, Correlation: 0.9077959697180543
Pair: NUE-PFG, Correlation: 0.913989386666928
Pair: NUE-PGR, Correlation: 0.9078614537481343
Pair: NUE-PWR, Correlation: 0.9399921152185241
Pair: NUE-RJF, Correlation: 0.9432460121333303
Pair: NUE-RSG, Correlation: 0.9284891867656612
Pair: NUE-SNA, Correlation: 0.9010094445431877
Pair: NUE-STLD, Correlation: 0.9814353138537667
Pair: NUE-SNPS, Correlation: 0.9478271296482366
Pair: NUE-TSCO, Correlation: 0.9353603385146982
Pair: NUE-URI, Correlation: 0.9256830227307121
Pair: NUE-UNH, Correlation: 0.9130617789512812
Pair: NUE-VLO, Correlation: 0.9143224210358405
Pair: NUE-WRB, Correlation: 0.9247618864212608
Pair: NUE-GWW, Correlation: 0.9360331418326173
Pair: NUE-WM, Correlation: 0.9129713315973386
Pair: NVDA-ORCL, Correlation: 0.9116579014056311
Pair: NVDA-PANW, Correlation: 0.9055416527647451
Pair: NVDA-PH, Correlation: 0.9147109776468546
Pair: NVDA-PHM, Correlation: 0.9368521471218558
Pair: NVDA-PWR, Correlation: 0.9275405334901743
Pair: NVDA-TT, Correlation: 0.9217680310715605
Pair: NVDA-URI, Correlation: 0.9235659921588443
Pair: NVDA-VLTO, Correlation: 0.9183046742217179
Pair: NVDA-VST, Correlation: 0.9369597792605556
Pair: NVDA-GWW, Correlation: 0.9100502975122982
Pair: NVR-NXPI, Correlation: 0.9546756001163
Pair: NVR-ORLY, Correlation: 0.9626797515265325
Pair: NVR-ODFL, Correlation: 0.9543450906116706
Pair: NVR-OKE, Correlation: 0.9081607324898241
Pair: NVR-ORCL, Correlation: 0.9644438640283288
Pair: NVR-OTIS, Correlation: 0.9020488491222753
Pair: NVR-PCAR, Correlation: 0.957043721332958
Pair: NVR-PKG, Correlation: 0.9696947400040039
Pair: NVR-PANW, Correlation: 0.9451294647117897
Pair: NVR-PH, Correlation: 0.9742841305248724
Pair: NVR-PAYX, Correlation: 0.952578998325453
Pair: NVR-PNR, Correlation: 0.9210534229349967
Pair: NVR-PEP, Correlation: 0.9361278608751181
Pair: NVR-PFG, Correlation: 0.9094836032479579
Pair: NVR-PG, Correlation: 0.9553414764287772
Pair: NVR-PGR, Correlation: 0.9715956707344009
Pair: NVR-PLD, Correlation: 0.9189714648576844
Pair: NVR-PEG, Correlation: 0.96094775960573
Pair: NVR-PTC, Correlation: 0.9668513105060694
Pair: NVR-PSA, Correlation: 0.9061832168532689
Pair: NVR-PHM, Correlation: 0.9610247273214569
Pair: NVR-PWR, Correlation: 0.9135468227727035
Pair: NVR-QCOM, Correlation: 0.9083511114729008
Pair: NVR-DGX, Correlation: 0.9355644154728336
Pair: NVR-RJF, Correlation: 0.9513577371990354
Pair: NVR-RTX, Correlation: 0.9098378099198193
Pair: NVR-RF, Correlation: 0.9094313380504644
Pair: NVR-RSG, Correlation: 0.980866549863991
Pair: NVR-ROK, Correlation: 0.9285928822429262
Pair: NVR-ROL, Correlation: 0.9624249046503209
Pair: NVR-ROP, Correlation: 0.9603070283811154
Pair: NVR-ROST, Correlation: 0.9369568012660309
Pair: NVR-SPGI, Correlation: 0.9604553608220731
Pair: NVR-CRM, Correlation: 0.9351701749651888
Pair: NVR-STX, Correlation: 0.9187596286999989
Pair: NVR-SRE, Correlation: 0.9063187984847446
Pair: NVR-NOW, Correlation: 0.9603305926344033
Pair: NVR-SHW, Correlation: 0.9683529331133963
Pair: NVR-SNA, Correlation: 0.9385794456730431
Pair: NVR-SO, Correlation: 0.9584159842134476
Pair: NVR-STLD, Correlation: 0.9212009466385008
Pair: NVR-STE, Correlation: 0.9395836739342893
Pair: NVR-SYK, Correlation: 0.9821094947917042
Pair: NVR-SNPS, Correlation: 0.9553533911360153
Pair: NVR-TMUS, Correlation: 0.9668607256406774
Pair: NVR-TEL, Correlation: 0.9490016157206749
Pair: NVR-TDY, Correlation: 0.9184308809766145
Pair: NVR-TER, Correlation: 0.9142810461621058
Pair: NVR-TXN, Correlation: 0.9529832868491336
Pair: NVR-TPL, Correlation: 0.9113726050144019
Pair: NVR-TMO, Correlation: 0.9291118789454378
Pair: NVR-TJX, Correlation: 0.975827894832164
Pair: NVR-TSCO, Correlation: 0.9502953624498266
Pair: NVR-TT, Correlation: 0.9718600819255732
Pair: NVR-TDG, Correlation: 0.9801266832143267
Pair: NVR-TRV, Correlation: 0.9577843813837126
Pair: NVR-TYL, Correlation: 0.9423758997690381
Pair: NVR-UNP, Correlation: 0.9381453690368926
Pair: NVR-URI, Correlation: 0.9576048102791963
Pair: NVR-UNH, Correlation: 0.9475871804543364
Pair: NVR-VLO, Correlation: 0.9037670166797582
Pair: NVR-VLTO, Correlation: 0.9223476153486106
Pair: NVR-VRSK, Correlation: 0.9668321540440357
Pair: NVR-VRTX, Correlation: 0.9538943837353928
Pair: NVR-V, Correlation: 0.9603629033556719
Pair: NVR-VMC, Correlation: 0.9708932400170245
Pair: NVR-WRB, Correlation: 0.9621065700458613
Pair: NVR-GWW, Correlation: 0.9389637002444614
Pair: NVR-WMT, Correlation: 0.973736195184743
Pair: NVR-WM, Correlation: 0.9753737499312638
Pair: NVR-WAT, Correlation: 0.9141654270410519
Pair: NVR-WELL, Correlation: 0.9248694391139824
Pair: NVR-WTW, Correlation: 0.9654132452522668
Pair: NVR-XYL, Correlation: 0.9517609340457204
Pair: NVR-YUM, Correlation: 0.9483955171457609
Pair: NXPI-ORLY, Correlation: 0.9343412584851746
Pair: NXPI-ODFL, Correlation: 0.9406572642761067
Pair: NXPI-ORCL, Correlation: 0.9163574707166804
Pair: NXPI-OTIS, Correlation: 0.9187873322446836
Pair: NXPI-PCAR, Correlation: 0.9196953880842922
Pair: NXPI-PKG, Correlation: 0.9613972494061888
Pair: NXPI-PANW, Correlation: 0.9164862668313221
Pair: NXPI-PH, Correlation: 0.9310038911901992
Pair: NXPI-PAYX, Correlation: 0.9517677073728553
Pair: NXPI-PNR, Correlation: 0.9256409334858443
Pair: NXPI-PEP, Correlation: 0.9408353253548133
Pair: NXPI-PM, Correlation: 0.908415610465665
Pair: NXPI-PNC, Correlation: 0.9202057349513201
Pair: NXPI-POOL, Correlation: 0.916890447767928
Pair: NXPI-PPG, Correlation: 0.9036332754467925
Pair: NXPI-PFG, Correlation: 0.9325405463648686
Pair: NXPI-PG, Correlation: 0.9439895731132412
Pair: NXPI-PGR, Correlation: 0.9081062524409047
Pair: NXPI-PLD, Correlation: 0.9236398649642155
Pair: NXPI-PRU, Correlation: 0.917437076012606
Pair: NXPI-PEG, Correlation: 0.9362512395550294
Pair: NXPI-PTC, Correlation: 0.9494526003874239
Pair: NXPI-PSA, Correlation: 0.931844067047313
Pair: NXPI-QCOM, Correlation: 0.9203185537169071
Pair: NXPI-DGX, Correlation: 0.942229164828313
Pair: NXPI-RJF, Correlation: 0.9494943860263142
Pair: NXPI-REGN, Correlation: 0.9144318115613733
Pair: NXPI-RF, Correlation: 0.9207671260357418
Pair: NXPI-RSG, Correlation: 0.9476273203931551
Pair: NXPI-ROK, Correlation: 0.9473045053104071
Pair: NXPI-ROL, Correlation: 0.939410380892599
Pair: NXPI-ROP, Correlation: 0.9478425793765238
Pair: NXPI-ROST, Correlation: 0.9199507144755564
Pair: NXPI-SPGI, Correlation: 0.9500136993993015
Pair: NXPI-CRM, Correlation: 0.9189133685536819
Pair: NXPI-STX, Correlation: 0.9413503934546585
Pair: NXPI-SRE, Correlation: 0.9117287776562318
Pair: NXPI-NOW, Correlation: 0.9338344915895205
Pair: NXPI-SHW, Correlation: 0.9635803717329843
Pair: NXPI-SNA, Correlation: 0.9585776707567657
Pair: NXPI-SO, Correlation: 0.9342465201585468
Pair: NXPI-SBUX, Correlation: 0.9023150439067575
Pair: NXPI-STE, Correlation: 0.9406919864955035
Pair: NXPI-SYK, Correlation: 0.957973824750239
Pair: NXPI-SNPS, Correlation: 0.9309452460931908
Pair: NXPI-TMUS, Correlation: 0.946186117276477
Pair: NXPI-TEL, Correlation: 0.977151390835175
Pair: NXPI-TDY, Correlation: 0.9089616570027483
Pair: NXPI-TER, Correlation: 0.9302439917912925
Pair: NXPI-TXN, Correlation: 0.9541976215936085
Pair: NXPI-TXT, Correlation: 0.9235966006481917
Pair: NXPI-TMO, Correlation: 0.9386895325797412
Pair: NXPI-TJX, Correlation: 0.9477317143831645
Pair: NXPI-TSCO, Correlation: 0.9413021887170148
Pair: NXPI-TT, Correlation: 0.9293327457700868
Pair: NXPI-TDG, Correlation: 0.9298723004866203
Pair: NXPI-TRV, Correlation: 0.9486171525438477
Pair: NXPI-TYL, Correlation: 0.9477456268638835
Pair: NXPI-UNP, Correlation: 0.9441437020352006
Pair: NXPI-URI, Correlation: 0.9198179579604214
Pair: NXPI-UNH, Correlation: 0.9376514136430845
Pair: NXPI-VRSK, Correlation: 0.9430911088815612
Pair: NXPI-VRTX, Correlation: 0.9054393702044362
Pair: NXPI-V, Correlation: 0.9411338794487034
Pair: NXPI-VMC, Correlation: 0.9747031948091415
Pair: NXPI-WRB, Correlation: 0.9316678684209613
Pair: NXPI-WMT, Correlation: 0.9231876205160903
Pair: NXPI-WM, Correlation: 0.9529853701575557
Pair: NXPI-WAT, Correlation: 0.9335767583888185
Pair: NXPI-WELL, Correlation: 0.9007326392807472
Pair: NXPI-WST, Correlation: 0.9225907210783217
Pair: NXPI-WTW, Correlation: 0.9457940729224883
Pair: NXPI-XYL, Correlation: 0.9468370267456403
Pair: NXPI-YUM, Correlation: 0.9384092065473301
Pair: ORLY-ODFL, Correlation: 0.9717430710420699
Pair: ORLY-ON, Correlation: 0.941913042645487
Pair: ORLY-OKE, Correlation: 0.9062673040447191
Pair: ORLY-ORCL, Correlation: 0.9625259550992481
Pair: ORLY-PCAR, Correlation: 0.9625105188927859
Pair: ORLY-PKG, Correlation: 0.9393219643001817
Pair: ORLY-PANW, Correlation: 0.969738389851396
Pair: ORLY-PH, Correlation: 0.961125306802082
Pair: ORLY-PAYX, Correlation: 0.9608236779040701
Pair: ORLY-PEP, Correlation: 0.954023569838994
Pair: ORLY-PFG, Correlation: 0.9252733404885821
Pair: ORLY-PG, Correlation: 0.9570836035532808
Pair: ORLY-PGR, Correlation: 0.9711228452919273
Pair: ORLY-PLD, Correlation: 0.912267517215737
Pair: ORLY-PEG, Correlation: 0.9383618251002571
Pair: ORLY-PTC, Correlation: 0.947603070284168
Pair: ORLY-PSA, Correlation: 0.9244160073432098
Pair: ORLY-PHM, Correlation: 0.9366375281706145
Pair: ORLY-PWR, Correlation: 0.9429051610837453
Pair: ORLY-DGX, Correlation: 0.9166171797153915
Pair: ORLY-RJF, Correlation: 0.9617656034983164
Pair: ORLY-RTX, Correlation: 0.9036078300760084
Pair: ORLY-REGN, Correlation: 0.9177481971579098
Pair: ORLY-RSG, Correlation: 0.9839464792785666
Pair: ORLY-ROK, Correlation: 0.9106824972716915
Pair: ORLY-ROL, Correlation: 0.945464047739772
Pair: ORLY-ROP, Correlation: 0.9376611218401649
Pair: ORLY-ROST, Correlation: 0.9005843115706608
Pair: ORLY-SPGI, Correlation: 0.933548931169875
Pair: ORLY-SRE, Correlation: 0.9142001499564907
Pair: ORLY-NOW, Correlation: 0.9271935729414755
Pair: ORLY-SHW, Correlation: 0.9393373583691385
Pair: ORLY-SNA, Correlation: 0.9576811415522812
Pair: ORLY-SO, Correlation: 0.9655776025511567
Pair: ORLY-STLD, Correlation: 0.9599684369694714
Pair: ORLY-STE, Correlation: 0.9278416205363814
Pair: ORLY-SYK, Correlation: 0.9569338065156502
Pair: ORLY-SNPS, Correlation: 0.974025587161698
Pair: ORLY-TMUS, Correlation: 0.9579655295613889
Pair: ORLY-TEL, Correlation: 0.921968549511187
Pair: ORLY-TXN, Correlation: 0.9284503068909709
Pair: ORLY-TPL, Correlation: 0.9309879139877887
Pair: ORLY-TMO, Correlation: 0.9293466008990743
Pair: ORLY-TJX, Correlation: 0.9763237917642396
Pair: ORLY-TSCO, Correlation: 0.9795350268757189
Pair: ORLY-TT, Correlation: 0.9558842310628741
Pair: ORLY-TDG, Correlation: 0.9688353259755695
Pair: ORLY-TRV, Correlation: 0.9556977866343059
Pair: ORLY-TYL, Correlation: 0.9037926916846434
Pair: ORLY-UNP, Correlation: 0.9246861267291895
Pair: ORLY-URI, Correlation: 0.9517278429385493
Pair: ORLY-UNH, Correlation: 0.9620799790659003
Pair: ORLY-VLO, Correlation: 0.9327368630944912
Pair: ORLY-VRSK, Correlation: 0.9553261978006315
Pair: ORLY-VRTX, Correlation: 0.9583824843854815
Pair: ORLY-VICI, Correlation: 0.9047554745206116
Pair: ORLY-V, Correlation: 0.9377389747154551
Pair: ORLY-VMC, Correlation: 0.957979795841283
Pair: ORLY-WRB, Correlation: 0.9776103262114064
Pair: ORLY-GWW, Correlation: 0.9671610804526516
Pair: ORLY-WMT, Correlation: 0.9533786262036519
Pair: ORLY-WM, Correlation: 0.9747460897570899
Pair: ORLY-WELL, Correlation: 0.9104889649110056
Pair: ORLY-WTW, Correlation: 0.9416379292726582
Pair: ORLY-XYL, Correlation: 0.9066212028895733
Pair: ORLY-YUM, Correlation: 0.9401520621285349
Pair: ODFL-ON, Correlation: 0.960682095362956
Pair: ODFL-ORCL, Correlation: 0.9453462856369946
Pair: ODFL-PCAR, Correlation: 0.9416745497863557
Pair: ODFL-PKG, Correlation: 0.9263851112575008
Pair: ODFL-PANW, Correlation: 0.9419353459702553
Pair: ODFL-PH, Correlation: 0.9482764768495595
Pair: ODFL-PAYX, Correlation: 0.9618093408270925
Pair: ODFL-PEP, Correlation: 0.9457626571212411
Pair: ODFL-POOL, Correlation: 0.9332348483269206
Pair: ODFL-PFG, Correlation: 0.902877400472559
Pair: ODFL-PG, Correlation: 0.9609232970011471
Pair: ODFL-PGR, Correlation: 0.945166112803806
Pair: ODFL-PLD, Correlation: 0.9476199517358116
Pair: ODFL-PEG, Correlation: 0.9128640281673951
Pair: ODFL-PTC, Correlation: 0.9494930684629106
Pair: ODFL-PSA, Correlation: 0.9073592175916647
Pair: ODFL-PHM, Correlation: 0.90985528766534
Pair: ODFL-PWR, Correlation: 0.9245203213927135
Pair: ODFL-QCOM, Correlation: 0.9301834792721402
Pair: ODFL-DGX, Correlation: 0.9277943687796226
Pair: ODFL-RJF, Correlation: 0.9602726606865125
Pair: ODFL-RSG, Correlation: 0.9698652317203725
Pair: ODFL-RMD, Correlation: 0.9073158799692683
Pair: ODFL-ROK, Correlation: 0.9454993725019156
Pair: ODFL-ROL, Correlation: 0.9418764043529192
Pair: ODFL-ROP, Correlation: 0.942496997839248
Pair: ODFL-SPGI, Correlation: 0.9545521207617348
Pair: ODFL-CRM, Correlation: 0.9074654046331126
Pair: ODFL-STX, Correlation: 0.913554498723779
Pair: ODFL-NOW, Correlation: 0.9540791887007072
Pair: ODFL-SHW, Correlation: 0.9537272606422867
Pair: ODFL-SNA, Correlation: 0.9239857210039704
Pair: ODFL-SO, Correlation: 0.944085679379029
Pair: ODFL-STLD, Correlation: 0.9425926479974441
Pair: ODFL-STE, Correlation: 0.950614873872224
Pair: ODFL-SYK, Correlation: 0.9493086933048817
Pair: ODFL-SNPS, Correlation: 0.9816864035341862
Pair: ODFL-TMUS, Correlation: 0.9529080852338933
Pair: ODFL-TEL, Correlation: 0.9396066213066161
Pair: ODFL-TDY, Correlation: 0.927686113850023
Pair: ODFL-TER, Correlation: 0.9290854163139391
Pair: ODFL-TSLA, Correlation: 0.9067264712966545
Pair: ODFL-TXN, Correlation: 0.9457430269134715
Pair: ODFL-TPL, Correlation: 0.9145016396352629
Pair: ODFL-TMO, Correlation: 0.9578492816772585
Pair: ODFL-TJX, Correlation: 0.9461467945749981
Pair: ODFL-TSCO, Correlation: 0.9737450816870226
Pair: ODFL-TT, Correlation: 0.9417914614471257
Pair: ODFL-TDG, Correlation: 0.9414425124986283
Pair: ODFL-TRV, Correlation: 0.9158830800328475
Pair: ODFL-TYL, Correlation: 0.9184264291125366
Pair: ODFL-UNP, Correlation: 0.9389857490283482
Pair: ODFL-URI, Correlation: 0.9397877398880796
Pair: ODFL-UNH, Correlation: 0.966686234250457
Pair: ODFL-VRSK, Correlation: 0.957091456106889
Pair: ODFL-VRTX, Correlation: 0.9256525019329369
Pair: ODFL-VICI, Correlation: 0.9117612463665169
Pair: ODFL-V, Correlation: 0.9375180490042069
Pair: ODFL-VMC, Correlation: 0.9375763571208532
Pair: ODFL-WRB, Correlation: 0.955999240560835
Pair: ODFL-GWW, Correlation: 0.9406767161596377
Pair: ODFL-WMT, Correlation: 0.9454397544115577
Pair: ODFL-WM, Correlation: 0.9654081640974426
Pair: ODFL-WAT, Correlation: 0.9113692058209669
Pair: ODFL-WST, Correlation: 0.9533021327689559
Pair: ODFL-WTW, Correlation: 0.9398800389935991
Pair: ODFL-XYL, Correlation: 0.9216781291354325
Pair: ODFL-YUM, Correlation: 0.937759098776225
Pair: ODFL-ZTS, Correlation: 0.9255089567417414
Pair: OMC-OKE, Correlation: 0.9030729824760335
Pair: OMC-PKG, Correlation: 0.9005621642798078
Pair: OMC-PM, Correlation: 0.9156306932105412
Pair: OMC-PFG, Correlation: 0.9217878712802
Pair: OMC-PRU, Correlation: 0.9191250091489906
Pair: OMC-RTX, Correlation: 0.9314543251851601
Pair: OMC-REG, Correlation: 0.929002203007306
Pair: OMC-SRE, Correlation: 0.9057393205892764
Pair: OMC-SNA, Correlation: 0.9449022870908194
Pair: OMC-TXT, Correlation: 0.9071217984640724
Pair: OMC-TJX, Correlation: 0.9004199458109157
Pair: OMC-TRV, Correlation: 0.9401825946513903
Pair: OMC-UHS, Correlation: 0.9291428103515327
Pair: OMC-VMC, Correlation: 0.9116167940181799
Pair: OMC-WAB, Correlation: 0.9141875592263045
Pair: OMC-WELL, Correlation: 0.9099469981338721
Pair: ON-ORCL, Correlation: 0.9029690150461266
Pair: ON-PANW, Correlation: 0.9124858036656102
Pair: ON-PAYX, Correlation: 0.9205281207429578
Pair: ON-PEP, Correlation: 0.9131740162265926
Pair: ON-PWR, Correlation: 0.9157208397207134
Pair: ON-RJF, Correlation: 0.9348819475704938
Pair: ON-RSG, Correlation: 0.9267149315049634
Pair: ON-STLD, Correlation: 0.9480462114454616
Pair: ON-SNPS, Correlation: 0.9490712677015327
Pair: ON-TMO, Correlation: 0.9022893969935006
Pair: ON-TSCO, Correlation: 0.9331592900583161
Pair: ON-UNH, Correlation: 0.9334249311944254
Pair: ON-WRB, Correlation: 0.9149485334543579
Pair: ON-GWW, Correlation: 0.910402467740274
Pair: ON-WM, Correlation: 0.9161131401628096
Pair: OKE-ORCL, Correlation: 0.9098320915160099
Pair: OKE-PKG, Correlation: 0.9276491560589362
Pair: OKE-PH, Correlation: 0.9144432115659724
Pair: OKE-PAYX, Correlation: 0.9023153701116393
Pair: OKE-PSX, Correlation: 0.900922792771072
Pair: OKE-PFG, Correlation: 0.9198059607434093
Pair: OKE-PGR, Correlation: 0.9092170928819826
Pair: OKE-PRU, Correlation: 0.9244347209131667
Pair: OKE-PEG, Correlation: 0.9178405991183287
Pair: OKE-PTC, Correlation: 0.902905660351498
Pair: OKE-RJF, Correlation: 0.9291947621557857
Pair: OKE-RTX, Correlation: 0.9551116041785478
Pair: OKE-RF, Correlation: 0.901028013002693
Pair: OKE-RSG, Correlation: 0.9194664800163801
Pair: OKE-SNA, Correlation: 0.9055758229481343
Pair: OKE-SO, Correlation: 0.9062889695257443
Pair: OKE-SYK, Correlation: 0.9074611526280901
Pair: OKE-TPL, Correlation: 0.9011491130512994
Pair: OKE-TXT, Correlation: 0.9187580842333298
Pair: OKE-TJX, Correlation: 0.9266102279288684
Pair: OKE-TDG, Correlation: 0.9172146077606295
Pair: OKE-TRV, Correlation: 0.9412191344919821
Pair: OKE-URI, Correlation: 0.9096006542685245
Pair: OKE-VLO, Correlation: 0.9289790731535318
Pair: OKE-VMC, Correlation: 0.9031907803860749
Pair: OKE-WRB, Correlation: 0.9261191982252006
Pair: OKE-GWW, Correlation: 0.9042051884364232
Pair: OKE-WM, Correlation: 0.9133122476703972
Pair: OKE-WELL, Correlation: 0.9375078962480302
Pair: ORCL-PCAR, Correlation: 0.9587431047346773
Pair: ORCL-PKG, Correlation: 0.9342837525055094
Pair: ORCL-PANW, Correlation: 0.9684366086616353
Pair: ORCL-PH, Correlation: 0.9826046928354356
Pair: ORCL-PAYX, Correlation: 0.9171391100186486
Pair: ORCL-PNR, Correlation: 0.930302979634817
Pair: ORCL-PG, Correlation: 0.9166560573631577
Pair: ORCL-PGR, Correlation: 0.9674251398221323
Pair: ORCL-PEG, Correlation: 0.915455077966443
Pair: ORCL-PTC, Correlation: 0.9304463792156675
Pair: ORCL-PHM, Correlation: 0.968429098868172
Pair: ORCL-PWR, Correlation: 0.9645893504879222
Pair: ORCL-RJF, Correlation: 0.9395512252579904
Pair: ORCL-RSG, Correlation: 0.9628121346439386
Pair: ORCL-ROL, Correlation: 0.9085085383659711
Pair: ORCL-SPGI, Correlation: 0.9077315002387802
Pair: ORCL-NOW, Correlation: 0.930489503889991
Pair: ORCL-SHW, Correlation: 0.9204778495109771
Pair: ORCL-SNA, Correlation: 0.9256272408047448
Pair: ORCL-SO, Correlation: 0.9334998092898508
Pair: ORCL-STLD, Correlation: 0.9408415306170997
Pair: ORCL-SYK, Correlation: 0.933546240677762
Pair: ORCL-SNPS, Correlation: 0.9581924883361476
Pair: ORCL-TMUS, Correlation: 0.9345742016366722
Pair: ORCL-TPL, Correlation: 0.9308999325870448
Pair: ORCL-TJX, Correlation: 0.9557201842234778
Pair: ORCL-TSCO, Correlation: 0.9531952704928585
Pair: ORCL-TT, Correlation: 0.9814931813401878
Pair: ORCL-TDG, Correlation: 0.9705087590850229
Pair: ORCL-TRV, Correlation: 0.9257463621019096
Pair: ORCL-URI, Correlation: 0.9778951328951925
Pair: ORCL-UNH, Correlation: 0.9109443301321657
Pair: ORCL-VRSK, Correlation: 0.9261607312651562
Pair: ORCL-VRTX, Correlation: 0.9285810510216888
Pair: ORCL-VMC, Correlation: 0.9334011638962149
Pair: ORCL-WRB, Correlation: 0.9358438315979446
Pair: ORCL-GWW, Correlation: 0.9691381601154121
Pair: ORCL-WMT, Correlation: 0.9577499842088112
Pair: ORCL-WM, Correlation: 0.9401388539729469
Pair: ORCL-WELL, Correlation: 0.9211811546304954
Pair: ORCL-WTW, Correlation: 0.9119345050244142
Pair: OTIS-ROP, Correlation: 0.9154035265919226
Pair: OTIS-SPG, Correlation: 0.9301483066773504
Pair: OTIS-SNA, Correlation: 0.9152590119689755
Pair: OTIS-SYK, Correlation: 0.9238170807819768
Pair: OTIS-TXT, Correlation: 0.9379842650066845
Pair: OTIS-TSCO, Correlation: 0.9304661635722646
Pair: OTIS-URI, Correlation: 0.9071782652187899
Pair: OTIS-VMC, Correlation: 0.9371192749112158
Pair: OTIS-WM, Correlation: 0.9180360221102329
Pair: OTIS-YUM, Correlation: 0.9418907186068199
Pair: PCAR-PKG, Correlation: 0.932044911103631
Pair: PCAR-PANW, Correlation: 0.9588114579394265
Pair: PCAR-PH, Correlation: 0.9818175677360049
Pair: PCAR-PAYX, Correlation: 0.9011370753041161
Pair: PCAR-PNR, Correlation: 0.9045902876851641
Pair: PCAR-PG, Correlation: 0.9148604145913025
Pair: PCAR-PGR, Correlation: 0.9679898855798756
Pair: PCAR-PTC, Correlation: 0.9395343254707319
Pair: PCAR-PHM, Correlation: 0.9722022574746693
Pair: PCAR-PWR, Correlation: 0.9541452242440429
Pair: PCAR-RJF, Correlation: 0.9292863387667418
Pair: PCAR-RSG, Correlation: 0.958383634836393
Pair: PCAR-ROL, Correlation: 0.9127567352454232
Pair: PCAR-ROP, Correlation: 0.9012439911960898
Pair: PCAR-NOW, Correlation: 0.9110009712064563
Pair: PCAR-SHW, Correlation: 0.9054085954773707
Pair: PCAR-SNA, Correlation: 0.9258906070462308
Pair: PCAR-SO, Correlation: 0.9157179986720523
Pair: PCAR-STLD, Correlation: 0.9517526780681979
Pair: PCAR-SYK, Correlation: 0.9335945430946109
Pair: PCAR-SNPS, Correlation: 0.9673701741938946
Pair: PCAR-TMUS, Correlation: 0.9282305671275922
Pair: PCAR-TJX, Correlation: 0.9544770015431528
Pair: PCAR-TSCO, Correlation: 0.9412466045077869
Pair: PCAR-TT, Correlation: 0.9665954653539717
Pair: PCAR-TDG, Correlation: 0.9768545502148667
Pair: PCAR-TRV, Correlation: 0.9281331364900257
Pair: PCAR-URI, Correlation: 0.9746043722205194
Pair: PCAR-UNH, Correlation: 0.9001368998103038
Pair: PCAR-VLO, Correlation: 0.9134540890195371
Pair: PCAR-VRSK, Correlation: 0.9200320079832628
Pair: PCAR-VRTX, Correlation: 0.9512800614302015
Pair: PCAR-V, Correlation: 0.9028014392992461
Pair: PCAR-VMC, Correlation: 0.9396170352426476
Pair: PCAR-WRB, Correlation: 0.9445501422666859
Pair: PCAR-GWW, Correlation: 0.9751002870803988
Pair: PCAR-WMT, Correlation: 0.9406031117103602
Pair: PCAR-WM, Correlation: 0.9386690860134353
Pair: PCAR-WTW, Correlation: 0.9095830919876805
Pair: PKG-PANW, Correlation: 0.9267288702684384
Pair: PKG-PH, Correlation: 0.9499202047831123
Pair: PKG-PAYX, Correlation: 0.9567700077233368
Pair: PKG-PNR, Correlation: 0.9322098345343093
Pair: PKG-PEP, Correlation: 0.9394519479011431
Pair: PKG-PM, Correlation: 0.9333770887707374
Pair: PKG-PNC, Correlation: 0.9330185634941962
Pair: PKG-PFG, Correlation: 0.9438619012189411
Pair: PKG-PG, Correlation: 0.9442918286459515
Pair: PKG-PGR, Correlation: 0.9419569297043093
Pair: PKG-PLD, Correlation: 0.9129892306159205
Pair: PKG-PRU, Correlation: 0.9458808938235669
Pair: PKG-PEG, Correlation: 0.9688346326256851
Pair: PKG-PTC, Correlation: 0.9623441920604776
Pair: PKG-PSA, Correlation: 0.9269763154402526
Pair: PKG-PHM, Correlation: 0.9177619782311425
Pair: PKG-DGX, Correlation: 0.9462344147943611
Pair: PKG-RJF, Correlation: 0.9618339115099184
Pair: PKG-RTX, Correlation: 0.9440785220600234
Pair: PKG-REGN, Correlation: 0.9046228158766046
Pair: PKG-RF, Correlation: 0.9444968255645949
Pair: PKG-RSG, Correlation: 0.9609144005058238
Pair: PKG-ROK, Correlation: 0.9293174385690677
Pair: PKG-ROL, Correlation: 0.957897437797276
Pair: PKG-ROP, Correlation: 0.9562914737097263
Pair: PKG-ROST, Correlation: 0.9380891506397094
Pair: PKG-SPGI, Correlation: 0.9472269886177173
Pair: PKG-CRM, Correlation: 0.9211088581708544
Pair: PKG-STX, Correlation: 0.9353012403258328
Pair: PKG-SRE, Correlation: 0.9421779688212141
Pair: PKG-NOW, Correlation: 0.9363711980610274
Pair: PKG-SHW, Correlation: 0.9617333698130089
Pair: PKG-SNA, Correlation: 0.959195221902759
Pair: PKG-SO, Correlation: 0.9511678394455524
Pair: PKG-STLD, Correlation: 0.9058993170034354
Pair: PKG-STE, Correlation: 0.9338516821169179
Pair: PKG-SYK, Correlation: 0.9711011415632372
Pair: PKG-SNPS, Correlation: 0.9166317786132132
Pair: PKG-SYY, Correlation: 0.9174178868828705
Pair: PKG-TMUS, Correlation: 0.9643477410517912
Pair: PKG-TEL, Correlation: 0.9640729922632014
Pair: PKG-TDY, Correlation: 0.9155804815039454
Pair: PKG-TXN, Correlation: 0.9526651612099512
Pair: PKG-TPL, Correlation: 0.9070151946611403
Pair: PKG-TXT, Correlation: 0.9373743387964627
Pair: PKG-TMO, Correlation: 0.922674068662009
Pair: PKG-TJX, Correlation: 0.9640530518020425
Pair: PKG-TSCO, Correlation: 0.9288171249880814
Pair: PKG-TT, Correlation: 0.9394434486308184
Pair: PKG-TDG, Correlation: 0.9458406222789159
Pair: PKG-TRV, Correlation: 0.977193943586122
Pair: PKG-TYL, Correlation: 0.9425102467486437
Pair: PKG-UNP, Correlation: 0.9512254614733103
Pair: PKG-URI, Correlation: 0.9351896436060375
Pair: PKG-UNH, Correlation: 0.9497292411399216
Pair: PKG-VLO, Correlation: 0.9209225276822337
Pair: PKG-VRSK, Correlation: 0.9497665892703205
Pair: PKG-VRTX, Correlation: 0.9389403060456496
Pair: PKG-V, Correlation: 0.9550155116498785
Pair: PKG-VMC, Correlation: 0.9686854134343212
Pair: PKG-WRB, Correlation: 0.9560307066532447
Pair: PKG-GWW, Correlation: 0.9083855654248112
Pair: PKG-WMT, Correlation: 0.956547673125373
Pair: PKG-WM, Correlation: 0.9625614903789225
Pair: PKG-WAT, Correlation: 0.9323856894266707
Pair: PKG-WEC, Correlation: 0.9004209185936715
Pair: PKG-WELL, Correlation: 0.9343627821781784
Pair: PKG-WTW, Correlation: 0.960176643660039
Pair: PKG-XYL, Correlation: 0.9397075539476993
Pair: PKG-YUM, Correlation: 0.9455973051055986
Pair: PANW-PH, Correlation: 0.9702093164732564
Pair: PANW-PAYX, Correlation: 0.9130119985124202
Pair: PANW-PG, Correlation: 0.9013761402495915
Pair: PANW-PGR, Correlation: 0.9646343141857004
Pair: PANW-PTC, Correlation: 0.9178744314466585
Pair: PANW-PHM, Correlation: 0.9544876748581256
Pair: PANW-PWR, Correlation: 0.969056941506988
Pair: PANW-RJF, Correlation: 0.9350166418516408
Pair: PANW-REGN, Correlation: 0.9113220165074324
Pair: PANW-RSG, Correlation: 0.9642086886735876
Pair: PANW-NOW, Correlation: 0.9230996683175965
Pair: PANW-SNA, Correlation: 0.9410424164368529
Pair: PANW-SO, Correlation: 0.9280899508638166
Pair: PANW-STLD, Correlation: 0.9482641916230136
Pair: PANW-SYK, Correlation: 0.9153238532259579
Pair: PANW-SNPS, Correlation: 0.9704828798821452
Pair: PANW-TMUS, Correlation: 0.9145575386806946
Pair: PANW-TJX, Correlation: 0.9559254856178006
Pair: PANW-TSCO, Correlation: 0.9548652491365281
Pair: PANW-TT, Correlation: 0.9625066920985138
Pair: PANW-TDG, Correlation: 0.9655134144595708
Pair: PANW-TRV, Correlation: 0.9371017193851935
Pair: PANW-URI, Correlation: 0.9689312703555931
Pair: PANW-UNH, Correlation: 0.9089713023585991
Pair: PANW-VRSK, Correlation: 0.9170554684495787
Pair: PANW-VRTX, Correlation: 0.9330368147445263
Pair: PANW-VMC, Correlation: 0.9303074327664214
Pair: PANW-WRB, Correlation: 0.9435391316887064
Pair: PANW-GWW, Correlation: 0.974571240195287
Pair: PANW-WMT, Correlation: 0.9285829911112561
Pair: PANW-WM, Correlation: 0.9356800377120318
Pair: PANW-WELL, Correlation: 0.9052436122701093
Pair: PH-PAYX, Correlation: 0.9179099070594301
Pair: PH-PNR, Correlation: 0.9365312551827665
Pair: PH-PG, Correlation: 0.9184920506556027
Pair: PH-PGR, Correlation: 0.9791824422784868
Pair: PH-PEG, Correlation: 0.9147929220810734
Pair: PH-PTC, Correlation: 0.9510494273814033
Pair: PH-PHM, Correlation: 0.9826769200458303
Pair: PH-PWR, Correlation: 0.9665630803453766
Pair: PH-QCOM, Correlation: 0.9079437782288643
Pair: PH-RJF, Correlation: 0.9477402715274468
Pair: PH-RSG, Correlation: 0.9689449170723675
Pair: PH-ROL, Correlation: 0.9201095715811227
Pair: PH-ROP, Correlation: 0.905428415186868
Pair: PH-SPGI, Correlation: 0.9094143462846028
Pair: PH-STX, Correlation: 0.9070768501463015
Pair: PH-NOW, Correlation: 0.9375555814447157
Pair: PH-SHW, Correlation: 0.9274579961702607
Pair: PH-SNA, Correlation: 0.9292771710753404
Pair: PH-SO, Correlation: 0.9318339568147238
Pair: PH-STLD, Correlation: 0.9514414968869166
Pair: PH-SYK, Correlation: 0.9426054592139905
Pair: PH-SNPS, Correlation: 0.9660203566462273
Pair: PH-TMUS, Correlation: 0.9439349603671547
Pair: PH-TEL, Correlation: 0.905934137443021
Pair: PH-TXN, Correlation: 0.901844963710012
Pair: PH-TPL, Correlation: 0.9242339351145046
Pair: PH-TJX, Correlation: 0.9614125653735452
Pair: PH-TSCO, Correlation: 0.9519860934444281
Pair: PH-TT, Correlation: 0.9904495087429448
Pair: PH-TDG, Correlation: 0.9838540191464998
Pair: PH-TRV, Correlation: 0.9369297603696018
Pair: PH-URI, Correlation: 0.9930951624890718
Pair: PH-UNH, Correlation: 0.9139350468859736
Pair: PH-VLO, Correlation: 0.9001556549047606
Pair: PH-VRSK, Correlation: 0.9269203811057123
Pair: PH-VRTX, Correlation: 0.93705078036006
Pair: PH-V, Correlation: 0.9061615810360206
Pair: PH-VMC, Correlation: 0.9452536245587263
Pair: PH-WRB, Correlation: 0.9489996358406272
Pair: PH-GWW, Correlation: 0.978466460429174
Pair: PH-WMT, Correlation: 0.9590148236542637
Pair: PH-WM, Correlation: 0.9470869715421164
Pair: PH-WELL, Correlation: 0.9128221176081878
Pair: PH-WTW, Correlation: 0.9209548289162032
Pair: PH-XYL, Correlation: 0.9023222525074436
Pair: PAYX-PEP, Correlation: 0.9817084018921353
Pair: PAYX-PM, Correlation: 0.9013891860340985
Pair: PAYX-PNC, Correlation: 0.9354595580024632
Pair: PAYX-POOL, Correlation: 0.9489855424686948
Pair: PAYX-PFG, Correlation: 0.9383317160141628
Pair: PAYX-PG, Correlation: 0.9779373693814803
Pair: PAYX-PGR, Correlation: 0.9309686517288469
Pair: PAYX-PLD, Correlation: 0.973667242312006
Pair: PAYX-PRU, Correlation: 0.9060019242961673
Pair: PAYX-PEG, Correlation: 0.9716285489204951
Pair: PAYX-PTC, Correlation: 0.9546968349163378
Pair: PAYX-PSA, Correlation: 0.9673455695530111
Pair: PAYX-QCOM, Correlation: 0.9173170250975088
Pair: PAYX-DGX, Correlation: 0.9690119173171765
Pair: PAYX-RJF, Correlation: 0.9752811740869821
Pair: PAYX-RTX, Correlation: 0.9294201986270495
Pair: PAYX-O, Correlation: 0.911308424932336
Pair: PAYX-RF, Correlation: 0.9511696226561079
Pair: PAYX-RSG, Correlation: 0.9735233154590458
Pair: PAYX-RMD, Correlation: 0.9463872145969863
Pair: PAYX-RVTY, Correlation: 0.9109235326328177
Pair: PAYX-ROK, Correlation: 0.9573617327454338
Pair: PAYX-ROL, Correlation: 0.9642112366877587
Pair: PAYX-ROP, Correlation: 0.9726017175189906
Pair: PAYX-ROST, Correlation: 0.9283167553549354
Pair: PAYX-SPGI, Correlation: 0.9731225373885676
Pair: PAYX-CRM, Correlation: 0.9261371981325135
Pair: PAYX-STX, Correlation: 0.9269834641188239
Pair: PAYX-SRE, Correlation: 0.9537203191049308
Pair: PAYX-NOW, Correlation: 0.942205532816398
Pair: PAYX-SHW, Correlation: 0.9740404954662434
Pair: PAYX-SNA, Correlation: 0.9464467022968002
Pair: PAYX-SO, Correlation: 0.9746372795991667
Pair: PAYX-SBUX, Correlation: 0.9262075779436646
Pair: PAYX-STLD, Correlation: 0.9065336945301218
Pair: PAYX-STE, Correlation: 0.9793450439814435
Pair: PAYX-SYK, Correlation: 0.9705327696489937
Pair: PAYX-SNPS, Correlation: 0.937913738577711
Pair: PAYX-SYY, Correlation: 0.949218974627525
Pair: PAYX-TMUS, Correlation: 0.9689515732464096
Pair: PAYX-TEL, Correlation: 0.9728121219436484
Pair: PAYX-TDY, Correlation: 0.9627200870381777
Pair: PAYX-TER, Correlation: 0.9318964604510164
Pair: PAYX-TXN, Correlation: 0.9790222379111666
Pair: PAYX-TPL, Correlation: 0.9227922952242174
Pair: PAYX-TXT, Correlation: 0.9093186231727471
Pair: PAYX-TMO, Correlation: 0.9775014564265404
Pair: PAYX-TJX, Correlation: 0.9558709398040669
Pair: PAYX-TSCO, Correlation: 0.9590004955736832
Pair: PAYX-TT, Correlation: 0.9181310579571936
Pair: PAYX-TDG, Correlation: 0.9292401807206616
Pair: PAYX-TRV, Correlation: 0.9609808148167274
Pair: PAYX-TYL, Correlation: 0.9518210668210201
Pair: PAYX-UDR, Correlation: 0.9086036547487842
Pair: PAYX-ULTA, Correlation: 0.9288929145170312
Pair: PAYX-UNP, Correlation: 0.9773181704433518
Pair: PAYX-UPS, Correlation: 0.9277138338937926
Pair: PAYX-URI, Correlation: 0.9000253033476437
Pair: PAYX-UNH, Correlation: 0.9888185034494942
Pair: PAYX-VLO, Correlation: 0.9065177108220196
Pair: PAYX-VRSK, Correlation: 0.9703629261833985
Pair: PAYX-VRTX, Correlation: 0.9224723188747564
Pair: PAYX-VICI, Correlation: 0.9450454808892113
Pair: PAYX-V, Correlation: 0.9687975526637878
Pair: PAYX-VMC, Correlation: 0.9593218879447558
Pair: PAYX-WRB, Correlation: 0.9749078121876441
Pair: PAYX-WMT, Correlation: 0.9463702196679925
Pair: PAYX-WM, Correlation: 0.9860198214965978
Pair: PAYX-WAT, Correlation: 0.9653586561919559
Pair: PAYX-WEC, Correlation: 0.9407950468484194
Pair: PAYX-WELL, Correlation: 0.9168369804108988
Pair: PAYX-WST, Correlation: 0.9425156378083576
Pair: PAYX-WTW, Correlation: 0.9687891605034383
Pair: PAYX-XEL, Correlation: 0.9345073911712823
Pair: PAYX-XYL, Correlation: 0.9496221556411604
Pair: PAYX-YUM, Correlation: 0.9765049192330565
Pair: PAYX-ZTS, Correlation: 0.9487925843307159
Pair: PAYC-RVTY, Correlation: 0.9278694157453161
Pair: PAYC-SBAC, Correlation: 0.9366310366263563
Pair: PAYC-TROW, Correlation: 0.905188220492928
Pair: PAYC-ZBRA, Correlation: 0.9017456515959588
Pair: PNR-PTC, Correlation: 0.9063202335635617
Pair: PNR-PHM, Correlation: 0.9201497569928659
Pair: PNR-STX, Correlation: 0.9363665438018
Pair: PNR-SHW, Correlation: 0.9160395070064921
Pair: PNR-SNA, Correlation: 0.9148696897327472
Pair: PNR-SYK, Correlation: 0.9009954863360403
Pair: PNR-TEL, Correlation: 0.9132373974884512
Pair: PNR-TJX, Correlation: 0.9164779818255142
Pair: PNR-TSCO, Correlation: 0.9005169914454414
Pair: PNR-TT, Correlation: 0.9320292204936621
Pair: PNR-TDG, Correlation: 0.9084557919558763
Pair: PNR-TRV, Correlation: 0.9023041326659796
Pair: PNR-URI, Correlation: 0.9353360202573192
Pair: PNR-VMC, Correlation: 0.9120237562088909
Pair: PNR-WMT, Correlation: 0.9112245184357357
Pair: PNR-WELL, Correlation: 0.9023583348739554
Pair: PEP-PM, Correlation: 0.9003542051182784
Pair: PEP-PNC, Correlation: 0.9059700819763764
Pair: PEP-POOL, Correlation: 0.9332685424891872
Pair: PEP-PFG, Correlation: 0.9374057276656389
Pair: PEP-PG, Correlation: 0.9784612352050192
Pair: PEP-PGR, Correlation: 0.9072141421757167
Pair: PEP-PLD, Correlation: 0.9645770305519877
Pair: PEP-PEG, Correlation: 0.956624138586086
Pair: PEP-PTC, Correlation: 0.9336497922569633
Pair: PEP-PSA, Correlation: 0.9567702069071955
Pair: PEP-DGX, Correlation: 0.9684166225612766
Pair: PEP-RJF, Correlation: 0.9495533481206375
Pair: PEP-RTX, Correlation: 0.9198459507574535
Pair: PEP-O, Correlation: 0.9250200263536609
Pair: PEP-REGN, Correlation: 0.9017652405712935
Pair: PEP-RF, Correlation: 0.9248308190835353
Pair: PEP-RSG, Correlation: 0.9556708359533382
Pair: PEP-RMD, Correlation: 0.9401390013004614
Pair: PEP-RVTY, Correlation: 0.9032105906408432
Pair: PEP-ROK, Correlation: 0.9591001917532873
Pair: PEP-ROL, Correlation: 0.9633579492115675
Pair: PEP-ROP, Correlation: 0.9704085498702604
Pair: PEP-ROST, Correlation: 0.9264626846309282
Pair: PEP-SPGI, Correlation: 0.9608990630716435
Pair: PEP-CRM, Correlation: 0.9102132620894055
Pair: PEP-SRE, Correlation: 0.9676466189861932
Pair: PEP-NOW, Correlation: 0.9102245131314222
Pair: PEP-SHW, Correlation: 0.9567034125672149
Pair: PEP-SJM, Correlation: 0.9026728832595062
Pair: PEP-SNA, Correlation: 0.9442606452794671
Pair: PEP-SO, Correlation: 0.9675152223885544
Pair: PEP-SBUX, Correlation: 0.9413252736576432
Pair: PEP-STE, Correlation: 0.9711161602698443
Pair: PEP-SYK, Correlation: 0.9625496138181348
Pair: PEP-SNPS, Correlation: 0.9186342088183016
Pair: PEP-SYY, Correlation: 0.947642755173017
Pair: PEP-TMUS, Correlation: 0.957707418076422
Pair: PEP-TEL, Correlation: 0.9607908751484651
Pair: PEP-TDY, Correlation: 0.9586662865824065
Pair: PEP-TER, Correlation: 0.9137084864640992
Pair: PEP-TXN, Correlation: 0.9687551381060829
Pair: PEP-TMO, Correlation: 0.9720562313842568
Pair: PEP-TJX, Correlation: 0.9471854542442207
Pair: PEP-TSCO, Correlation: 0.9426328054927446
Pair: PEP-TDG, Correlation: 0.9070195478204919
Pair: PEP-TRV, Correlation: 0.9517942136698916
Pair: PEP-TYL, Correlation: 0.9386693478254297
Pair: PEP-UDR, Correlation: 0.9024745515513019
Pair: PEP-ULTA, Correlation: 0.9454564678513654
Pair: PEP-UNP, Correlation: 0.9677396870246634
Pair: PEP-UPS, Correlation: 0.929626348809384
Pair: PEP-UNH, Correlation: 0.9802193327654373
Pair: PEP-VLO, Correlation: 0.9041627619978
Pair: PEP-VRSN, Correlation: 0.916891734850022
Pair: PEP-VRSK, Correlation: 0.9631268547970959
Pair: PEP-VRTX, Correlation: 0.9297077739268471
Pair: PEP-VICI, Correlation: 0.9438719162412839
Pair: PEP-V, Correlation: 0.9680027231585403
Pair: PEP-VMC, Correlation: 0.9495773220604045
Pair: PEP-WRB, Correlation: 0.9598517865379397
Pair: PEP-WMT, Correlation: 0.9293709872689223
Pair: PEP-WM, Correlation: 0.9731358929998313
Pair: PEP-WAT, Correlation: 0.9484033017490433
Pair: PEP-WEC, Correlation: 0.9579554623587337
Pair: PEP-WST, Correlation: 0.9331002158381562
Pair: PEP-WTW, Correlation: 0.9630827392211321
Pair: PEP-XEL, Correlation: 0.9522803848571312
Pair: PEP-XYL, Correlation: 0.9358636179797931
Pair: PEP-YUM, Correlation: 0.9778311964204843
Pair: PEP-ZTS, Correlation: 0.9429411176534215
Pair: PFE-O, Correlation: 0.910081818756353
Pair: PFE-RVTY, Correlation: 0.931963372575301
Pair: PFE-SBAC, Correlation: 0.9170043777259291
Pair: PFE-UDR, Correlation: 0.9159929721379036
Pair: PFE-XEL, Correlation: 0.9029443848535443
Pair: PM-PFG, Correlation: 0.9258175224882572
Pair: PM-PRU, Correlation: 0.915958463174454
Pair: PM-PEG, Correlation: 0.9057832565462954
Pair: PM-PSA, Correlation: 0.9253030927818892
Pair: PM-DGX, Correlation: 0.9006129046986082
Pair: PM-RJF, Correlation: 0.9158406403873502
Pair: PM-RTX, Correlation: 0.9160098555822845
Pair: PM-SRE, Correlation: 0.9092179754735981
Pair: PM-SNA, Correlation: 0.9321736741260556
Pair: PM-SO, Correlation: 0.9210375393961666
Pair: PM-TEL, Correlation: 0.9005109711151635
Pair: PM-TJX, Correlation: 0.9074632869436883
Pair: PM-TRV, Correlation: 0.9408647994337666
Pair: PM-VMC, Correlation: 0.9156039952018484
Pair: PM-WELL, Correlation: 0.9150035726571114
Pair: PSX-TRV, Correlation: 0.900950653325916
Pair: PSX-VLO, Correlation: 0.9575647239996777
Pair: PNW-PPL, Correlation: 0.9280536347828389
Pair: PNW-PEG, Correlation: 0.907595354204492
Pair: PNW-O, Correlation: 0.9399466152776841
Pair: PNW-ROST, Correlation: 0.9244423974334488
Pair: PNW-SRE, Correlation: 0.9254000983511108
Pair: PNW-SYY, Correlation: 0.9123006534612482
Pair: PNW-WEC, Correlation: 0.9198765112276494
Pair: PNW-XEL, Correlation: 0.9113118699772821
Pair: PNC-POOL, Correlation: 0.917051355186541
Pair: PNC-PFG, Correlation: 0.9035739339021716
Pair: PNC-PLD, Correlation: 0.9236117578378721
Pair: PNC-PRU, Correlation: 0.9341969808394361
Pair: PNC-PEG, Correlation: 0.9365348246126298
Pair: PNC-PTC, Correlation: 0.9099826628380988
Pair: PNC-PSA, Correlation: 0.9209297476843754
Pair: PNC-DGX, Correlation: 0.945538011483616
Pair: PNC-RJF, Correlation: 0.9240358843687512
Pair: PNC-RTX, Correlation: 0.9166327740959326
Pair: PNC-O, Correlation: 0.9062955482265478
Pair: PNC-RF, Correlation: 0.975753777441386
Pair: PNC-RMD, Correlation: 0.9205065177973486
Pair: PNC-RVTY, Correlation: 0.9280940553956667
Pair: PNC-ROK, Correlation: 0.9275289387177704
Pair: PNC-ROL, Correlation: 0.9087720197938584
Pair: PNC-ROP, Correlation: 0.9274944474662946
Pair: PNC-ROST, Correlation: 0.9162455568268462
Pair: PNC-SPGI, Correlation: 0.9318536044602169
Pair: PNC-CRM, Correlation: 0.9066086622178474
Pair: PNC-STX, Correlation: 0.9213812395220298
Pair: PNC-SRE, Correlation: 0.9087954441144656
Pair: PNC-SHW, Correlation: 0.9408505956675823
Pair: PNC-SBUX, Correlation: 0.9096042706705976
Pair: PNC-STE, Correlation: 0.924824860382738
Pair: PNC-SYK, Correlation: 0.923535385820961
Pair: PNC-SYY, Correlation: 0.948654637912649
Pair: PNC-TMUS, Correlation: 0.9059370134876691
Pair: PNC-TROW, Correlation: 0.9091211139857666
Pair: PNC-TTWO, Correlation: 0.9092352286573878
Pair: PNC-TEL, Correlation: 0.9637075272073379
Pair: PNC-TDY, Correlation: 0.927599902202747
Pair: PNC-TER, Correlation: 0.9042746823066115
Pair: PNC-TXN, Correlation: 0.9491612933640492
Pair: PNC-TXT, Correlation: 0.9094079236852114
Pair: PNC-TMO, Correlation: 0.9180107183969795
Pair: PNC-TRV, Correlation: 0.9203361394264357
Pair: PNC-TRMB, Correlation: 0.9042407887469456
Pair: PNC-TFC, Correlation: 0.9369907704877443
Pair: PNC-TYL, Correlation: 0.9365418902447719
Pair: PNC-USB, Correlation: 0.912179490668541
Pair: PNC-UDR, Correlation: 0.9426804991354737
Pair: PNC-UNP, Correlation: 0.9428561814232891
Pair: PNC-UNH, Correlation: 0.9158288041279572
Pair: PNC-V, Correlation: 0.923271296710467
Pair: PNC-VMC, Correlation: 0.912180151832645
Pair: PNC-WM, Correlation: 0.9141865561697025
Pair: PNC-WAT, Correlation: 0.9640474958169128
Pair: PNC-WEC, Correlation: 0.9087778074119195
Pair: PNC-WTW, Correlation: 0.9329726849465073
Pair: PNC-XEL, Correlation: 0.9083190188980735
Pair: PNC-XYL, Correlation: 0.932544026209039
Pair: PNC-YUM, Correlation: 0.9288952545547278
Pair: PNC-ZBRA, Correlation: 0.9051771040045044
Pair: POOL-PG, Correlation: 0.9485477727706261
Pair: POOL-PLD, Correlation: 0.9815558803267861
Pair: POOL-PEG, Correlation: 0.9039489284926566
Pair: POOL-PTC, Correlation: 0.9084259996330732
Pair: POOL-PSA, Correlation: 0.9149280211209662
Pair: POOL-QCOM, Correlation: 0.9257709189477596
Pair: POOL-DGX, Correlation: 0.9489948958800073
Pair: POOL-RJF, Correlation: 0.902583791353654
Pair: POOL-RF, Correlation: 0.903518042285717
Pair: POOL-RSG, Correlation: 0.9005724522214305
Pair: POOL-RMD, Correlation: 0.9743800177294369
Pair: POOL-RVTY, Correlation: 0.9634128793814732
Pair: POOL-ROK, Correlation: 0.9637595213459526
Pair: POOL-ROL, Correlation: 0.9292343072117979
Pair: POOL-ROP, Correlation: 0.948041946896247
Pair: POOL-SPGI, Correlation: 0.9700060586000707
Pair: POOL-CRM, Correlation: 0.9418874433903144
Pair: POOL-SBAC, Correlation: 0.9295909440263688
Pair: POOL-STX, Correlation: 0.9107450688962665
Pair: POOL-NOW, Correlation: 0.9287887968534375
Pair: POOL-SHW, Correlation: 0.9628480788325146
Pair: POOL-SO, Correlation: 0.9038213471993792
Pair: POOL-SBUX, Correlation: 0.9322844803525671
Pair: POOL-STE, Correlation: 0.9740156049719223
Pair: POOL-SYK, Correlation: 0.9243956770879336
Pair: POOL-SYY, Correlation: 0.9091870712859812
Pair: POOL-TMUS, Correlation: 0.9248752778153195
Pair: POOL-TROW, Correlation: 0.9382809559371657
Pair: POOL-TTWO, Correlation: 0.9110595716764186
Pair: POOL-TGT, Correlation: 0.9652326633513614
Pair: POOL-TEL, Correlation: 0.9532677985341026
Pair: POOL-TDY, Correlation: 0.9668142558963142
Pair: POOL-TER, Correlation: 0.9728045270743672
Pair: POOL-TSLA, Correlation: 0.9329275243895877
Pair: POOL-TXN, Correlation: 0.9656921682148915
Pair: POOL-TMO, Correlation: 0.9806298485705888
Pair: POOL-TSCO, Correlation: 0.9102292026778389
Pair: POOL-TRMB, Correlation: 0.9336017513534078
Pair: POOL-TYL, Correlation: 0.9555477319013432
Pair: POOL-UNP, Correlation: 0.9578412204380506
Pair: POOL-UPS, Correlation: 0.9611175589485705
Pair: POOL-UNH, Correlation: 0.9404718937033507
Pair: POOL-VRSN, Correlation: 0.9150858478424587
Pair: POOL-VRSK, Correlation: 0.938174831024456
Pair: POOL-V, Correlation: 0.9404033016741526
Pair: POOL-WM, Correlation: 0.9268421883427459
Pair: POOL-WAT, Correlation: 0.9553149274096092
Pair: POOL-WEC, Correlation: 0.9225144098591312
Pair: POOL-WST, Correlation: 0.9846789388242283
Pair: POOL-WTW, Correlation: 0.9352765350182743
Pair: POOL-WDAY, Correlation: 0.9159201495282877
Pair: POOL-XEL, Correlation: 0.9271808276104808
Pair: POOL-XYL, Correlation: 0.9288592232194643
Pair: POOL-YUM, Correlation: 0.9371218182881627
Pair: POOL-ZBRA, Correlation: 0.9546081463656068
Pair: POOL-ZTS, Correlation: 0.9809176728654092
Pair: PPG-O, Correlation: 0.9023609350509638
Pair: PPG-ROK, Correlation: 0.9135106436719915
Pair: PPG-SRE, Correlation: 0.9046714515462349
Pair: PPG-SWKS, Correlation: 0.9060362019640338
Pair: PPG-SBUX, Correlation: 0.9405684525093686
Pair: PPG-TEL, Correlation: 0.9279517352289302
Pair: PPG-UNP, Correlation: 0.9092793235702595
Pair: PPG-UPS, Correlation: 0.9051064005784873
Pair: PPG-WY, Correlation: 0.9273896916456521
Pair: PPG-ZBH, Correlation: 0.9344950494335094
Pair: PPL-O, Correlation: 0.9049022142987417
Pair: PPL-REG, Correlation: 0.9165774410210604
Pair: PPL-UHS, Correlation: 0.9052732172187308
Pair: PPL-VLTO, Correlation: 0.9058129268938531
Pair: PFG-PG, Correlation: 0.9016551198465598
Pair: PFG-PRU, Correlation: 0.9627173327113099
Pair: PFG-PEG, Correlation: 0.912715378808008
Pair: PFG-PTC, Correlation: 0.9124813906514658
Pair: PFG-PSA, Correlation: 0.924808822145495
Pair: PFG-DGX, Correlation: 0.9203106854814237
Pair: PFG-RJF, Correlation: 0.9657336903718626
Pair: PFG-RTX, Correlation: 0.9449632303337572
Pair: PFG-RF, Correlation: 0.944526529658241
Pair: PFG-RSG, Correlation: 0.923405060915365
Pair: PFG-ROK, Correlation: 0.9100310809060534
Pair: PFG-ROP, Correlation: 0.9007580089293731
Pair: PFG-SRE, Correlation: 0.9297503075456274
Pair: PFG-SNA, Correlation: 0.9586984955706055
Pair: PFG-SO, Correlation: 0.9122705754521169
Pair: PFG-STLD, Correlation: 0.9219455689202667
Pair: PFG-SYK, Correlation: 0.9170135051701143
Pair: PFG-TMUS, Correlation: 0.9110969633263777
Pair: PFG-TEL, Correlation: 0.9390579047380151
Pair: PFG-TXN, Correlation: 0.9078604471819683
Pair: PFG-TXT, Correlation: 0.9513605901202585
Pair: PFG-TJX, Correlation: 0.920626128381615
Pair: PFG-TSCO, Correlation: 0.910009080494296
Pair: PFG-TRV, Correlation: 0.9636359349094256
Pair: PFG-ULTA, Correlation: 0.9229345377986772
Pair: PFG-UNP, Correlation: 0.9071554115890496
Pair: PFG-UNH, Correlation: 0.9298357117963587
Pair: PFG-VLO, Correlation: 0.940341583302012
Pair: PFG-VMC, Correlation: 0.9402415269165303
Pair: PFG-WRB, Correlation: 0.9365598548430025
Pair: PFG-WM, Correlation: 0.9292389333321289
Pair: PFG-WAT, Correlation: 0.9090096706431834
Pair: PFG-WTW, Correlation: 0.9103181952156062
Pair: PFG-YUM, Correlation: 0.9237926953901129
Pair: PG-PGR, Correlation: 0.9353947240476703
Pair: PG-PLD, Correlation: 0.969995445534398
Pair: PG-PEG, Correlation: 0.9598022007963531
Pair: PG-PTC, Correlation: 0.939113231497686
Pair: PG-PSA, Correlation: 0.9393037880915954
Pair: PG-QCOM, Correlation: 0.9383380207604989
Pair: PG-DGX, Correlation: 0.9537910593028588
Pair: PG-RJF, Correlation: 0.9428903246942326
Pair: PG-RTX, Correlation: 0.9015889800015233
Pair: PG-RF, Correlation: 0.9038167777942551
Pair: PG-RSG, Correlation: 0.9676615373567475
Pair: PG-RMD, Correlation: 0.9484153376973986
Pair: PG-ROK, Correlation: 0.9510103443780776
Pair: PG-ROL, Correlation: 0.9652024390583313
Pair: PG-ROP, Correlation: 0.975296370373297
Pair: PG-ROST, Correlation: 0.9260558811153061
Pair: PG-SPGI, Correlation: 0.9786011783012034
Pair: PG-CRM, Correlation: 0.9363441221743427
Pair: PG-STX, Correlation: 0.9233920601799643
Pair: PG-SRE, Correlation: 0.9458912015773775
Pair: PG-NOW, Correlation: 0.9600319804492211
Pair: PG-SHW, Correlation: 0.9772650296567224
Pair: PG-SNA, Correlation: 0.923355151166703
Pair: PG-SO, Correlation: 0.9771764320313245
Pair: PG-SBUX, Correlation: 0.9266461137290001
Pair: PG-STE, Correlation: 0.9804247765840721
Pair: PG-SYK, Correlation: 0.9696784364598217
Pair: PG-SNPS, Correlation: 0.9441993624547436
Pair: PG-SYY, Correlation: 0.919972997055037
Pair: PG-TMUS, Correlation: 0.9707680547893831
Pair: PG-TEL, Correlation: 0.9553454076867082
Pair: PG-TDY, Correlation: 0.9651195351219495
Pair: PG-TER, Correlation: 0.9461580993087432
Pair: PG-TXN, Correlation: 0.9717961790591332
Pair: PG-TMO, Correlation: 0.9787401049242034
Pair: PG-TJX, Correlation: 0.9580861913765633
Pair: PG-TSCO, Correlation: 0.9619913741130517
Pair: PG-TT, Correlation: 0.9254101562520601
Pair: PG-TDG, Correlation: 0.9387830083838691
Pair: PG-TRV, Correlation: 0.9390833557189524
Pair: PG-TYL, Correlation: 0.9574638193856487
Pair: PG-UNP, Correlation: 0.9740320714714856
Pair: PG-UPS, Correlation: 0.9147766636558508
Pair: PG-UNH, Correlation: 0.9708535614752134
Pair: PG-VLTO, Correlation: 0.9297157172025484
Pair: PG-VRSN, Correlation: 0.9022863311200886
Pair: PG-VRSK, Correlation: 0.9828262805530358
Pair: PG-VRTX, Correlation: 0.937209849656992
Pair: PG-V, Correlation: 0.9739547395061017
Pair: PG-VMC, Correlation: 0.9456755707977429
Pair: PG-WRB, Correlation: 0.9654077652996083
Pair: PG-WMT, Correlation: 0.9667812159009126
Pair: PG-WM, Correlation: 0.9785273336605954
Pair: PG-WAT, Correlation: 0.9376014649945944
Pair: PG-WEC, Correlation: 0.9463927783128993
Pair: PG-WELL, Correlation: 0.9050616110950053
Pair: PG-WST, Correlation: 0.9498833561692835
Pair: PG-WTW, Correlation: 0.9746951503878847
Pair: PG-XEL, Correlation: 0.9373015436870263
Pair: PG-XYL, Correlation: 0.9395072707225796
Pair: PG-YUM, Correlation: 0.9680436631642119
Pair: PG-ZTS, Correlation: 0.9558043040817973
Pair: PGR-PEG, Correlation: 0.9355469034824416
Pair: PGR-PTC, Correlation: 0.9463823688793999
Pair: PGR-PHM, Correlation: 0.9651713667941271
Pair: PGR-PWR, Correlation: 0.9556656908933137
Pair: PGR-QCOM, Correlation: 0.901068270124783
Pair: PGR-RJF, Correlation: 0.9439419306497299
Pair: PGR-RSG, Correlation: 0.9823109660429261
Pair: PGR-ROL, Correlation: 0.9389266993327385
Pair: PGR-ROP, Correlation: 0.9192231050918862
Pair: PGR-SPGI, Correlation: 0.9201475837011763
Pair: PGR-NOW, Correlation: 0.9385092385923836
Pair: PGR-SHW, Correlation: 0.9269729839626392
Pair: PGR-SNA, Correlation: 0.9112626379852039
Pair: PGR-SO, Correlation: 0.9531437599598463
Pair: PGR-STLD, Correlation: 0.9490951560735441
Pair: PGR-STE, Correlation: 0.9010152339483212
Pair: PGR-SYK, Correlation: 0.9479466571506293
Pair: PGR-SNPS, Correlation: 0.9658960881706606
Pair: PGR-TMUS, Correlation: 0.9585448492732095
Pair: PGR-TXN, Correlation: 0.9127768773170994
Pair: PGR-TPL, Correlation: 0.9411865906773047
Pair: PGR-TJX, Correlation: 0.9652313054674099
Pair: PGR-TSCO, Correlation: 0.9594699253412025
Pair: PGR-TT, Correlation: 0.9814692911889609
Pair: PGR-TDG, Correlation: 0.984739241970752
Pair: PGR-TRV, Correlation: 0.9407890401481431
Pair: PGR-UNP, Correlation: 0.9016337356307386
Pair: PGR-URI, Correlation: 0.9701836980516246
Pair: PGR-UNH, Correlation: 0.9369475453260214
Pair: PGR-VLO, Correlation: 0.9138658636017555
Pair: PGR-VLTO, Correlation: 0.9371629321881587
Pair: PGR-VRSK, Correlation: 0.9406258833259
Pair: PGR-VRTX, Correlation: 0.9641759317555298
Pair: PGR-V, Correlation: 0.9236662304083395
Pair: PGR-VMC, Correlation: 0.9326573877416479
Pair: PGR-WRB, Correlation: 0.9728489405509442
Pair: PGR-GWW, Correlation: 0.9728701156359035
Pair: PGR-WMT, Correlation: 0.9701268358358792
Pair: PGR-WM, Correlation: 0.9651263383276192
Pair: PGR-WELL, Correlation: 0.9056463546789774
Pair: PGR-WTW, Correlation: 0.9351553981940534
Pair: PGR-XYL, Correlation: 0.9045531993392975
Pair: PGR-YUM, Correlation: 0.9090900530024651
Pair: PLD-PEG, Correlation: 0.9344265216200627
Pair: PLD-PTC, Correlation: 0.9195224768642948
Pair: PLD-PSA, Correlation: 0.9443501099674592
Pair: PLD-QCOM, Correlation: 0.9187764258568109
Pair: PLD-DGX, Correlation: 0.9624713878933175
Pair: PLD-RJF, Correlation: 0.9314370874166544
Pair: PLD-O, Correlation: 0.9031531409201037
Pair: PLD-RF, Correlation: 0.923996844841699
Pair: PLD-RSG, Correlation: 0.9323277351177095
Pair: PLD-RMD, Correlation: 0.9702965926385926
Pair: PLD-RVTY, Correlation: 0.9497415522408945
Pair: PLD-ROK, Correlation: 0.9678112127123843
Pair: PLD-ROL, Correlation: 0.9436768922446425
Pair: PLD-ROP, Correlation: 0.9638851818359768
Pair: PLD-ROST, Correlation: 0.9004386230676872
Pair: PLD-SPGI, Correlation: 0.9771315296530854
Pair: PLD-CRM, Correlation: 0.9319860443252717
Pair: PLD-SBAC, Correlation: 0.9283080957334526
Pair: PLD-STX, Correlation: 0.9148595945348592
Pair: PLD-SRE, Correlation: 0.9180871461081505
Pair: PLD-NOW, Correlation: 0.9291159514260154
Pair: PLD-SHW, Correlation: 0.9664531514884387
Pair: PLD-SO, Correlation: 0.9402379527573554
Pair: PLD-SBUX, Correlation: 0.9289933330634692
Pair: PLD-STE, Correlation: 0.9850276046683663
Pair: PLD-SYK, Correlation: 0.9465915538335299
Pair: PLD-SNPS, Correlation: 0.9059375471653186
Pair: PLD-SYY, Correlation: 0.933660094428826
Pair: PLD-TMUS, Correlation: 0.9397599266074335
Pair: PLD-TTWO, Correlation: 0.9021821564836469
Pair: PLD-TGT, Correlation: 0.9320193077593362
Pair: PLD-TEL, Correlation: 0.9595250385945294
Pair: PLD-TDY, Correlation: 0.9776012376143327
Pair: PLD-TER, Correlation: 0.9581596750274123
Pair: PLD-TSLA, Correlation: 0.9164486030695039
Pair: PLD-TXN, Correlation: 0.9735507652107797
Pair: PLD-TMO, Correlation: 0.9867159791157241
Pair: PLD-TJX, Correlation: 0.9057088340637205
Pair: PLD-TSCO, Correlation: 0.9286609900264107
Pair: PLD-TRV, Correlation: 0.9037933982884941
Pair: PLD-TRMB, Correlation: 0.9005588673944017
Pair: PLD-TYL, Correlation: 0.951545728113922
Pair: PLD-UDR, Correlation: 0.915651529706573
Pair: PLD-ULTA, Correlation: 0.9007820008239218
Pair: PLD-UNP, Correlation: 0.9732528215635142
Pair: PLD-UPS, Correlation: 0.9531305914151632
Pair: PLD-UNH, Correlation: 0.9674633687828281
Pair: PLD-VRSN, Correlation: 0.924437161721232
Pair: PLD-VRSK, Correlation: 0.9558018048928657
Pair: PLD-V, Correlation: 0.9560822499850857
Pair: PLD-VMC, Correlation: 0.9158579445834288
Pair: PLD-WRB, Correlation: 0.9298744908862486
Pair: PLD-WMT, Correlation: 0.9157651152500464
Pair: PLD-WM, Correlation: 0.9548124716561709
Pair: PLD-WAT, Correlation: 0.9607021803322112
Pair: PLD-WEC, Correlation: 0.94435920961026
Pair: PLD-WST, Correlation: 0.9721677091501848
Pair: PLD-WTW, Correlation: 0.9558470565419769
Pair: PLD-WDAY, Correlation: 0.9053138803938636
Pair: PLD-XEL, Correlation: 0.945709179244889
Pair: PLD-XYL, Correlation: 0.9317160244324847
Pair: PLD-YUM, Correlation: 0.9611698597181774
Pair: PLD-ZBRA, Correlation: 0.9150269550489841
Pair: PLD-ZTS, Correlation: 0.9814921015489539
Pair: PRU-PEG, Correlation: 0.9099246422653557
Pair: PRU-PSA, Correlation: 0.900606827472067
Pair: PRU-RJF, Correlation: 0.9329551092617684
Pair: PRU-RTX, Correlation: 0.9451546387958593
Pair: PRU-RF, Correlation: 0.9441970130653455
Pair: PRU-SRE, Correlation: 0.9007528817910212
Pair: PRU-SNA, Correlation: 0.9290207561696305
Pair: PRU-TEL, Correlation: 0.9282132071219045
Pair: PRU-TXT, Correlation: 0.9618141175154297
Pair: PRU-TRV, Correlation: 0.9487709064432176
Pair: PRU-VLO, Correlation: 0.9017782521348301
Pair: PRU-VMC, Correlation: 0.9262004188452008
Pair: PRU-WELL, Correlation: 0.9034714198915615
Pair: PRU-WY, Correlation: 0.9036906230592456
Pair: PEG-PTC, Correlation: 0.9485081168000569
Pair: PEG-PSA, Correlation: 0.9468404749699764
Pair: PEG-DGX, Correlation: 0.9537111757104308
Pair: PEG-RJF, Correlation: 0.9441542749469848
Pair: PEG-RTX, Correlation: 0.9469193958693184
Pair: PEG-O, Correlation: 0.924811540077118
Pair: PEG-RF, Correlation: 0.9371021279168973
Pair: PEG-RSG, Correlation: 0.9616062586336899
Pair: PEG-RMD, Correlation: 0.9204954913942671
Pair: PEG-ROK, Correlation: 0.9245194187270059
Pair: PEG-ROL, Correlation: 0.9654419294674804
Pair: PEG-ROP, Correlation: 0.9690013213747312
Pair: PEG-ROST, Correlation: 0.9531529479999804
Pair: PEG-SPGI, Correlation: 0.9617029385276982
Pair: PEG-CRM, Correlation: 0.9321659178146404
Pair: PEG-STX, Correlation: 0.9152967936366012
Pair: PEG-SRE, Correlation: 0.9627016616030005
Pair: PEG-NOW, Correlation: 0.9310970181823951
Pair: PEG-SHW, Correlation: 0.9661757994443952
Pair: PEG-SNA, Correlation: 0.9367007614258458
Pair: PEG-SO, Correlation: 0.9704212593028825
Pair: PEG-SBUX, Correlation: 0.9132321270248235
Pair: PEG-STE, Correlation: 0.9579731993967223
Pair: PEG-SYK, Correlation: 0.976334501363357
Pair: PEG-SYY, Correlation: 0.9485123471556622
Pair: PEG-TMUS, Correlation: 0.9629327164273429
Pair: PEG-TEL, Correlation: 0.9563401049697664
Pair: PEG-TDY, Correlation: 0.9433759117530335
Pair: PEG-TER, Correlation: 0.9027371985094191
Pair: PEG-TXN, Correlation: 0.9672078151071083
Pair: PEG-TPL, Correlation: 0.9083080482068582
Pair: PEG-TXT, Correlation: 0.9007751708255971
Pair: PEG-TMO, Correlation: 0.9412544973347539
Pair: PEG-TJX, Correlation: 0.9621857814763481
Pair: PEG-TSCO, Correlation: 0.9278757395540801
Pair: PEG-TT, Correlation: 0.9205292441499651
Pair: PEG-TDG, Correlation: 0.9379733163250251
Pair: PEG-TRV, Correlation: 0.9675083895252191
Pair: PEG-TYL, Correlation: 0.9535604667121234
Pair: PEG-UDR, Correlation: 0.917480850824313
Pair: PEG-UNP, Correlation: 0.964068959519177
Pair: PEG-UNH, Correlation: 0.9594113410955135
Pair: PEG-VLO, Correlation: 0.9003904376275541
Pair: PEG-VLTO, Correlation: 0.9117938643404494
Pair: PEG-VRSN, Correlation: 0.9012031153019232
Pair: PEG-VRSK, Correlation: 0.964389048609346
Pair: PEG-VRTX, Correlation: 0.9324856673909699
Pair: PEG-V, Correlation: 0.9699441741221976
Pair: PEG-VMC, Correlation: 0.9554455383544288
Pair: PEG-WRB, Correlation: 0.959185126413901
Pair: PEG-WMT, Correlation: 0.957643397389483
Pair: PEG-WM, Correlation: 0.9733508852725647
Pair: PEG-WAT, Correlation: 0.9436541135898897
Pair: PEG-WEC, Correlation: 0.9476052186003314
Pair: PEG-WELL, Correlation: 0.944486991673066
Pair: PEG-WTW, Correlation: 0.970726002259051
Pair: PEG-XEL, Correlation: 0.9360577461932565
Pair: PEG-XYL, Correlation: 0.9480097405672924
Pair: PEG-YUM, Correlation: 0.9663825254845066
Pair: PEG-ZTS, Correlation: 0.9123380923237112
Pair: PTC-PHM, Correlation: 0.9157096780615596
Pair: PTC-QCOM, Correlation: 0.904971312515406
Pair: PTC-DGX, Correlation: 0.9384913891643848
Pair: PTC-RJF, Correlation: 0.9575881224040745
Pair: PTC-RTX, Correlation: 0.9028745906959272
Pair: PTC-RF, Correlation: 0.9326635988418576
Pair: PTC-RSG, Correlation: 0.9639264688861904
Pair: PTC-ROK, Correlation: 0.9438233986559655
Pair: PTC-ROL, Correlation: 0.9736868317397379
Pair: PTC-ROP, Correlation: 0.9648751694219839
Pair: PTC-ROST, Correlation: 0.9468733785071327
Pair: PTC-SPGI, Correlation: 0.9553403433364644
Pair: PTC-CRM, Correlation: 0.9438346672538391
Pair: PTC-STX, Correlation: 0.9181359242171738
Pair: PTC-SRE, Correlation: 0.9036231570945914
Pair: PTC-NOW, Correlation: 0.9483322027778839
Pair: PTC-SHW, Correlation: 0.9587460964576977
Pair: PTC-SNA, Correlation: 0.9409827573566183
Pair: PTC-SO, Correlation: 0.9325016316158494
Pair: PTC-STLD, Correlation: 0.9171748404325627
Pair: PTC-STE, Correlation: 0.9444955074871073
Pair: PTC-SYK, Correlation: 0.9769153723071641
Pair: PTC-SNPS, Correlation: 0.94416831166234
Pair: PTC-SYY, Correlation: 0.9171513684284502
Pair: PTC-TMUS, Correlation: 0.9645127905735305
Pair: PTC-TEL, Correlation: 0.959889878652682
Pair: PTC-TDY, Correlation: 0.9319649371926293
Pair: PTC-TER, Correlation: 0.917524868123069
Pair: PTC-TXN, Correlation: 0.9623680917713596
Pair: PTC-TPL, Correlation: 0.9134733080252105
Pair: PTC-TXT, Correlation: 0.923190007810377
Pair: PTC-TMO, Correlation: 0.937000061449644
Pair: PTC-TJX, Correlation: 0.965796679877366
Pair: PTC-TSCO, Correlation: 0.9378447825062676
Pair: PTC-TT, Correlation: 0.9439700951801087
Pair: PTC-TDG, Correlation: 0.9527697238284901
Pair: PTC-TRV, Correlation: 0.9493131744306749
Pair: PTC-TYL, Correlation: 0.9365949652834893
Pair: PTC-UNP, Correlation: 0.9554534276901804
Pair: PTC-URI, Correlation: 0.9348018270746405
Pair: PTC-UNH, Correlation: 0.9547781709707689
Pair: PTC-VLO, Correlation: 0.9125407329240574
Pair: PTC-VRSK, Correlation: 0.9576606820334335
Pair: PTC-VRTX, Correlation: 0.9348484746514483
Pair: PTC-V, Correlation: 0.9656667546557773
Pair: PTC-VMC, Correlation: 0.9546450721773889
Pair: PTC-WRB, Correlation: 0.9511473290328087
Pair: PTC-GWW, Correlation: 0.9199104522701815
Pair: PTC-WMT, Correlation: 0.9484515856298685
Pair: PTC-WM, Correlation: 0.9680048478780674
Pair: PTC-WAT, Correlation: 0.9353189253007964
Pair: PTC-WST, Correlation: 0.9081846775453418
Pair: PTC-WTW, Correlation: 0.9589064398414984
Pair: PTC-WDAY, Correlation: 0.9050359441695868
Pair: PTC-XYL, Correlation: 0.9662359659000692
Pair: PTC-YUM, Correlation: 0.9566049320162131
Pair: PTC-ZTS, Correlation: 0.9008537006497142
Pair: PSA-DGX, Correlation: 0.938835069669888
Pair: PSA-RJF, Correlation: 0.940010071251709
Pair: PSA-RTX, Correlation: 0.9184649332864091
Pair: PSA-O, Correlation: 0.9227664694773949
Pair: PSA-REG, Correlation: 0.9051179401516061
Pair: PSA-RF, Correlation: 0.9225997372775943
Pair: PSA-RSG, Correlation: 0.925875358554302
Pair: PSA-RMD, Correlation: 0.9129761287069329
Pair: PSA-ROK, Correlation: 0.9189031746441884
Pair: PSA-ROL, Correlation: 0.9131128493263043
Pair: PSA-ROP, Correlation: 0.9285436709013742
Pair: PSA-SPGI, Correlation: 0.9297233510983846
Pair: PSA-STX, Correlation: 0.9087619003257752
Pair: PSA-SRE, Correlation: 0.946546088293747
Pair: PSA-SHW, Correlation: 0.9395887958705953
Pair: PSA-SJM, Correlation: 0.9082013760331975
Pair: PSA-SNA, Correlation: 0.9423493187031456
Pair: PSA-SO, Correlation: 0.9505376801808463
Pair: PSA-SBUX, Correlation: 0.9154589960992177
Pair: PSA-STE, Correlation: 0.939337595949366
Pair: PSA-SYK, Correlation: 0.9260337852188485
Pair: PSA-SYY, Correlation: 0.920195565201958
Pair: PSA-TMUS, Correlation: 0.9236653473561519
Pair: PSA-TEL, Correlation: 0.9479048533922323
Pair: PSA-TDY, Correlation: 0.9114402848978339
Pair: PSA-TXN, Correlation: 0.9378347210267167
Pair: PSA-TXT, Correlation: 0.9001145274907936
Pair: PSA-TMO, Correlation: 0.939982102694338
Pair: PSA-TJX, Correlation: 0.9197907657680365
Pair: PSA-TSCO, Correlation: 0.9324319268241192
Pair: PSA-TRV, Correlation: 0.9491207432393164
Pair: PSA-TYL, Correlation: 0.9269366235348896
Pair: PSA-UDR, Correlation: 0.929095743756962
Pair: PSA-ULTA, Correlation: 0.9262884161839116
Pair: PSA-UNP, Correlation: 0.9390216999210087
Pair: PSA-UPS, Correlation: 0.9226081432979852
Pair: PSA-UNH, Correlation: 0.949401860646909
Pair: PSA-VRSK, Correlation: 0.9237534295878602
Pair: PSA-V, Correlation: 0.9207657268791263
Pair: PSA-VMC, Correlation: 0.9355471336250178
Pair: PSA-WRB, Correlation: 0.932986607873201
Pair: PSA-WM, Correlation: 0.9405971233313417
Pair: PSA-WAT, Correlation: 0.941716514516069
Pair: PSA-WEC, Correlation: 0.921519999123788
Pair: PSA-WELL, Correlation: 0.9178022212674698
Pair: PSA-WST, Correlation: 0.90403104762741
Pair: PSA-WTW, Correlation: 0.9288158493240686
Pair: PSA-XEL, Correlation: 0.9131131523574557
Pair: PSA-YUM, Correlation: 0.9388492402251043
Pair: PHM-PWR, Correlation: 0.9532137738666204
Pair: PHM-RSG, Correlation: 0.9427924993718096
Pair: PHM-NOW, Correlation: 0.9077580853215231
Pair: PHM-SO, Correlation: 0.9033547263739229
Pair: PHM-STLD, Correlation: 0.9178269922662802
Pair: PHM-SYK, Correlation: 0.9139741797123032
Pair: PHM-SNPS, Correlation: 0.9432739737516669
Pair: PHM-TMUS, Correlation: 0.9049027253394887
Pair: PHM-TJX, Correlation: 0.9447406622735514
Pair: PHM-TSCO, Correlation: 0.92062798276283
Pair: PHM-TT, Correlation: 0.9776835844457838
Pair: PHM-TDG, Correlation: 0.9794014608164282
Pair: PHM-TRV, Correlation: 0.9049950760193695
Pair: PHM-URI, Correlation: 0.9776610291706772
Pair: PHM-VLTO, Correlation: 0.9184412185102383
Pair: PHM-VRSK, Correlation: 0.9035172223939507
Pair: PHM-VRTX, Correlation: 0.9312236203253862
Pair: PHM-VMC, Correlation: 0.9181280293996863
Pair: PHM-WRB, Correlation: 0.916172545366531
Pair: PHM-GWW, Correlation: 0.9686092022507377
Pair: PHM-WMT, Correlation: 0.9418012600359984
Pair: PHM-WM, Correlation: 0.9133949571563664
Pair: PHM-WELL, Correlation: 0.9017116229563084
Pair: PWR-RJF, Correlation: 0.9144043624320223
Pair: PWR-RSG, Correlation: 0.9360416849671064
Pair: PWR-STLD, Correlation: 0.9628422244622784
Pair: PWR-SNPS, Correlation: 0.9581870742222145
Pair: PWR-TPL, Correlation: 0.9154876382029985
Pair: PWR-TJX, Correlation: 0.904674831411994
Pair: PWR-TSCO, Correlation: 0.9402098240843059
Pair: PWR-TT, Correlation: 0.9601474755641446
Pair: PWR-TDG, Correlation: 0.9449098920569465
Pair: PWR-URI, Correlation: 0.9743706753451882
Pair: PWR-VLTO, Correlation: 0.9003925991608281
Pair: PWR-WRB, Correlation: 0.9151481799123302
Pair: PWR-GWW, Correlation: 0.9794046917095114
Pair: PWR-WMT, Correlation: 0.9075967735558341
Pair: QCOM-RJF, Correlation: 0.9068238824171762
Pair: QCOM-RSG, Correlation: 0.9184638791479599
Pair: QCOM-RMD, Correlation: 0.9091789055094152
Pair: QCOM-ROL, Correlation: 0.9012371308182805
Pair: QCOM-ROP, Correlation: 0.9023414569184212
Pair: QCOM-SPGI, Correlation: 0.9298525142726153
Pair: QCOM-STX, Correlation: 0.9409757474817577
Pair: QCOM-NOW, Correlation: 0.9424845625229498
Pair: QCOM-SHW, Correlation: 0.9378716693862711
Pair: QCOM-SO, Correlation: 0.913088793821553
Pair: QCOM-STE, Correlation: 0.9207235663513976
Pair: QCOM-SYK, Correlation: 0.9015280189410645
Pair: QCOM-SNPS, Correlation: 0.9306835384459765
Pair: QCOM-TMUS, Correlation: 0.919796769479242
Pair: QCOM-TGT, Correlation: 0.9020921549587362
Pair: QCOM-TEL, Correlation: 0.9192843347350145
Pair: QCOM-TER, Correlation: 0.9557837374115069
Pair: QCOM-TSLA, Correlation: 0.9116654912649712
Pair: QCOM-TXN, Correlation: 0.9228453904562625
Pair: QCOM-TMO, Correlation: 0.9384236045314099
Pair: QCOM-TSCO, Correlation: 0.9454198712625165
Pair: QCOM-TT, Correlation: 0.924192213536446
Pair: QCOM-TDG, Correlation: 0.9071313097521353
Pair: QCOM-TYL, Correlation: 0.9193803717301668
Pair: QCOM-UNP, Correlation: 0.919881483858544
Pair: QCOM-URI, Correlation: 0.9001059888666888
Pair: QCOM-UNH, Correlation: 0.9054072470673382
Pair: QCOM-VRSK, Correlation: 0.9238612334483897
Pair: QCOM-WRB, Correlation: 0.9063771483476776
Pair: QCOM-WMT, Correlation: 0.9269066644189351
Pair: QCOM-WM, Correlation: 0.9201119712830671
Pair: QCOM-WST, Correlation: 0.9239221598975875
Pair: QCOM-WTW, Correlation: 0.9083506242662215
Pair: DGX-RJF, Correlation: 0.9450627528246826
Pair: DGX-RTX, Correlation: 0.90615101605682
Pair: DGX-O, Correlation: 0.9136742217144985
Pair: DGX-RF, Correlation: 0.9490281075469159
Pair: DGX-RSG, Correlation: 0.9391138853978009
Pair: DGX-RMD, Correlation: 0.9552074505032185
Pair: DGX-RVTY, Correlation: 0.9298687693116954
Pair: DGX-ROK, Correlation: 0.9669933507825124
Pair: DGX-ROL, Correlation: 0.9652699719992488
Pair: DGX-ROP, Correlation: 0.9661619577945737
Pair: DGX-ROST, Correlation: 0.9293938415352379
Pair: DGX-SPGI, Correlation: 0.9710730278580161
Pair: DGX-CRM, Correlation: 0.9255276793095409
Pair: DGX-SBAC, Correlation: 0.9024758212094351
Pair: DGX-SRE, Correlation: 0.9362764881333279
Pair: DGX-NOW, Correlation: 0.9141915982055184
Pair: DGX-SHW, Correlation: 0.9652328110733911
Pair: DGX-SNA, Correlation: 0.9206155309959644
Pair: DGX-SO, Correlation: 0.9430829880744706
Pair: DGX-SBUX, Correlation: 0.9348265149261973
Pair: DGX-STE, Correlation: 0.9630505888910504
Pair: DGX-SYK, Correlation: 0.9590359456136216
Pair: DGX-SYY, Correlation: 0.9489802013682022
Pair: DGX-TMUS, Correlation: 0.9591403639176052
Pair: DGX-TTWO, Correlation: 0.9182438134250033
Pair: DGX-TEL, Correlation: 0.9693459923553606
Pair: DGX-TDY, Correlation: 0.9588226054160797
Pair: DGX-TER, Correlation: 0.9353514311491143
Pair: DGX-TXN, Correlation: 0.9803631638475423
Pair: DGX-TMO, Correlation: 0.96654657998109
Pair: DGX-TJX, Correlation: 0.9278143814645153
Pair: DGX-TSCO, Correlation: 0.9168375502677519
Pair: DGX-TRV, Correlation: 0.935814720761083
Pair: DGX-TYL, Correlation: 0.9561428741989797
Pair: DGX-UDR, Correlation: 0.9126712983573296
Pair: DGX-ULTA, Correlation: 0.9225069077725082
Pair: DGX-UNP, Correlation: 0.9592225162034276
Pair: DGX-UPS, Correlation: 0.9271615068697702
Pair: DGX-UNH, Correlation: 0.9704882638625115
Pair: DGX-VRSN, Correlation: 0.915303841561061
Pair: DGX-VRSK, Correlation: 0.9496126904838693
Pair: DGX-VICI, Correlation: 0.9026654794317004
Pair: DGX-V, Correlation: 0.9611222618956237
Pair: DGX-VMC, Correlation: 0.9439609187417827
Pair: DGX-WRB, Correlation: 0.9362345009973301
Pair: DGX-WMT, Correlation: 0.921335484448365
Pair: DGX-WM, Correlation: 0.958733020047677
Pair: DGX-WAT, Correlation: 0.9670279457296623
Pair: DGX-WEC, Correlation: 0.9478778184321
Pair: DGX-WST, Correlation: 0.9334915713490112
Pair: DGX-WTW, Correlation: 0.9630057595772097
Pair: DGX-XEL, Correlation: 0.9494377631101047
Pair: DGX-XYL, Correlation: 0.9549825618252687
Pair: DGX-YUM, Correlation: 0.9656650117824079
Pair: DGX-ZTS, Correlation: 0.9473051502018959
Pair: RJF-RTX, Correlation: 0.9348780410738209
Pair: RJF-RF, Correlation: 0.9603083139528744
Pair: RJF-RSG, Correlation: 0.9710127647047225
Pair: RJF-ROK, Correlation: 0.9345017995992566
Pair: RJF-ROL, Correlation: 0.9412356192331468
Pair: RJF-ROP, Correlation: 0.9366977019220941
Pair: RJF-SPGI, Correlation: 0.9374487583723645
Pair: RJF-STX, Correlation: 0.9248278101339622
Pair: RJF-SRE, Correlation: 0.9216937439281457
Pair: RJF-NOW, Correlation: 0.9152087281531747
Pair: RJF-SHW, Correlation: 0.946703930572366
Pair: RJF-SNA, Correlation: 0.9550799649928468
Pair: RJF-SO, Correlation: 0.9522005872943651
Pair: RJF-STLD, Correlation: 0.9521292680363005
Pair: RJF-STE, Correlation: 0.9325304963972897
Pair: RJF-SYK, Correlation: 0.9525218135392713
Pair: RJF-SNPS, Correlation: 0.9445373309440408
Pair: RJF-SYY, Correlation: 0.9069000683724223
Pair: RJF-TMUS, Correlation: 0.955930105756379
Pair: RJF-TEL, Correlation: 0.9581682149875042
Pair: RJF-TDY, Correlation: 0.9159610885908482
Pair: RJF-TXN, Correlation: 0.9505071571945151
Pair: RJF-TPL, Correlation: 0.9500804615686375
Pair: RJF-TXT, Correlation: 0.9387184797783692
Pair: RJF-TMO, Correlation: 0.939599674972471
Pair: RJF-TJX, Correlation: 0.9503974158869415
Pair: RJF-TSCO, Correlation: 0.9589730960286628
Pair: RJF-TT, Correlation: 0.938327742155165
Pair: RJF-TDG, Correlation: 0.9351605154521813
Pair: RJF-TRV, Correlation: 0.9667446151369906
Pair: RJF-TYL, Correlation: 0.9118047409486435
Pair: RJF-ULTA, Correlation: 0.9058958785530763
Pair: RJF-UNP, Correlation: 0.9425278336037537
Pair: RJF-URI, Correlation: 0.9424777001604246
Pair: RJF-UNH, Correlation: 0.971142373599869
Pair: RJF-VLO, Correlation: 0.9349798133822507
Pair: RJF-VRSK, Correlation: 0.9344870619074911
Pair: RJF-VRTX, Correlation: 0.918892541197635
Pair: RJF-VICI, Correlation: 0.9068284343382094
Pair: RJF-V, Correlation: 0.93314436809851
Pair: RJF-VMC, Correlation: 0.9574459020603596
Pair: RJF-WRB, Correlation: 0.9737178348788885
Pair: RJF-GWW, Correlation: 0.9285521280715301
Pair: RJF-WMT, Correlation: 0.9363366249866035
Pair: RJF-WM, Correlation: 0.9717862083268808
Pair: RJF-WAT, Correlation: 0.9399244305345398
Pair: RJF-WELL, Correlation: 0.9065536540408811
Pair: RJF-WST, Correlation: 0.9019789038259564
Pair: RJF-WTW, Correlation: 0.9465152925516411
Pair: RJF-XYL, Correlation: 0.9296468676550391
Pair: RJF-YUM, Correlation: 0.9472400002345303
Pair: RTX-RF, Correlation: 0.9378984279245498
Pair: RTX-RSG, Correlation: 0.9161686383719909
Pair: RTX-ROP, Correlation: 0.9052778678621521
Pair: RTX-ROST, Correlation: 0.9007175169364728
Pair: RTX-SRE, Correlation: 0.9488830661646995
Pair: RTX-SHW, Correlation: 0.9021432021229399
Pair: RTX-SNA, Correlation: 0.9274722381427845
Pair: RTX-SO, Correlation: 0.9257243364151759
Pair: RTX-SYK, Correlation: 0.9246009918429507
Pair: RTX-SYY, Correlation: 0.9146624318737415
Pair: RTX-TMUS, Correlation: 0.9040619911653018
Pair: RTX-TEL, Correlation: 0.9243691484577375
Pair: RTX-TXN, Correlation: 0.9089214051049253
Pair: RTX-TXT, Correlation: 0.9277240660100513
Pair: RTX-TJX, Correlation: 0.9266444598662963
Pair: RTX-TRV, Correlation: 0.9614789956622923
Pair: RTX-UNP, Correlation: 0.9148934704370512
Pair: RTX-UNH, Correlation: 0.9117993549240552
Pair: RTX-VLO, Correlation: 0.9218127880466541
Pair: RTX-VLTO, Correlation: 0.9598744202126157
Pair: RTX-V, Correlation: 0.9051748705639697
Pair: RTX-VMC, Correlation: 0.9155366029433183
Pair: RTX-WRB, Correlation: 0.9289633204676245
Pair: RTX-WMT, Correlation: 0.9015841395831766
Pair: RTX-WM, Correlation: 0.9264442204808362
Pair: RTX-WAT, Correlation: 0.9071097993069048
Pair: RTX-WELL, Correlation: 0.9321717138274295
Pair: RTX-WTW, Correlation: 0.9230462716393306
Pair: RTX-YUM, Correlation: 0.9285880442132521
Pair: O-RVTY, Correlation: 0.9020258350627274
Pair: O-ROP, Correlation: 0.9155064209607816
Pair: O-ROST, Correlation: 0.9184238255661146
Pair: O-SBAC, Correlation: 0.91390803946887
Pair: O-SRE, Correlation: 0.9466968670469551
Pair: O-SBUX, Correlation: 0.9380161800805993
Pair: O-STE, Correlation: 0.9099159944795403
Pair: O-SYY, Correlation: 0.9591611335153942
Pair: O-TDY, Correlation: 0.9144276103708723
Pair: O-TXN, Correlation: 0.90932440580548
Pair: O-TSN, Correlation: 0.922950385535169
Pair: O-UDR, Correlation: 0.9653977277639383
Pair: O-ULTA, Correlation: 0.9145593179285729
Pair: O-UNP, Correlation: 0.9182164383823079
Pair: O-VRSN, Correlation: 0.9352233343816896
Pair: O-V, Correlation: 0.9168644297814628
Pair: O-WAT, Correlation: 0.9200150525479609
Pair: O-WEC, Correlation: 0.9663997561548063
Pair: O-WTW, Correlation: 0.9056377361131094
Pair: O-XEL, Correlation: 0.9615281747657813
Pair: O-YUM, Correlation: 0.9276794068115718
Pair: REG-UHS, Correlation: 0.9034273922528054
Pair: REGN-SNA, Correlation: 0.9332680414675679
Pair: REGN-TJX, Correlation: 0.9191921858778399
Pair: REGN-TSCO, Correlation: 0.9117861687443822
Pair: REGN-TRV, Correlation: 0.9141417005772733
Pair: REGN-VRTX, Correlation: 0.920093222080792
Pair: REGN-VMC, Correlation: 0.9038357470490119
Pair: RF-RSG, Correlation: 0.9135113326210216
Pair: RF-RMD, Correlation: 0.9090410958662923
Pair: RF-RVTY, Correlation: 0.9010230867402163
Pair: RF-ROK, Correlation: 0.9336091716895476
Pair: RF-ROL, Correlation: 0.9221607354560339
Pair: RF-ROP, Correlation: 0.9225390893306306
Pair: RF-ROST, Correlation: 0.9023244573160948
Pair: RF-SPGI, Correlation: 0.92352406490624
Pair: RF-STX, Correlation: 0.9131505779936598
Pair: RF-SRE, Correlation: 0.9162511667089126
Pair: RF-SHW, Correlation: 0.930999957420821
Pair: RF-SNA, Correlation: 0.9153656421394838
Pair: RF-SO, Correlation: 0.9046066299535168
Pair: RF-STE, Correlation: 0.9218456160964128
Pair: RF-SYK, Correlation: 0.9308726067275137
Pair: RF-SYY, Correlation: 0.9460099144667453
Pair: RF-TMUS, Correlation: 0.9212529992342428
Pair: RF-TEL, Correlation: 0.9631281187307927
Pair: RF-TDY, Correlation: 0.9227244963860848
Pair: RF-TXN, Correlation: 0.9523256060264301
Pair: RF-TPL, Correlation: 0.900435625146061
Pair: RF-TXT, Correlation: 0.9356734057625299
Pair: RF-TMO, Correlation: 0.9254920970207494
Pair: RF-TJX, Correlation: 0.9035733313941595
Pair: RF-TRV, Correlation: 0.9390329799298207
Pair: RF-TYL, Correlation: 0.9122204033056087
Pair: RF-UNP, Correlation: 0.9414896154678767
Pair: RF-UPS, Correlation: 0.9047222873578176
Pair: RF-UNH, Correlation: 0.9424557309969095
Pair: RF-V, Correlation: 0.9201465325542115
Pair: RF-VMC, Correlation: 0.9219917368627221
Pair: RF-WRB, Correlation: 0.9206801356939301
Pair: RF-WM, Correlation: 0.9319355798910728
Pair: RF-WAT, Correlation: 0.9543507821991323
Pair: RF-WTW, Correlation: 0.9300396797952133
Pair: RF-XYL, Correlation: 0.9306330423072657
Pair: RF-YUM, Correlation: 0.938103477688402
Pair: RSG-RMD, Correlation: 0.9004684200721572
Pair: RSG-ROK, Correlation: 0.9220709149699936
Pair: RSG-ROL, Correlation: 0.964146064388274
Pair: RSG-ROP, Correlation: 0.9566340371149322
Pair: RSG-ROST, Correlation: 0.9162442460210148
Pair: RSG-SPGI, Correlation: 0.957620279315276
Pair: RSG-CRM, Correlation: 0.9146793053937271
Pair: RSG-STX, Correlation: 0.9152552082010881
Pair: RSG-SRE, Correlation: 0.9201120169147484
Pair: RSG-NOW, Correlation: 0.953967278129686
Pair: RSG-SHW, Correlation: 0.9614353273469197
Pair: RSG-SNA, Correlation: 0.9413056454597957
Pair: RSG-SO, Correlation: 0.9760552016894485
Pair: RSG-STLD, Correlation: 0.9486560137804161
Pair: RSG-STE, Correlation: 0.9479927966025875
Pair: RSG-SYK, Correlation: 0.9737285789757328
Pair: RSG-SNPS, Correlation: 0.9755063787985175
Pair: RSG-TMUS, Correlation: 0.9735014878908882
Pair: RSG-TEL, Correlation: 0.942591568408489
Pair: RSG-TDY, Correlation: 0.9213975032840875
Pair: RSG-TER, Correlation: 0.9066550844175271
Pair: RSG-TXN, Correlation: 0.9529340379945729
Pair: RSG-TPL, Correlation: 0.9361962365254299
Pair: RSG-TMO, Correlation: 0.9450494994601294
Pair: RSG-TJX, Correlation: 0.974391060259166
Pair: RSG-TSCO, Correlation: 0.9707744452039047
Pair: RSG-TT, Correlation: 0.9692492653051632
Pair: RSG-TDG, Correlation: 0.977907771902753
Pair: RSG-TRV, Correlation: 0.9611968252548985
Pair: RSG-TYL, Correlation: 0.9290812802371397
Pair: RSG-UNP, Correlation: 0.9448416369218063
Pair: RSG-URI, Correlation: 0.9552335303499891
Pair: RSG-UNH, Correlation: 0.9728779352495057
Pair: RSG-VLO, Correlation: 0.9260512194075073
Pair: RSG-VLTO, Correlation: 0.9265446259683149
Pair: RSG-VRSK, Correlation: 0.968605917123039
Pair: RSG-VRTX, Correlation: 0.9614883862763084
Pair: RSG-V, Correlation: 0.9551533973339048
Pair: RSG-VMC, Correlation: 0.9657065741744171
Pair: RSG-WRB, Correlation: 0.986730929466913
Pair: RSG-GWW, Correlation: 0.9543407392931736
Pair: RSG-WMT, Correlation: 0.96891602768158
Pair: RSG-WM, Correlation: 0.9936239808556786
Pair: RSG-WAT, Correlation: 0.9191917223994921
Pair: RSG-WELL, Correlation: 0.9244302157499245
Pair: RSG-WST, Correlation: 0.909708638990414
Pair: RSG-WTW, Correlation: 0.9595846877337161
Pair: RSG-XYL, Correlation: 0.942562123942107
Pair: RSG-YUM, Correlation: 0.9525072359678072
Pair: RSG-ZTS, Correlation: 0.9011637966497574
Pair: RMD-RVTY, Correlation: 0.9649632519309448
Pair: RMD-ROK, Correlation: 0.948486144650277
Pair: RMD-ROL, Correlation: 0.9380675351917871
Pair: RMD-ROP, Correlation: 0.9438530787275391
Pair: RMD-SPGI, Correlation: 0.9682893658455647
Pair: RMD-CRM, Correlation: 0.9289489418834146
Pair: RMD-SBAC, Correlation: 0.945595052083014
Pair: RMD-NOW, Correlation: 0.9157504879898494
Pair: RMD-SHW, Correlation: 0.9535999868901894
Pair: RMD-SO, Correlation: 0.9182099154360127
Pair: RMD-SBUX, Correlation: 0.9315299979428037
Pair: RMD-STE, Correlation: 0.9668964420170976
Pair: RMD-SYK, Correlation: 0.9242984832050443
Pair: RMD-SYY, Correlation: 0.9207697944487949
Pair: RMD-TMUS, Correlation: 0.935413966266259
Pair: RMD-TROW, Correlation: 0.9293912381237376
Pair: RMD-TTWO, Correlation: 0.9098505378700851
Pair: RMD-TGT, Correlation: 0.9507952913249581
Pair: RMD-TEL, Correlation: 0.9423664442873527
Pair: RMD-TDY, Correlation: 0.9735085170215956
Pair: RMD-TER, Correlation: 0.9579980877388756
Pair: RMD-TXN, Correlation: 0.9714517183935497
Pair: RMD-TMO, Correlation: 0.9788587987897864
Pair: RMD-TSCO, Correlation: 0.9038256674260952
Pair: RMD-TRMB, Correlation: 0.9142855652765612
Pair: RMD-TYL, Correlation: 0.95829450279406
Pair: RMD-UDR, Correlation: 0.905970771769845
Pair: RMD-UNP, Correlation: 0.952506497101705
Pair: RMD-UPS, Correlation: 0.9390416739338908
Pair: RMD-UNH, Correlation: 0.942832664853393
Pair: RMD-VLTO, Correlation: 0.9350541076175872
Pair: RMD-VRSN, Correlation: 0.9237566385996702
Pair: RMD-VRSK, Correlation: 0.9352631346425823
Pair: RMD-V, Correlation: 0.9444936548014202
Pair: RMD-WMT, Correlation: 0.9073920463707089
Pair: RMD-WM, Correlation: 0.929959448280927
Pair: RMD-WAT, Correlation: 0.9564162174442817
Pair: RMD-WEC, Correlation: 0.945721652080851
Pair: RMD-WST, Correlation: 0.9533229803171672
Pair: RMD-WTW, Correlation: 0.9435543636255813
Pair: RMD-XEL, Correlation: 0.9467749117050507
Pair: RMD-XYL, Correlation: 0.9315352902459688
Pair: RMD-YUM, Correlation: 0.938910781190405
Pair: RMD-ZBRA, Correlation: 0.9453389119116137
Pair: RMD-ZTS, Correlation: 0.968400078204377
Pair: RVTY-ROK, Correlation: 0.9347522654686075
Pair: RVTY-ROP, Correlation: 0.9108747453684845
Pair: RVTY-SPGI, Correlation: 0.925688216155802
Pair: RVTY-CRM, Correlation: 0.9003521922238407
Pair: RVTY-SBAC, Correlation: 0.9602574917987693
Pair: RVTY-SHW, Correlation: 0.9155586324612258
Pair: RVTY-SBUX, Correlation: 0.9285278629767969
Pair: RVTY-STE, Correlation: 0.9391908810596669
Pair: RVTY-SYY, Correlation: 0.9204757229567663
Pair: RVTY-TROW, Correlation: 0.9529447507408927
Pair: RVTY-TTWO, Correlation: 0.9118381145723407
Pair: RVTY-TGT, Correlation: 0.9434329422043545
Pair: RVTY-TEL, Correlation: 0.9292581443710863
Pair: RVTY-TDY, Correlation: 0.9440412527279259
Pair: RVTY-TER, Correlation: 0.9265073711907639
Pair: RVTY-TXN, Correlation: 0.9383181045985864
Pair: RVTY-TMO, Correlation: 0.9488875275474711
Pair: RVTY-TRMB, Correlation: 0.9405611912932273
Pair: RVTY-TYL, Correlation: 0.9258857804261666
Pair: RVTY-UDR, Correlation: 0.9319795476807011
Pair: RVTY-UNP, Correlation: 0.9333148771573346
Pair: RVTY-UPS, Correlation: 0.9549894593364765
Pair: RVTY-VRSN, Correlation: 0.9269435310787887
Pair: RVTY-V, Correlation: 0.9018108352542201
Pair: RVTY-WAT, Correlation: 0.9513124187729318
Pair: RVTY-WEC, Correlation: 0.9283541192996515
Pair: RVTY-WST, Correlation: 0.9299909361374905
Pair: RVTY-XEL, Correlation: 0.9375334662889346
Pair: RVTY-YUM, Correlation: 0.9101507952636455
Pair: RVTY-ZBRA, Correlation: 0.9574727622469972
Pair: RVTY-ZTS, Correlation: 0.9355232160480932
Pair: ROK-ROL, Correlation: 0.9558354167737324
Pair: ROK-ROP, Correlation: 0.9677781353092576
Pair: ROK-ROST, Correlation: 0.9232526637409988
Pair: ROK-SPGI, Correlation: 0.9701401229168536
Pair: ROK-CRM, Correlation: 0.9451200738307217
Pair: ROK-STX, Correlation: 0.9055651895108333
Pair: ROK-SRE, Correlation: 0.9115770398134345
Pair: ROK-NOW, Correlation: 0.9241480289839685
Pair: ROK-SHW, Correlation: 0.9633463826096123
Pair: ROK-SNA, Correlation: 0.9195277394190043
Pair: ROK-SO, Correlation: 0.9153454212594468
Pair: ROK-SBUX, Correlation: 0.9463927849947424
Pair: ROK-STE, Correlation: 0.9647790004736503
Pair: ROK-SYK, Correlation: 0.9554074703570744
Pair: ROK-SNPS, Correlation: 0.9018239227064869
Pair: ROK-SYY, Correlation: 0.9259282578400568
Pair: ROK-TMUS, Correlation: 0.9404278849336445
Pair: ROK-TROW, Correlation: 0.9105655227975077
Pair: ROK-TTWO, Correlation: 0.9218885097176479
Pair: ROK-TEL, Correlation: 0.9780974122275661
Pair: ROK-TDY, Correlation: 0.9634468403188765
Pair: ROK-TER, Correlation: 0.9494259882253963
Pair: ROK-TXN, Correlation: 0.9736627329117591
Pair: ROK-TMO, Correlation: 0.968947496758372
Pair: ROK-TJX, Correlation: 0.9206295714323098
Pair: ROK-TSCO, Correlation: 0.9155138916476909
Pair: ROK-TRV, Correlation: 0.9106805660586276
Pair: ROK-TRMB, Correlation: 0.903250012090547
Pair: ROK-TYL, Correlation: 0.9535391811679093
Pair: ROK-ULTA, Correlation: 0.9097222096885669
Pair: ROK-UNP, Correlation: 0.965106908649764
Pair: ROK-UPS, Correlation: 0.9489041712938783
Pair: ROK-UNH, Correlation: 0.9541961227772338
Pair: ROK-VRSN, Correlation: 0.9214484134084645
Pair: ROK-VRSK, Correlation: 0.9523659795091942
Pair: ROK-V, Correlation: 0.9585010131865995
Pair: ROK-VMC, Correlation: 0.9336970613292942
Pair: ROK-WRB, Correlation: 0.9073533738830432
Pair: ROK-WMT, Correlation: 0.9127001793155559
Pair: ROK-WM, Correlation: 0.9431824067255979
Pair: ROK-WAT, Correlation: 0.9563889086015467
Pair: ROK-WEC, Correlation: 0.9255355481496509
Pair: ROK-WST, Correlation: 0.9623333109029945
Pair: ROK-WTW, Correlation: 0.9544211081179466
Pair: ROK-WDAY, Correlation: 0.914457959991532
Pair: ROK-XEL, Correlation: 0.9275828140953065
Pair: ROK-XYL, Correlation: 0.9573444551118817
Pair: ROK-YUM, Correlation: 0.9640574196555785
Pair: ROK-ZBRA, Correlation: 0.9035486446899799
Pair: ROK-ZTS, Correlation: 0.9594990607075251
Pair: ROL-ROP, Correlation: 0.9824703176288083
Pair: ROL-ROST, Correlation: 0.9508658530827232
Pair: ROL-SPGI, Correlation: 0.9750412216183785
Pair: ROL-CRM, Correlation: 0.9564086540937805
Pair: ROL-SRE, Correlation: 0.9329096228584446
Pair: ROL-NOW, Correlation: 0.9520741609849347
Pair: ROL-SHW, Correlation: 0.9703539014380176
Pair: ROL-SNA, Correlation: 0.9280051615961245
Pair: ROL-SO, Correlation: 0.9522529364699067
Pair: ROL-SBUX, Correlation: 0.9192854347792357
Pair: ROL-STE, Correlation: 0.9661978062527977
Pair: ROL-SYK, Correlation: 0.9791947799412497
Pair: ROL-SNPS, Correlation: 0.9293932041841251
Pair: ROL-SYY, Correlation: 0.9360346377294091
Pair: ROL-TMUS, Correlation: 0.9797091423131521
Pair: ROL-TTWO, Correlation: 0.926216225726415
Pair: ROL-TEL, Correlation: 0.9594287073996249
Pair: ROL-TDY, Correlation: 0.9560106232382004
Pair: ROL-TER, Correlation: 0.9295195554808365
Pair: ROL-TXN, Correlation: 0.9786997959811812
Pair: ROL-TMO, Correlation: 0.9629569486781617
Pair: ROL-TJX, Correlation: 0.9604944024850469
Pair: ROL-TSCO, Correlation: 0.9368143388226017
Pair: ROL-TT, Correlation: 0.921369273976054
Pair: ROL-TDG, Correlation: 0.9361973822017705
Pair: ROL-TRV, Correlation: 0.944325024059449
Pair: ROL-TYL, Correlation: 0.9580809627648323
Pair: ROL-ULTA, Correlation: 0.9025955289387629
Pair: ROL-UNP, Correlation: 0.9676691031830679
Pair: ROL-UNH, Correlation: 0.9709388450034527
Pair: ROL-VLTO, Correlation: 0.9007262225360866
Pair: ROL-VRSN, Correlation: 0.9132470421327156
Pair: ROL-VRSK, Correlation: 0.9770103555620436
Pair: ROL-VRTX, Correlation: 0.9494918769319457
Pair: ROL-V, Correlation: 0.9821782400312347
Pair: ROL-VMC, Correlation: 0.9478719456134987
Pair: ROL-WRB, Correlation: 0.9539354596926599
Pair: ROL-WMT, Correlation: 0.9601119494147601
Pair: ROL-WM, Correlation: 0.9751140785076351
Pair: ROL-WAT, Correlation: 0.9429156526000732
Pair: ROL-WEC, Correlation: 0.9396791311224083
Pair: ROL-WST, Correlation: 0.9243180392860129
Pair: ROL-WTW, Correlation: 0.9735396889485117
Pair: ROL-XEL, Correlation: 0.9354370583677709
Pair: ROL-XYL, Correlation: 0.9676869532810013
Pair: ROL-YUM, Correlation: 0.9687041882679133
Pair: ROL-ZTS, Correlation: 0.9382304038829836
Pair: ROP-ROST, Correlation: 0.9687575611843559
Pair: ROP-SPGI, Correlation: 0.9868619570339775
Pair: ROP-CRM, Correlation: 0.9696632922914716
Pair: ROP-SBAC, Correlation: 0.9045420255062687
Pair: ROP-STX, Correlation: 0.9175583286134429
Pair: ROP-SRE, Correlation: 0.9489223565951654
Pair: ROP-NOW, Correlation: 0.9615874682428168
Pair: ROP-SHW, Correlation: 0.9819762233984829
Pair: ROP-SNA, Correlation: 0.9291609924617897
Pair: ROP-SO, Correlation: 0.9526049529166597
Pair: ROP-SBUX, Correlation: 0.9477896496674938
Pair: ROP-STE, Correlation: 0.9828490699415621
Pair: ROP-SYK, Correlation: 0.9850726228927646
Pair: ROP-SNPS, Correlation: 0.9206973987367587
Pair: ROP-SYY, Correlation: 0.9496455869875493
Pair: ROP-TMUS, Correlation: 0.9660553541272788
Pair: ROP-TTWO, Correlation: 0.9388535509000252
Pair: ROP-TEL, Correlation: 0.9716565030928012
Pair: ROP-TDY, Correlation: 0.9755608589684961
Pair: ROP-TER, Correlation: 0.9383064407920552
Pair: ROP-TXN, Correlation: 0.9808163771116969
Pair: ROP-TMO, Correlation: 0.9671274376883001
Pair: ROP-TJX, Correlation: 0.9603631782800518
Pair: ROP-TSCO, Correlation: 0.9295780231224691
Pair: ROP-TT, Correlation: 0.9070144910332898
Pair: ROP-TDG, Correlation: 0.9306986280306678
Pair: ROP-TRV, Correlation: 0.9466023134308125
Pair: ROP-TYL, Correlation: 0.9695203249139015
Pair: ROP-UDR, Correlation: 0.907236190833617
Pair: ROP-ULTA, Correlation: 0.9122679048228661
Pair: ROP-UNP, Correlation: 0.9849242908914404
Pair: ROP-UPS, Correlation: 0.9048964949461292
Pair: ROP-UNH, Correlation: 0.9659366040817862
Pair: ROP-VRSN, Correlation: 0.946957517099162
Pair: ROP-VRSK, Correlation: 0.9867961520792559
Pair: ROP-VRTX, Correlation: 0.9378567650674757
Pair: ROP-V, Correlation: 0.9948824205432582
Pair: ROP-VMC, Correlation: 0.9542581841709448
Pair: ROP-WRB, Correlation: 0.9511221554390683
Pair: ROP-WMT, Correlation: 0.9542746764344882
Pair: ROP-WM, Correlation: 0.9751261490673748
Pair: ROP-WAT, Correlation: 0.9554765056440307
Pair: ROP-WEC, Correlation: 0.9570130459129081
Pair: ROP-WST, Correlation: 0.9402465745707174
Pair: ROP-WTW, Correlation: 0.983466220008271
Pair: ROP-WDAY, Correlation: 0.9424187070663463
Pair: ROP-XEL, Correlation: 0.9521072714629328
Pair: ROP-XYL, Correlation: 0.9700588693280139
Pair: ROP-YUM, Correlation: 0.9831641983401681
Pair: ROP-ZTS, Correlation: 0.970161759192216
Pair: ROST-SPGI, Correlation: 0.9440113381257187
Pair: ROST-CRM, Correlation: 0.9466130076680612
Pair: ROST-SRE, Correlation: 0.9321824361452782
Pair: ROST-NOW, Correlation: 0.9082131227988418
Pair: ROST-SHW, Correlation: 0.9486513152500446
Pair: ROST-SNA, Correlation: 0.9187408082859451
Pair: ROST-SO, Correlation: 0.9173254809406137
Pair: ROST-SBUX, Correlation: 0.9393509744631345
Pair: ROST-STE, Correlation: 0.9340129881582695
Pair: ROST-SYK, Correlation: 0.9687931201535013
Pair: ROST-SYY, Correlation: 0.9466582022946187
Pair: ROST-TMUS, Correlation: 0.9294832998800738
Pair: ROST-TTWO, Correlation: 0.9254638223490484
Pair: ROST-TEL, Correlation: 0.9396569949139492
Pair: ROST-TDY, Correlation: 0.9388379301662139
Pair: ROST-TXN, Correlation: 0.9453389096545982
Pair: ROST-TMO, Correlation: 0.9060055382384072
Pair: ROST-TJX, Correlation: 0.9564742805256459
Pair: ROST-TDG, Correlation: 0.9142998521592502
Pair: ROST-TRV, Correlation: 0.9375133365449174
Pair: ROST-TYL, Correlation: 0.9416874285322148
Pair: ROST-ULTA, Correlation: 0.9012319332503015
Pair: ROST-UNP, Correlation: 0.9486084033896202
Pair: ROST-UNH, Correlation: 0.9133311184434791
Pair: ROST-VRSN, Correlation: 0.9293507551871686
Pair: ROST-VRSK, Correlation: 0.9513161172618199
Pair: ROST-VRTX, Correlation: 0.9073152372407123
Pair: ROST-V, Correlation: 0.9735413502465801
Pair: ROST-VMC, Correlation: 0.9422652864752556
Pair: ROST-WRB, Correlation: 0.9171249350264022
Pair: ROST-WMT, Correlation: 0.9242874028291508
Pair: ROST-WM, Correlation: 0.9381199994148002
Pair: ROST-WAT, Correlation: 0.9215069712274198
Pair: ROST-WEC, Correlation: 0.9317963530352558
Pair: ROST-WTW, Correlation: 0.9607374780938269
Pair: ROST-WDAY, Correlation: 0.9140584059870589
Pair: ROST-XEL, Correlation: 0.9211679157860662
Pair: ROST-XYL, Correlation: 0.9567207642797924
Pair: ROST-YUM, Correlation: 0.9577019090486091
Pair: SPGI-CRM, Correlation: 0.9711669698836529
Pair: SPGI-SBAC, Correlation: 0.9129181048407902
Pair: SPGI-STX, Correlation: 0.9335839481288993
Pair: SPGI-SRE, Correlation: 0.9266909677911358
Pair: SPGI-NOW, Correlation: 0.9755018820554188
Pair: SPGI-SHW, Correlation: 0.991307259759529
Pair: SPGI-SNA, Correlation: 0.9113191538722112
Pair: SPGI-SO, Correlation: 0.9550582450855911
Pair: SPGI-SBUX, Correlation: 0.9373879051354344
Pair: SPGI-STE, Correlation: 0.9870769635061151
Pair: SPGI-SYK, Correlation: 0.9757848830220803
Pair: SPGI-SNPS, Correlation: 0.9277399109941094
Pair: SPGI-SYY, Correlation: 0.9308631367846939
Pair: SPGI-TMUS, Correlation: 0.9708796382572663
Pair: SPGI-TROW, Correlation: 0.9037742481534464
Pair: SPGI-TTWO, Correlation: 0.9310830913826115
Pair: SPGI-TGT, Correlation: 0.9111345257840592
Pair: SPGI-TEL, Correlation: 0.9710225920244966
Pair: SPGI-TDY, Correlation: 0.9787421104776982
Pair: SPGI-TER, Correlation: 0.9643241791604654
Pair: SPGI-TXN, Correlation: 0.9873540182707155
Pair: SPGI-TMO, Correlation: 0.9810893108006801
Pair: SPGI-TJX, Correlation: 0.948600019882658
Pair: SPGI-TSCO, Correlation: 0.9415366120159576
Pair: SPGI-TT, Correlation: 0.919616495129342
Pair: SPGI-TDG, Correlation: 0.9271221226856834
Pair: SPGI-TRV, Correlation: 0.9262671750949736
Pair: SPGI-TYL, Correlation: 0.9836687809264663
Pair: SPGI-UDR, Correlation: 0.9006076440617048
Pair: SPGI-UNP, Correlation: 0.9800717293115382
Pair: SPGI-UPS, Correlation: 0.9174356529425748
Pair: SPGI-UNH, Correlation: 0.968150669212642
Pair: SPGI-VRSN, Correlation: 0.9287872368265787
Pair: SPGI-VRSK, Correlation: 0.9842334828455418
Pair: SPGI-VRTX, Correlation: 0.923412300532075
Pair: SPGI-V, Correlation: 0.9841732797717644
Pair: SPGI-VMC, Correlation: 0.9443897840164213
Pair: SPGI-WRB, Correlation: 0.9447061572104349
Pair: SPGI-WMT, Correlation: 0.9596102711789005
Pair: SPGI-WM, Correlation: 0.9728451703462871
Pair: SPGI-WAT, Correlation: 0.95828592097007
Pair: SPGI-WEC, Correlation: 0.9477135686320777
Pair: SPGI-WST, Correlation: 0.9612768972205656
Pair: SPGI-WTW, Correlation: 0.9810086386093527
Pair: SPGI-WDAY, Correlation: 0.9353859550592459
Pair: SPGI-XEL, Correlation: 0.9431645745622631
Pair: SPGI-XYL, Correlation: 0.9677769821805459
Pair: SPGI-YUM, Correlation: 0.9682134116992092
Pair: SPGI-ZBRA, Correlation: 0.9124569176874017
Pair: SPGI-ZTS, Correlation: 0.9821668130349134
Pair: CRM-STX, Correlation: 0.9028646001034873
Pair: CRM-NOW, Correlation: 0.9608566046757079
Pair: CRM-SHW, Correlation: 0.9697314815577909
Pair: CRM-SBUX, Correlation: 0.9245880764379615
Pair: CRM-STE, Correlation: 0.9553070411239399
Pair: CRM-SYK, Correlation: 0.9593853947135341
Pair: CRM-SYY, Correlation: 0.9098272982491975
Pair: CRM-TMUS, Correlation: 0.9337899841977572
Pair: CRM-TROW, Correlation: 0.9080982884817861
Pair: CRM-TTWO, Correlation: 0.948767249541427
Pair: CRM-TEL, Correlation: 0.9454504426043367
Pair: CRM-TDY, Correlation: 0.9492856853422352
Pair: CRM-TER, Correlation: 0.9313656569679434
Pair: CRM-TXN, Correlation: 0.9543099054341192
Pair: CRM-TMO, Correlation: 0.9392648977324256
Pair: CRM-TJX, Correlation: 0.9214439233628732
Pair: CRM-TDG, Correlation: 0.9028572214370605
Pair: CRM-TYL, Correlation: 0.970280764768187
Pair: CRM-UNP, Correlation: 0.9561131736016886
Pair: CRM-UNH, Correlation: 0.9119141140440268
Pair: CRM-VRSN, Correlation: 0.9261071682117891
Pair: CRM-VRSK, Correlation: 0.962251608030488
Pair: CRM-V, Correlation: 0.969485072011488
Pair: CRM-VMC, Correlation: 0.9200006124485349
Pair: CRM-WMT, Correlation: 0.9292003481827984
Pair: CRM-WM, Correlation: 0.93362611332788
Pair: CRM-WAT, Correlation: 0.9264710366677826
Pair: CRM-WEC, Correlation: 0.9186140887597977
Pair: CRM-WST, Correlation: 0.9322785841841335
Pair: CRM-WTW, Correlation: 0.95438669157097
Pair: CRM-WDAY, Correlation: 0.9662289450184146
Pair: CRM-XEL, Correlation: 0.9128981740592934
Pair: CRM-XYL, Correlation: 0.9504712166911539
Pair: CRM-YUM, Correlation: 0.9387588396455746
Pair: CRM-ZBRA, Correlation: 0.9035609231674837
Pair: CRM-ZTS, Correlation: 0.9456726881434707
Pair: SBAC-SBUX, Correlation: 0.9246681181846972
Pair: SBAC-STE, Correlation: 0.9235540965687534
Pair: SBAC-SYY, Correlation: 0.9051107716731661
Pair: SBAC-TROW, Correlation: 0.9273792893401082
Pair: SBAC-TTWO, Correlation: 0.9081847800670992
Pair: SBAC-TGT, Correlation: 0.903758109663273
Pair: SBAC-TDY, Correlation: 0.9423366254829498
Pair: SBAC-TFX, Correlation: 0.9029426010418331
Pair: SBAC-TXN, Correlation: 0.9092784638814613
Pair: SBAC-TMO, Correlation: 0.9200690989354918
Pair: SBAC-TYL, Correlation: 0.906433993317872
Pair: SBAC-UDR, Correlation: 0.9192132024908709
Pair: SBAC-UNP, Correlation: 0.9195099252035873
Pair: SBAC-UPS, Correlation: 0.9097556159485355
Pair: SBAC-VRSN, Correlation: 0.9498339146209158
Pair: SBAC-V, Correlation: 0.9008091885374611
Pair: SBAC-WAT, Correlation: 0.9118273409535539
Pair: SBAC-WEC, Correlation: 0.9572362578153706
Pair: SBAC-XEL, Correlation: 0.962990213676942
Pair: SBAC-ZBRA, Correlation: 0.9164567705341053
Pair: SBAC-ZTS, Correlation: 0.9203086778681887
Pair: STX-NOW, Correlation: 0.9267635130737173
Pair: STX-SHW, Correlation: 0.9497539819382488
Pair: STX-SO, Correlation: 0.9102657273870953
Pair: STX-STE, Correlation: 0.9218676921879311
Pair: STX-SYK, Correlation: 0.9193137759625565
Pair: STX-TMUS, Correlation: 0.9077950646172163
Pair: STX-TEL, Correlation: 0.9479729256714404
Pair: STX-TDY, Correlation: 0.9016682740817482
Pair: STX-TER, Correlation: 0.9201940518121347
Pair: STX-TXN, Correlation: 0.9234665735906953
Pair: STX-TMO, Correlation: 0.9169299987045721
Pair: STX-TJX, Correlation: 0.9167881183598501
Pair: STX-TSCO, Correlation: 0.9236473307269962
Pair: STX-TT, Correlation: 0.9136429328074344
Pair: STX-TDG, Correlation: 0.9026248501031645
Pair: STX-TRV, Correlation: 0.9101689588477853
Pair: STX-TYL, Correlation: 0.9334574920720862
Pair: STX-UNP, Correlation: 0.940272849003505
Pair: STX-URI, Correlation: 0.904336361596339
Pair: STX-UNH, Correlation: 0.9070371898176524
Pair: STX-VLTO, Correlation: 0.9061216105042259
Pair: STX-VRSK, Correlation: 0.9204021464785171
Pair: STX-V, Correlation: 0.9104476039614375
Pair: STX-VMC, Correlation: 0.9086332897596192
Pair: STX-WRB, Correlation: 0.9065162659602223
Pair: STX-WMT, Correlation: 0.9211494959507321
Pair: STX-WM, Correlation: 0.9203894327738136
Pair: STX-WAT, Correlation: 0.910790749238752
Pair: STX-WELL, Correlation: 0.9023136997382546
Pair: STX-WTW, Correlation: 0.9202229466044667
Pair: STX-YUM, Correlation: 0.9056070755019812
Pair: SRE-SHW, Correlation: 0.9293803357224292
Pair: SRE-SNA, Correlation: 0.9374506394768073
Pair: SRE-SO, Correlation: 0.9548465200666802
Pair: SRE-SBUX, Correlation: 0.9245632747698207
Pair: SRE-STE, Correlation: 0.9344643616043364
Pair: SRE-SYK, Correlation: 0.939700027781118
Pair: SRE-SYY, Correlation: 0.9485764699764428
Pair: SRE-TMUS, Correlation: 0.9310889152372308
Pair: SRE-TEL, Correlation: 0.9352134482741802
Pair: SRE-TDY, Correlation: 0.9318252301401119
Pair: SRE-TXN, Correlation: 0.9363266226208699
Pair: SRE-TMO, Correlation: 0.9222608851790002
Pair: SRE-TJX, Correlation: 0.936048653741163
Pair: SRE-TRV, Correlation: 0.9572865796008174
Pair: SRE-TYL, Correlation: 0.9171372080587943
Pair: SRE-UDR, Correlation: 0.9130036093479629
Pair: SRE-ULTA, Correlation: 0.9222700607435358
Pair: SRE-UNP, Correlation: 0.953169990803764
Pair: SRE-UNH, Correlation: 0.9423876116516215
Pair: SRE-VLO, Correlation: 0.900796667411393
Pair: SRE-VRSN, Correlation: 0.9022618312029931
Pair: SRE-VRSK, Correlation: 0.9351940342372197
Pair: SRE-VRTX, Correlation: 0.916978611831707
Pair: SRE-V, Correlation: 0.9507268949944092
Pair: SRE-VMC, Correlation: 0.9261100772753491
Pair: SRE-WRB, Correlation: 0.9412554860553566
Pair: SRE-WMT, Correlation: 0.913615245217238
Pair: SRE-WM, Correlation: 0.9420842128741775
Pair: SRE-WAT, Correlation: 0.9230682652535522
Pair: SRE-WEC, Correlation: 0.9617041019420985
Pair: SRE-WELL, Correlation: 0.9154479452501247
Pair: SRE-WTW, Correlation: 0.9488233834804631
Pair: SRE-XEL, Correlation: 0.9505758161776725
Pair: SRE-XYL, Correlation: 0.9053172935898307
Pair: SRE-YUM, Correlation: 0.9543942081606623
Pair: NOW-SHW, Correlation: 0.9803526600202411
Pair: NOW-SO, Correlation: 0.9360185593350596
Pair: NOW-STE, Correlation: 0.9533272277795368
Pair: NOW-SYK, Correlation: 0.9592155868854325
Pair: NOW-SNPS, Correlation: 0.9501512122613757
Pair: NOW-TMUS, Correlation: 0.9608255233699854
Pair: NOW-TEL, Correlation: 0.9399740420366922
Pair: NOW-TDY, Correlation: 0.9293806461424582
Pair: NOW-TER, Correlation: 0.9414464914265215
Pair: NOW-TXN, Correlation: 0.9504460877206645
Pair: NOW-TMO, Correlation: 0.9461517841276538
Pair: NOW-TJX, Correlation: 0.9475802245413346
Pair: NOW-TSCO, Correlation: 0.9436532468830064
Pair: NOW-TT, Correlation: 0.9510867511438345
Pair: NOW-TDG, Correlation: 0.9454044863064553
Pair: NOW-TRV, Correlation: 0.9059328417765664
Pair: NOW-TYL, Correlation: 0.9668949592041989
Pair: NOW-UNP, Correlation: 0.9509964472768281
Pair: NOW-URI, Correlation: 0.91768047669815
Pair: NOW-UNH, Correlation: 0.9307569697196897
Pair: NOW-VRSK, Correlation: 0.9775713761422727
Pair: NOW-VRTX, Correlation: 0.9088197408577631
Pair: NOW-V, Correlation: 0.958432513660277
Pair: NOW-VMC, Correlation: 0.9244089233277113
Pair: NOW-WRB, Correlation: 0.9279380924321802
Pair: NOW-WMT, Correlation: 0.9689645593612264
Pair: NOW-WM, Correlation: 0.9540503494527774
Pair: NOW-WAT, Correlation: 0.9023590524620066
Pair: NOW-WST, Correlation: 0.9332249018578089
Pair: NOW-WTW, Correlation: 0.9582270122762758
Pair: NOW-WDAY, Correlation: 0.9294551193929869
Pair: NOW-XYL, Correlation: 0.940000656884551
Pair: NOW-YUM, Correlation: 0.9277250816096031
Pair: NOW-ZTS, Correlation: 0.9427496666274174
Pair: SHW-SNA, Correlation: 0.9312741180243103
Pair: SHW-SO, Correlation: 0.9583331152600074
Pair: SHW-SBUX, Correlation: 0.93473128767945
Pair: SHW-STE, Correlation: 0.9795136992545957
Pair: SHW-SYK, Correlation: 0.9770270362065455
Pair: SHW-SNPS, Correlation: 0.9289968614144396
Pair: SHW-SYY, Correlation: 0.9285847461964912
Pair: SHW-TMUS, Correlation: 0.9697972318924614
Pair: SHW-TTWO, Correlation: 0.9180592977293862
Pair: SHW-TGT, Correlation: 0.9067663964266541
Pair: SHW-TEL, Correlation: 0.9771768886473131
Pair: SHW-TDY, Correlation: 0.9653249813887627
Pair: SHW-TER, Correlation: 0.9583108266331567
Pair: SHW-TXN, Correlation: 0.9810280196796605
Pair: SHW-TMO, Correlation: 0.9734936693971914
Pair: SHW-TJX, Correlation: 0.9590734964353878
Pair: SHW-TSCO, Correlation: 0.9484700222008786
Pair: SHW-TT, Correlation: 0.9352204625386233
Pair: SHW-TDG, Correlation: 0.9370309502188456
Pair: SHW-TRV, Correlation: 0.9436395567216486
Pair: SHW-TYL, Correlation: 0.9831183504944125
Pair: SHW-UDR, Correlation: 0.9000236359330885
Pair: SHW-UNP, Correlation: 0.978690836583355
Pair: SHW-UPS, Correlation: 0.9130111754767161
Pair: SHW-URI, Correlation: 0.907277874133629
Pair: SHW-UNH, Correlation: 0.962657522565817
Pair: SHW-VRSN, Correlation: 0.906523214901726
Pair: SHW-VRSK, Correlation: 0.980268554493674
Pair: SHW-VRTX, Correlation: 0.9216043824730171
Pair: SHW-V, Correlation: 0.9786023485142447
Pair: SHW-VMC, Correlation: 0.9583656195979308
Pair: SHW-WRB, Correlation: 0.9506164843886924
Pair: SHW-WMT, Correlation: 0.9650805864952116
Pair: SHW-WM, Correlation: 0.9733808388651438
Pair: SHW-WAT, Correlation: 0.9600005821173344
Pair: SHW-WEC, Correlation: 0.937021517457108
Pair: SHW-WELL, Correlation: 0.9122673146228697
Pair: SHW-WST, Correlation: 0.951255134736481
Pair: SHW-WTW, Correlation: 0.9794430653647724
Pair: SHW-WDAY, Correlation: 0.9264840995551414
Pair: SHW-XEL, Correlation: 0.9285938802901611
Pair: SHW-XYL, Correlation: 0.9678346489311113
Pair: SHW-YUM, Correlation: 0.9656381008489552
Pair: SHW-ZBRA, Correlation: 0.9052583711062047
Pair: SHW-ZTS, Correlation: 0.9657722781283049
Pair: SWKS-TROW, Correlation: 0.9134984682678271
Pair: SWKS-TFX, Correlation: 0.9012782047402789
Pair: SWKS-DIS, Correlation: 0.9078974652823575
Pair: SWKS-ZBH, Correlation: 0.9060608786073644
Pair: SJM-ULTA, Correlation: 0.9253648665974686
Pair: SNA-SO, Correlation: 0.9365887247387434
Pair: SNA-STLD, Correlation: 0.9178750891766188
Pair: SNA-STE, Correlation: 0.9074044528694801
Pair: SNA-SYK, Correlation: 0.946050921272812
Pair: SNA-SNPS, Correlation: 0.9103963321460136
Pair: SNA-TMUS, Correlation: 0.9378129279537437
Pair: SNA-TEL, Correlation: 0.9462500041202118
Pair: SNA-TXN, Correlation: 0.921527090161096
Pair: SNA-TXT, Correlation: 0.941562282368126
Pair: SNA-TMO, Correlation: 0.9006631122279584
Pair: SNA-TJX, Correlation: 0.9611828241951212
Pair: SNA-TSCO, Correlation: 0.9364768514140692
Pair: SNA-TT, Correlation: 0.9132509497544105
Pair: SNA-TDG, Correlation: 0.9243053254674268
Pair: SNA-TRV, Correlation: 0.9737663014975504
Pair: SNA-TYL, Correlation: 0.9068735559722997
Pair: SNA-ULTA, Correlation: 0.9252253487202109
Pair: SNA-UNP, Correlation: 0.9220345728452518
Pair: SNA-URI, Correlation: 0.918528598180264
Pair: SNA-UNH, Correlation: 0.9355806478650461
Pair: SNA-VLO, Correlation: 0.9306746356997225
Pair: SNA-VRSK, Correlation: 0.925418624816111
Pair: SNA-VRTX, Correlation: 0.916921652532354
Pair: SNA-VICI, Correlation: 0.9104984653731995
Pair: SNA-V, Correlation: 0.9280579137262579
Pair: SNA-VMC, Correlation: 0.9705426286241068
Pair: SNA-WRB, Correlation: 0.9405819288843454
Pair: SNA-GWW, Correlation: 0.9118394835976635
Pair: SNA-WAB, Correlation: 0.900707187517702
Pair: SNA-WMT, Correlation: 0.9130002953553726
Pair: SNA-WM, Correlation: 0.9427997121614944
Pair: SNA-WAT, Correlation: 0.9078125105743144
Pair: SNA-WELL, Correlation: 0.9225409796170144
Pair: SNA-WTW, Correlation: 0.9307850426738059
Pair: SNA-XYL, Correlation: 0.9047328918715347
Pair: SNA-YUM, Correlation: 0.9341610573838455
Pair: SO-STLD, Correlation: 0.9034411945179387
Pair: SO-STE, Correlation: 0.9530660293740376
Pair: SO-SYK, Correlation: 0.9594803184442879
Pair: SO-SNPS, Correlation: 0.9401204930430326
Pair: SO-SYY, Correlation: 0.9113746819774428
Pair: SO-TMUS, Correlation: 0.9692856129665651
Pair: SO-TEL, Correlation: 0.9371936902355028
Pair: SO-TDY, Correlation: 0.9355766072929016
Pair: SO-TER, Correlation: 0.9087739537256715
Pair: SO-TXN, Correlation: 0.9554184541223246
Pair: SO-TPL, Correlation: 0.9238015750083768
Pair: SO-TMO, Correlation: 0.9494136672043133
Pair: SO-TJX, Correlation: 0.9652347319158373
Pair: SO-TSCO, Correlation: 0.9598700926151311
Pair: SO-TT, Correlation: 0.9369473095875182
Pair: SO-TDG, Correlation: 0.951909887606261
Pair: SO-TRV, Correlation: 0.9558527364377486
Pair: SO-TYL, Correlation: 0.9381500962611832
Pair: SO-UNP, Correlation: 0.9484870983485683
Pair: SO-URI, Correlation: 0.9133437429145558
Pair: SO-UNH, Correlation: 0.9691414424742044
Pair: SO-VLTO, Correlation: 0.9214947671065341
Pair: SO-VRSK, Correlation: 0.9654520725865515
Pair: SO-VRTX, Correlation: 0.9437965138105106
Pair: SO-VICI, Correlation: 0.9152735140571567
Pair: SO-V, Correlation: 0.9543729086597339
Pair: SO-VMC, Correlation: 0.9479213743596554
Pair: SO-WRB, Correlation: 0.9777458200167645
Pair: SO-GWW, Correlation: 0.9181775411986671
Pair: SO-WMT, Correlation: 0.9639988589038108
Pair: SO-WM, Correlation: 0.9784534010856685
Pair: SO-WAT, Correlation: 0.9233018067398501
Pair: SO-WEC, Correlation: 0.9314986631529975
Pair: SO-WELL, Correlation: 0.9370708602037853
Pair: SO-WST, Correlation: 0.903182502805801
Pair: SO-WTW, Correlation: 0.9622407854181938
Pair: SO-XEL, Correlation: 0.91753947747503
Pair: SO-XYL, Correlation: 0.9198092231397166
Pair: SO-YUM, Correlation: 0.9546187403646972
Pair: SO-ZTS, Correlation: 0.9063796084391913
Pair: SWK-TFX, Correlation: 0.9098833597263226
Pair: SWK-DIS, Correlation: 0.9212398687050555
Pair: SBUX-STE, Correlation: 0.9432785658874826
Pair: SBUX-SYK, Correlation: 0.9284842504939096
Pair: SBUX-SYY, Correlation: 0.9367202654771111
Pair: SBUX-TMUS, Correlation: 0.9092082384566987
Pair: SBUX-TROW, Correlation: 0.9061879309653192
Pair: SBUX-TTWO, Correlation: 0.9122895225520433
Pair: SBUX-TEL, Correlation: 0.941132355633062
Pair: SBUX-TDY, Correlation: 0.9519680394235626
Pair: SBUX-TER, Correlation: 0.9033418047552625
Pair: SBUX-TXN, Correlation: 0.9454314102999213
Pair: SBUX-TMO, Correlation: 0.9348464705313644
Pair: SBUX-TYL, Correlation: 0.9413224105001513
Pair: SBUX-UDR, Correlation: 0.9274672232773015
Pair: SBUX-ULTA, Correlation: 0.914844398066058
Pair: SBUX-UNP, Correlation: 0.9406760720303092
Pair: SBUX-UPS, Correlation: 0.9245910712818564
Pair: SBUX-UNH, Correlation: 0.9086344613115339
Pair: SBUX-VRSN, Correlation: 0.95336082087589
Pair: SBUX-VRSK, Correlation: 0.926040339965748
Pair: SBUX-V, Correlation: 0.9494017830704631
Pair: SBUX-VMC, Correlation: 0.9024877256415968
Pair: SBUX-WM, Correlation: 0.9030824979505839
Pair: SBUX-WAT, Correlation: 0.9396700707256317
Pair: SBUX-WEC, Correlation: 0.9545214797317748
Pair: SBUX-WST, Correlation: 0.913007375488812
Pair: SBUX-WTW, Correlation: 0.9414178092123227
Pair: SBUX-WDAY, Correlation: 0.9057173777013654
Pair: SBUX-XEL, Correlation: 0.9547119277332443
Pair: SBUX-XYL, Correlation: 0.923015635514835
Pair: SBUX-YUM, Correlation: 0.951401545923797
Pair: SBUX-ZTS, Correlation: 0.9430969529841347
Pair: STT-WY, Correlation: 0.904688571720951
Pair: STLD-SYK, Correlation: 0.9014264428512808
Pair: STLD-SNPS, Correlation: 0.9558111787051646
Pair: STLD-TMUS, Correlation: 0.9071787474108297
Pair: STLD-TPL, Correlation: 0.9244251712485793
Pair: STLD-TJX, Correlation: 0.919308059757101
Pair: STLD-TSCO, Correlation: 0.9405994852328807
Pair: STLD-TT, Correlation: 0.9328371843619979
Pair: STLD-TDG, Correlation: 0.9329009644686255
Pair: STLD-TRV, Correlation: 0.9188730979191524
Pair: STLD-URI, Correlation: 0.9583662070138159
Pair: STLD-UNH, Correlation: 0.9175302921801894
Pair: STLD-VLO, Correlation: 0.9407802096817528
Pair: STLD-VRTX, Correlation: 0.909828201035507
Pair: STLD-VMC, Correlation: 0.9143233804649347
Pair: STLD-WRB, Correlation: 0.9427550563872381
Pair: STLD-GWW, Correlation: 0.9632205752266242
Pair: STLD-WM, Correlation: 0.92843660275389
Pair: STE-SYK, Correlation: 0.9684176753045604
Pair: STE-SNPS, Correlation: 0.9186957533351146
Pair: STE-SYY, Correlation: 0.945656705335505
Pair: STE-TMUS, Correlation: 0.9576886791458799
Pair: STE-TTWO, Correlation: 0.9247212079305616
Pair: STE-TGT, Correlation: 0.9157544117127402
Pair: STE-TEL, Correlation: 0.9674045438046891
Pair: STE-TDY, Correlation: 0.9843931488241632
Pair: STE-TER, Correlation: 0.9594698624356466
Pair: STE-TXN, Correlation: 0.9835877684622555
Pair: STE-TMO, Correlation: 0.9869290919848098
Pair: STE-TJX, Correlation: 0.935638559411326
Pair: STE-TSCO, Correlation: 0.9350217588306327
Pair: STE-TDG, Correlation: 0.9075462921264225
Pair: STE-TRV, Correlation: 0.9210115541012485
Pair: STE-TYL, Correlation: 0.9699452848403253
Pair: STE-UDR, Correlation: 0.9152177663871853
Pair: STE-UNP, Correlation: 0.9847542268322557
Pair: STE-UPS, Correlation: 0.9345950095077693
Pair: STE-UNH, Correlation: 0.9721729168734722
Pair: STE-VRSN, Correlation: 0.9397161615784518
Pair: STE-VRSK, Correlation: 0.9780581504840845
Pair: STE-VRTX, Correlation: 0.9106498333994105
Pair: STE-V, Correlation: 0.9803864262751453
Pair: STE-VMC, Correlation: 0.9353582592949752
Pair: STE-WRB, Correlation: 0.9433910348735633
Pair: STE-WMT, Correlation: 0.9396675424548047
Pair: STE-WM, Correlation: 0.9682260504109296
Pair: STE-WAT, Correlation: 0.9588670596911286
Pair: STE-WEC, Correlation: 0.9570898183542672
Pair: STE-WST, Correlation: 0.966349839588722
Pair: STE-WTW, Correlation: 0.9699545892656996
Pair: STE-WDAY, Correlation: 0.9304213682222908
Pair: STE-XEL, Correlation: 0.9536392451622626
Pair: STE-XYL, Correlation: 0.9502128113085565
Pair: STE-YUM, Correlation: 0.9722852739366671
Pair: STE-ZBRA, Correlation: 0.9105170100563769
Pair: STE-ZTS, Correlation: 0.9866817523038877
Pair: SYK-SNPS, Correlation: 0.9379604647594459
Pair: SYK-SYY, Correlation: 0.9402386522476731
Pair: SYK-TMUS, Correlation: 0.9724441272047155
Pair: SYK-TTWO, Correlation: 0.9144181995126366
Pair: SYK-TEL, Correlation: 0.9684151866394096
Pair: SYK-TDY, Correlation: 0.9574579091228608
Pair: SYK-TER, Correlation: 0.9272826397435403
Pair: SYK-TXN, Correlation: 0.9763739640091258
Pair: SYK-TXT, Correlation: 0.9091693886841073
Pair: SYK-TMO, Correlation: 0.9534744581086982
Pair: SYK-TJX, Correlation: 0.9761553007419733
Pair: SYK-TSCO, Correlation: 0.9425449421069813
Pair: SYK-TT, Correlation: 0.9409493730691655
Pair: SYK-TDG, Correlation: 0.9607329139993068
Pair: SYK-TRV, Correlation: 0.9655863441001725
Pair: SYK-TYL, Correlation: 0.9597760095690807
Pair: SYK-ULTA, Correlation: 0.9135119158364301
Pair: SYK-UNP, Correlation: 0.9686328579560215
Pair: SYK-URI, Correlation: 0.9198756625186991
Pair: SYK-UNH, Correlation: 0.9615087357398915
Pair: SYK-VLO, Correlation: 0.9064394241904193
Pair: SYK-VRSN, Correlation: 0.9094249621937531
Pair: SYK-VRSK, Correlation: 0.979582159759451
Pair: SYK-VRTX, Correlation: 0.9455268364833138
Pair: SYK-V, Correlation: 0.9871101183847059
Pair: SYK-VMC, Correlation: 0.9744334453793907
Pair: SYK-WRB, Correlation: 0.9631829705199239
Pair: SYK-GWW, Correlation: 0.9066947158469689
Pair: SYK-WMT, Correlation: 0.9652727920425869
Pair: SYK-WM, Correlation: 0.9836136857972271
Pair: SYK-WAT, Correlation: 0.9465032806594124
Pair: SYK-WEC, Correlation: 0.9300164847859433
Pair: SYK-WELL, Correlation: 0.9205272876417164
Pair: SYK-WST, Correlation: 0.924019713566919
Pair: SYK-WTW, Correlation: 0.9835929834339249
Pair: SYK-WDAY, Correlation: 0.922210393065514
Pair: SYK-XEL, Correlation: 0.9211177526108918
Pair: SYK-XYL, Correlation: 0.9739320848566287
Pair: SYK-YUM, Correlation: 0.9788618375955646
Pair: SYK-ZTS, Correlation: 0.9355570376371078
Pair: SNPS-TMUS, Correlation: 0.94374187503844
Pair: SNPS-TEL, Correlation: 0.9082415644106254
Pair: SNPS-TER, Correlation: 0.9023789199419632
Pair: SNPS-TXN, Correlation: 0.9162242527385225
Pair: SNPS-TPL, Correlation: 0.9065769666520803
Pair: SNPS-TMO, Correlation: 0.9238370148396645
Pair: SNPS-TJX, Correlation: 0.9474417694554194
Pair: SNPS-TSCO, Correlation: 0.9705938769431641
Pair: SNPS-TT, Correlation: 0.9622365925112485
Pair: SNPS-TDG, Correlation: 0.9653620483451012
Pair: SNPS-TRV, Correlation: 0.9095029062409533
Pair: SNPS-UNP, Correlation: 0.905752233194383
Pair: SNPS-URI, Correlation: 0.9585744842394568
Pair: SNPS-UNH, Correlation: 0.9424666521630594
Pair: SNPS-VRSK, Correlation: 0.9460384742372974
Pair: SNPS-VRTX, Correlation: 0.9391124826030647
Pair: SNPS-V, Correlation: 0.9166455188118733
Pair: SNPS-VMC, Correlation: 0.9328700066786673
Pair: SNPS-WRB, Correlation: 0.9554284478969832
Pair: SNPS-GWW, Correlation: 0.9652914111578343
Pair: SNPS-WMT, Correlation: 0.9445903543940657
Pair: SNPS-WM, Correlation: 0.9603920205186807
Pair: SNPS-WST, Correlation: 0.9151612952590749
Pair: SNPS-WTW, Correlation: 0.9187990137584169
Pair: SNPS-XYL, Correlation: 0.9052726519246224
Pair: SNPS-YUM, Correlation: 0.9121581004664061
Pair: SYY-TMUS, Correlation: 0.9127739298581892
Pair: SYY-TTWO, Correlation: 0.9241578730377626
Pair: SYY-TEL, Correlation: 0.9460562918597774
Pair: SYY-TDY, Correlation: 0.9539329387195231
Pair: SYY-TXN, Correlation: 0.9542421897568428
Pair: SYY-TMO, Correlation: 0.9307294832507952
Pair: SYY-TRV, Correlation: 0.9257749843301106
Pair: SYY-TYL, Correlation: 0.918758290476457
Pair: SYY-UDR, Correlation: 0.9416595439221883
Pair: SYY-ULTA, Correlation: 0.9312827430281694
Pair: SYY-UNP, Correlation: 0.9575606617197951
Pair: SYY-UPS, Correlation: 0.9044849051205421
Pair: SYY-UNH, Correlation: 0.9362506232728605
Pair: SYY-VRSN, Correlation: 0.941211968321586
Pair: SYY-VRSK, Correlation: 0.9177029212167153
Pair: SYY-V, Correlation: 0.9539497081206266
Pair: SYY-VMC, Correlation: 0.9139865152145337
Pair: SYY-WRB, Correlation: 0.9129088867082699
Pair: SYY-WM, Correlation: 0.9317291955677175
Pair: SYY-WAT, Correlation: 0.9538205367025329
Pair: SYY-WEC, Correlation: 0.9593238937989721
Pair: SYY-WTW, Correlation: 0.9402432033595955
Pair: SYY-XEL, Correlation: 0.9582598449091475
Pair: SYY-XYL, Correlation: 0.9298124984098628
Pair: SYY-YUM, Correlation: 0.961265947063219
Pair: SYY-ZTS, Correlation: 0.9131841507722377
Pair: TMUS-TEL, Correlation: 0.9513753096295742
Pair: TMUS-TDY, Correlation: 0.9472938676824464
Pair: TMUS-TER, Correlation: 0.931082571416473
Pair: TMUS-TXN, Correlation: 0.9739122867963887
Pair: TMUS-TPL, Correlation: 0.935585561340227
Pair: TMUS-TMO, Correlation: 0.9596142597224057
Pair: TMUS-TJX, Correlation: 0.9632523337502532
Pair: TMUS-TSCO, Correlation: 0.956631904250037
Pair: TMUS-TT, Correlation: 0.9497717899369821
Pair: TMUS-TDG, Correlation: 0.9499747832838656
Pair: TMUS-TRV, Correlation: 0.9501703743944196
Pair: TMUS-TYL, Correlation: 0.9557756273335277
Pair: TMUS-UNP, Correlation: 0.9547604972315598
Pair: TMUS-URI, Correlation: 0.9238150641527412
Pair: TMUS-UNH, Correlation: 0.9724842093205021
Pair: TMUS-VRSK, Correlation: 0.968615417653405
Pair: TMUS-VRTX, Correlation: 0.947972493082342
Pair: TMUS-VICI, Correlation: 0.9038419635676083
Pair: TMUS-V, Correlation: 0.9699955542511043
Pair: TMUS-VMC, Correlation: 0.9515730779158904
Pair: TMUS-WRB, Correlation: 0.968732107288274
Pair: TMUS-GWW, Correlation: 0.9123431961083374
Pair: TMUS-WMT, Correlation: 0.9703644925809498
Pair: TMUS-WM, Correlation: 0.9778131763047522
Pair: TMUS-WAT, Correlation: 0.9396177367414451
Pair: TMUS-WEC, Correlation: 0.9248614220239803
Pair: TMUS-WST, Correlation: 0.9218669395458122
Pair: TMUS-WTW, Correlation: 0.9755820023862001
Pair: TMUS-XEL, Correlation: 0.9193961069871983
Pair: TMUS-XYL, Correlation: 0.9509128312545418
Pair: TMUS-YUM, Correlation: 0.9524577157121225
Pair: TMUS-ZTS, Correlation: 0.9237930607648409
Pair: TROW-TTWO, Correlation: 0.9135925001457234
Pair: TROW-TGT, Correlation: 0.9415142367675623
Pair: TROW-TEL, Correlation: 0.9043316073300189
Pair: TROW-TDY, Correlation: 0.9168211007732466
Pair: TROW-TER, Correlation: 0.9174268586597284
Pair: TROW-TXN, Correlation: 0.9064510914347722
Pair: TROW-TRMB, Correlation: 0.9548786531838266
Pair: TROW-TYL, Correlation: 0.9135331224315919
Pair: TROW-UPS, Correlation: 0.9038670108185799
Pair: TROW-VRSN, Correlation: 0.9007045883706482
Pair: TROW-WAT, Correlation: 0.9131270219591433
Pair: TROW-WST, Correlation: 0.9023338017115007
Pair: TROW-ZBRA, Correlation: 0.9747820289833957
Pair: TTWO-TEL, Correlation: 0.9164942812632353
Pair: TTWO-TDY, Correlation: 0.9363824947232414
Pair: TTWO-TFX, Correlation: 0.9186809221374299
Pair: TTWO-TER, Correlation: 0.9046938445482517
Pair: TTWO-TXN, Correlation: 0.9339583291401082
Pair: TTWO-TMO, Correlation: 0.9004507831704807
Pair: TTWO-TYL, Correlation: 0.935586254057019
Pair: TTWO-UNP, Correlation: 0.9259379501158524
Pair: TTWO-VRSN, Correlation: 0.9488865863298619
Pair: TTWO-VRSK, Correlation: 0.909023706578806
Pair: TTWO-V, Correlation: 0.9398363129636749
Pair: TTWO-WAT, Correlation: 0.903788526565325
Pair: TTWO-WEC, Correlation: 0.9256515552160001
Pair: TTWO-WTW, Correlation: 0.9152104165997862
Pair: TTWO-WDAY, Correlation: 0.9126349986410257
Pair: TTWO-XEL, Correlation: 0.9322163168959094
Pair: TTWO-XYL, Correlation: 0.9095034982490465
Pair: TTWO-YUM, Correlation: 0.9093050001674214
Pair: TTWO-ZTS, Correlation: 0.9115865992882282
Pair: TRGP-WMB, Correlation: 0.958661336952076
Pair: TGT-TDY, Correlation: 0.9200973213665578
Pair: TGT-TER, Correlation: 0.9440078244683182
Pair: TGT-TSLA, Correlation: 0.9156531559611529
Pair: TGT-TXN, Correlation: 0.9118957452788787
Pair: TGT-TMO, Correlation: 0.9336526069580282
Pair: TGT-TRMB, Correlation: 0.9331434335856129
Pair: TGT-TYL, Correlation: 0.9097514908572116
Pair: TGT-UPS, Correlation: 0.9335741998143275
Pair: TGT-WAT, Correlation: 0.9094900058772124
Pair: TGT-WST, Correlation: 0.9432519948120878
Pair: TGT-ZBRA, Correlation: 0.9662910448650098
Pair: TGT-ZTS, Correlation: 0.9190714803929989
Pair: TEL-TDY, Correlation: 0.95425182791016
Pair: TEL-TER, Correlation: 0.9481982580983492
Pair: TEL-TXN, Correlation: 0.9816854223225482
Pair: TEL-TXT, Correlation: 0.9336987026233284
Pair: TEL-TMO, Correlation: 0.9665389419351691
Pair: TEL-TJX, Correlation: 0.9419732592137754
Pair: TEL-TSCO, Correlation: 0.931248571839121
Pair: TEL-TT, Correlation: 0.9022405140687435
Pair: TEL-TDG, Correlation: 0.9062599773938967
Pair: TEL-TRV, Correlation: 0.9515508345181367
Pair: TEL-TRMB, Correlation: 0.9035863667782741
Pair: TEL-TYL, Correlation: 0.9655399519741146
Pair: TEL-UDR, Correlation: 0.9156775346169551
Pair: TEL-ULTA, Correlation: 0.913544455809972
Pair: TEL-UNP, Correlation: 0.9766314132794086
Pair: TEL-UPS, Correlation: 0.9398456641564884
Pair: TEL-UNH, Correlation: 0.9596200436238049
Pair: TEL-VRSN, Correlation: 0.9012583234783144
Pair: TEL-VRSK, Correlation: 0.9562811658766888
Pair: TEL-V, Correlation: 0.963725799052083
Pair: TEL-VMC, Correlation: 0.9593624521323059
Pair: TEL-WRB, Correlation: 0.9341334165670114
Pair: TEL-WMT, Correlation: 0.9283625757608375
Pair: TEL-WM, Correlation: 0.9608994200986383
Pair: TEL-WAT, Correlation: 0.9712027989491606
Pair: TEL-WEC, Correlation: 0.9252263094851485
Pair: TEL-WST, Correlation: 0.9426286036559095
Pair: TEL-WY, Correlation: 0.9104473246880909
Pair: TEL-WTW, Correlation: 0.9649401772058888
Pair: TEL-WDAY, Correlation: 0.9100955759158293
Pair: TEL-XEL, Correlation: 0.9215386302276422
Pair: TEL-XYL, Correlation: 0.9724478484209971
Pair: TEL-YUM, Correlation: 0.970854754536783
Pair: TEL-ZBRA, Correlation: 0.9003978739551872
Pair: TEL-ZTS, Correlation: 0.9498152317373862
Pair: TDY-TER, Correlation: 0.9519164988089825
Pair: TDY-TXN, Correlation: 0.9802718854103527
Pair: TDY-TMO, Correlation: 0.9757161601224065
Pair: TDY-TJX, Correlation: 0.9169676338431734
Pair: TDY-TSCO, Correlation: 0.9054307543568241
Pair: TDY-TRV, Correlation: 0.9010097973136643
Pair: TDY-TYL, Correlation: 0.9589289096501679
Pair: TDY-UDR, Correlation: 0.9144066480182919
Pair: TDY-UNP, Correlation: 0.9776950238123633
Pair: TDY-UPS, Correlation: 0.9287492241115687
Pair: TDY-UNH, Correlation: 0.9580318995714546
Pair: TDY-VRSN, Correlation: 0.957833714503966
Pair: TDY-VRSK, Correlation: 0.9622861655295274
Pair: TDY-V, Correlation: 0.9784019138004539
Pair: TDY-VMC, Correlation: 0.9063028274293827
Pair: TDY-WRB, Correlation: 0.9260046179050401
Pair: TDY-WMT, Correlation: 0.9278428285412289
Pair: TDY-WM, Correlation: 0.9506599114294183
Pair: TDY-WAT, Correlation: 0.9581201429929659
Pair: TDY-WEC, Correlation: 0.9657842383197047
Pair: TDY-WST, Correlation: 0.9500506627439701
Pair: TDY-WTW, Correlation: 0.9693235082536741
Pair: TDY-WDAY, Correlation: 0.9286385549094794
Pair: TDY-XEL, Correlation: 0.965301175255582
Pair: TDY-XYL, Correlation: 0.9460832261044657
Pair: TDY-YUM, Correlation: 0.9701251858479357
Pair: TDY-ZBRA, Correlation: 0.921799110340946
Pair: TDY-ZTS, Correlation: 0.9816620721675046
Pair: TFX-VRSN, Correlation: 0.9192421271832091
Pair: TFX-VZ, Correlation: 0.9195561790493119
Pair: TFX-DIS, Correlation: 0.911715501532923
Pair: TER-TSLA, Correlation: 0.9256155488389961
Pair: TER-TXN, Correlation: 0.9663287384874645
Pair: TER-TMO, Correlation: 0.9668777008335805
Pair: TER-TSCO, Correlation: 0.9171384314695542
Pair: TER-TRMB, Correlation: 0.9183590137061369
Pair: TER-TYL, Correlation: 0.9560869946076114
Pair: TER-UNP, Correlation: 0.9421073723262566
Pair: TER-UPS, Correlation: 0.9228900445350616
Pair: TER-UNH, Correlation: 0.9254775596624585
Pair: TER-VRSK, Correlation: 0.940143056424992
Pair: TER-V, Correlation: 0.9323842488384082
Pair: TER-WMT, Correlation: 0.9160920949773572
Pair: TER-WM, Correlation: 0.9242968302524235
Pair: TER-WAT, Correlation: 0.9291447254860908
Pair: TER-WST, Correlation: 0.9612913992143818
Pair: TER-WTW, Correlation: 0.935966067838152
Pair: TER-WDAY, Correlation: 0.9086265714641861
Pair: TER-XYL, Correlation: 0.9375856645758411
Pair: TER-YUM, Correlation: 0.9225485257972305
Pair: TER-ZBRA, Correlation: 0.9445699380965196
Pair: TER-ZTS, Correlation: 0.9610272684836562
Pair: TSLA-TMO, Correlation: 0.9207607246870448
Pair: TSLA-UPS, Correlation: 0.9159296965065301
Pair: TSLA-WST, Correlation: 0.9391971198239759
Pair: TXN-TPL, Correlation: 0.9013175247148879
Pair: TXN-TMO, Correlation: 0.9836063853366612
Pair: TXN-TJX, Correlation: 0.9439084612093741
Pair: TXN-TSCO, Correlation: 0.9382306208796396
Pair: TXN-TT, Correlation: 0.9082935188277993
Pair: TXN-TDG, Correlation: 0.914908679987982
Pair: TXN-TRV, Correlation: 0.9377868915984509
Pair: TXN-TYL, Correlation: 0.974225163310256
Pair: TXN-UDR, Correlation: 0.9119149947179935
Pair: TXN-ULTA, Correlation: 0.9049118419004467
Pair: TXN-UNP, Correlation: 0.9795123376049756
Pair: TXN-UPS, Correlation: 0.9365325402462485
Pair: TXN-UNH, Correlation: 0.9745298136369589
Pair: TXN-VLTO, Correlation: 0.9411830079637806
Pair: TXN-VRSN, Correlation: 0.9281604249698061
Pair: TXN-VRSK, Correlation: 0.9711572281593781
Pair: TXN-VRTX, Correlation: 0.9099582601084301
Pair: TXN-VICI, Correlation: 0.9187169994523234
Pair: TXN-V, Correlation: 0.9802862499882278
Pair: TXN-VMC, Correlation: 0.9465151690388816
Pair: TXN-WRB, Correlation: 0.946640221887323
Pair: TXN-WMT, Correlation: 0.9484965036514629
Pair: TXN-WM, Correlation: 0.9734097743596215
Pair: TXN-WAT, Correlation: 0.9732152911858485
Pair: TXN-WEC, Correlation: 0.9528795874541915
Pair: TXN-WST, Correlation: 0.9517945679857731
Pair: TXN-WTW, Correlation: 0.9796984949034983
Pair: TXN-WDAY, Correlation: 0.9160960378467037
Pair: TXN-XEL, Correlation: 0.9508474068186777
Pair: TXN-XYL, Correlation: 0.9779192600161231
Pair: TXN-YUM, Correlation: 0.9762438470415171
Pair: TXN-ZBRA, Correlation: 0.9148486174763797
Pair: TXN-ZTS, Correlation: 0.9711760954492564
Pair: TPL-TJX, Correlation: 0.9197042682568707
Pair: TPL-TSCO, Correlation: 0.9280126592389757
Pair: TPL-TT, Correlation: 0.9304735327912229
Pair: TPL-TDG, Correlation: 0.9097123855949985
Pair: TPL-TRV, Correlation: 0.9115348733735595
Pair: TPL-URI, Correlation: 0.920459506394046
Pair: TPL-UNH, Correlation: 0.9297274840668789
Pair: TPL-WRB, Correlation: 0.9430254325291741
Pair: TPL-GWW, Correlation: 0.9158135525695893
Pair: TPL-WMT, Correlation: 0.9240668188431617
Pair: TPL-WM, Correlation: 0.927747234714251
Pair: TPL-WTW, Correlation: 0.9019052067589063
Pair: TXT-TJX, Correlation: 0.9077147933171487
Pair: TXT-TRV, Correlation: 0.9438397488076308
Pair: TXT-VLO, Correlation: 0.9344013994554349
Pair: TXT-VMC, Correlation: 0.9296626639582751
Pair: TXT-WM, Correlation: 0.9037009729470441
Pair: TXT-WY, Correlation: 0.9042351903607584
Pair: TXT-YUM, Correlation: 0.9049602962871868
Pair: TMO-TJX, Correlation: 0.9237923459480741
Pair: TMO-TSCO, Correlation: 0.9501993153038467
Pair: TMO-TRV, Correlation: 0.913585469537645
Pair: TMO-TYL, Correlation: 0.9613034457586497
Pair: TMO-UNP, Correlation: 0.9756112953793092
Pair: TMO-UPS, Correlation: 0.9538326237291572
Pair: TMO-UNH, Correlation: 0.9755025526376524
Pair: TMO-VRSN, Correlation: 0.9157629275432824
Pair: TMO-VRSK, Correlation: 0.9647141238599198
Pair: TMO-VICI, Correlation: 0.9021664857488824
Pair: TMO-V, Correlation: 0.9634394558962501
Pair: TMO-VMC, Correlation: 0.9228853770013671
Pair: TMO-WRB, Correlation: 0.9416272390246643
Pair: TMO-WMT, Correlation: 0.9330982169187041
Pair: TMO-WM, Correlation: 0.9645924792679381
Pair: TMO-WAT, Correlation: 0.9633225650379755
Pair: TMO-WEC, Correlation: 0.9443589668904233
Pair: TMO-WST, Correlation: 0.9729327690935176
Pair: TMO-WTW, Correlation: 0.9623496113040992
Pair: TMO-WDAY, Correlation: 0.9023264574739309
Pair: TMO-XEL, Correlation: 0.9427494161648492
Pair: TMO-XYL, Correlation: 0.9488504949616728
Pair: TMO-YUM, Correlation: 0.963533484711678
Pair: TMO-ZBRA, Correlation: 0.9146659863643164
Pair: TMO-ZTS, Correlation: 0.9786237964755519
Pair: TJX-TSCO, Correlation: 0.9578006752685276
Pair: TJX-TT, Correlation: 0.9606638814413828
Pair: TJX-TDG, Correlation: 0.9766198331656202
Pair: TJX-TRV, Correlation: 0.9682158312120082
Pair: TJX-TYL, Correlation: 0.9370852097693588
Pair: TJX-UNP, Correlation: 0.9435944708177484
Pair: TJX-URI, Correlation: 0.9454271213249388
Pair: TJX-UNH, Correlation: 0.9491426525351297
Pair: TJX-VLO, Correlation: 0.9260559227772356
Pair: TJX-VLTO, Correlation: 0.9154838159517423
Pair: TJX-VRSK, Correlation: 0.9725308775607177
Pair: TJX-VRTX, Correlation: 0.9632843725009761
Pair: TJX-V, Correlation: 0.9628712655320169
Pair: TJX-VMC, Correlation: 0.9673921618210429
Pair: TJX-WRB, Correlation: 0.9685940612952796
Pair: TJX-GWW, Correlation: 0.9470388942861019
Pair: TJX-WMT, Correlation: 0.971997115353438
Pair: TJX-WM, Correlation: 0.971376050320169
Pair: TJX-WAT, Correlation: 0.9056150882867628
Pair: TJX-WELL, Correlation: 0.9374502476901599
Pair: TJX-WTW, Correlation: 0.9620506439216572
Pair: TJX-XYL, Correlation: 0.9397773437968401
Pair: TJX-YUM, Correlation: 0.9541353919373416
Pair: TSCO-TT, Correlation: 0.958581780809979
Pair: TSCO-TDG, Correlation: 0.952253328777976
Pair: TSCO-TRV, Correlation: 0.9377419461660894
Pair: TSCO-TYL, Correlation: 0.9179056973014662
Pair: TSCO-UNP, Correlation: 0.9301995820846802
Pair: TSCO-URI, Correlation: 0.9495196739140046
Pair: TSCO-UNH, Correlation: 0.95744700153646
Pair: TSCO-VLTO, Correlation: 0.9373245523077278
Pair: TSCO-VRSK, Correlation: 0.9502797982575076
Pair: TSCO-VRTX, Correlation: 0.9317779879809087
Pair: TSCO-VICI, Correlation: 0.9263357706336506
Pair: TSCO-V, Correlation: 0.9264634893781889
Pair: TSCO-VMC, Correlation: 0.9372006396150694
Pair: TSCO-WRB, Correlation: 0.9644755630336082
Pair: TSCO-GWW, Correlation: 0.9535483020939498
Pair: TSCO-WMT, Correlation: 0.9548037294723395
Pair: TSCO-WM, Correlation: 0.965196925719875
Pair: TSCO-WAT, Correlation: 0.9051181443617415
Pair: TSCO-WST, Correlation: 0.9238098741469526
Pair: TSCO-WTW, Correlation: 0.9402366967850194
Pair: TSCO-XYL, Correlation: 0.9078389687708267
Pair: TSCO-YUM, Correlation: 0.9305926739423954
Pair: TT-TDG, Correlation: 0.9841478885727104
Pair: TT-TRV, Correlation: 0.9273667312255828
Pair: TT-TYL, Correlation: 0.9026741596041563
Pair: TT-URI, Correlation: 0.9851321568122211
Pair: TT-UNH, Correlation: 0.911379538379108
Pair: TT-VLTO, Correlation: 0.9421620980456438
Pair: TT-VRSK, Correlation: 0.9323814748764585
Pair: TT-VRTX, Correlation: 0.9318662710417858
Pair: TT-V, Correlation: 0.908450220925017
Pair: TT-VMC, Correlation: 0.9373666714951828
Pair: TT-WRB, Correlation: 0.9467880364086754
Pair: TT-GWW, Correlation: 0.9682599906533406
Pair: TT-WMT, Correlation: 0.9676115290299374
Pair: TT-WM, Correlation: 0.9497962218152375
Pair: TT-WELL, Correlation: 0.9161211363631647
Pair: TT-WTW, Correlation: 0.9257937178419169
Pair: TT-XYL, Correlation: 0.9140571149718496
Pair: TDG-TRV, Correlation: 0.9433357220418798
Pair: TDG-TYL, Correlation: 0.9057214332824419
Pair: TDG-UNP, Correlation: 0.9089341102160161
Pair: TDG-URI, Correlation: 0.9713275635966239
Pair: TDG-UNH, Correlation: 0.9211314069010799
Pair: TDG-VLO, Correlation: 0.9072448535482016
Pair: TDG-VLTO, Correlation: 0.9224515741959284
Pair: TDG-VRSK, Correlation: 0.9514668344075378
Pair: TDG-VRTX, Correlation: 0.9596252875448678
Pair: TDG-V, Correlation: 0.9352739205328385
Pair: TDG-VMC, Correlation: 0.9514424536880405
Pair: TDG-WRB, Correlation: 0.9622503961005268
Pair: TDG-GWW, Correlation: 0.968574832147418
Pair: TDG-WMT, Correlation: 0.968803598736721
Pair: TDG-WM, Correlation: 0.9632208883838078
Pair: TDG-WELL, Correlation: 0.9287902673833893
Pair: TDG-WTW, Correlation: 0.9395815443560696
Pair: TDG-XYL, Correlation: 0.9152804666221799
Pair: TDG-YUM, Correlation: 0.9180255512684683
Pair: TRV-TYL, Correlation: 0.9155992094773
Pair: TRV-ULTA, Correlation: 0.9274410959470218
Pair: TRV-UNP, Correlation: 0.9406846365064774
Pair: TRV-URI, Correlation: 0.9256597128884497
Pair: TRV-UNH, Correlation: 0.9474326290311667
Pair: TRV-VLO, Correlation: 0.9462010842694795
Pair: TRV-VRSK, Correlation: 0.9375266812274828
Pair: TRV-VRTX, Correlation: 0.9345952513195098
Pair: TRV-V, Correlation: 0.9457844848646002
Pair: TRV-VMC, Correlation: 0.9725371007490046
Pair: TRV-WRB, Correlation: 0.9705895107112243
Pair: TRV-GWW, Correlation: 0.9133492105190505
Pair: TRV-WMT, Correlation: 0.9378367824130364
Pair: TRV-WM, Correlation: 0.9663298551038125
Pair: TRV-WAT, Correlation: 0.9289907847309772
Pair: TRV-WELL, Correlation: 0.9463746950796416
Pair: TRV-WTW, Correlation: 0.9555924138010673
Pair: TRV-XYL, Correlation: 0.9297827169513962
Pair: TRV-YUM, Correlation: 0.9535095940814113
Pair: TRMB-UPS, Correlation: 0.915581781820516
Pair: TRMB-WAT, Correlation: 0.9147858497421013
Pair: TRMB-WST, Correlation: 0.9037700167227954
Pair: TRMB-ZBRA, Correlation: 0.9554845286294341
Pair: TFC-TSN, Correlation: 0.9114615871779956
Pair: TFC-USB, Correlation: 0.9677721038296765
Pair: TFC-UDR, Correlation: 0.9077420774873619
Pair: TYL-UDR, Correlation: 0.9092768396758572
Pair: TYL-UNP, Correlation: 0.9637186968279541
Pair: TYL-UPS, Correlation: 0.9048952427150192
Pair: TYL-UNH, Correlation: 0.9404733349927178
Pair: TYL-VLTO, Correlation: 0.9076449152378463
Pair: TYL-VRSN, Correlation: 0.9169489477199143
Pair: TYL-VRSK, Correlation: 0.9706931627778966
Pair: TYL-V, Correlation: 0.969024378747093
Pair: TYL-VMC, Correlation: 0.9362642914037568
Pair: TYL-WRB, Correlation: 0.9126693085993779
Pair: TYL-WMT, Correlation: 0.9449271607447901
Pair: TYL-WM, Correlation: 0.9457222090631461
Pair: TYL-WAT, Correlation: 0.9444376539257753
Pair: TYL-WEC, Correlation: 0.9401021868382752
Pair: TYL-WST, Correlation: 0.9414906515745076
Pair: TYL-WTW, Correlation: 0.9648554071108246
Pair: TYL-WDAY, Correlation: 0.9205572266799013
Pair: TYL-XEL, Correlation: 0.9324794816523047
Pair: TYL-XYL, Correlation: 0.9524329350414525
Pair: TYL-YUM, Correlation: 0.943247182598567
Pair: TYL-ZBRA, Correlation: 0.9214697660756239
Pair: TYL-ZTS, Correlation: 0.9604516049118111
Pair: TSN-USB, Correlation: 0.9200085303535774
Pair: TSN-UDR, Correlation: 0.9220228973185439
Pair: USB-UDR, Correlation: 0.9014242436870419
Pair: UDR-UNP, Correlation: 0.9171696947858529
Pair: UDR-VLTO, Correlation: 0.9208131732728528
Pair: UDR-VRSN, Correlation: 0.9242307725068666
Pair: UDR-V, Correlation: 0.9011152915639389
Pair: UDR-WAT, Correlation: 0.9352604747218193
Pair: UDR-WEC, Correlation: 0.938548810686029
Pair: UDR-XEL, Correlation: 0.9365210079334702
Pair: UDR-YUM, Correlation: 0.917325915929681
Pair: ULTA-UNP, Correlation: 0.908429381250329
Pair: ULTA-UNH, Correlation: 0.9199840732647473
Pair: ULTA-V, Correlation: 0.9082949373286914
Pair: ULTA-VMC, Correlation: 0.9154341022830493
Pair: ULTA-WRB, Correlation: 0.9032174618981289
Pair: ULTA-WM, Correlation: 0.9132083903955001
Pair: ULTA-WAT, Correlation: 0.9188827663302388
Pair: ULTA-WTW, Correlation: 0.9019031615968357
Pair: ULTA-YUM, Correlation: 0.942364697656618
Pair: UNP-UPS, Correlation: 0.9321576750137978
Pair: UNP-UNH, Correlation: 0.9683697619467313
Pair: UNP-VRSN, Correlation: 0.9355898142965818
Pair: UNP-VRSK, Correlation: 0.9725679998587787
Pair: UNP-VRTX, Correlation: 0.9164060212132336
Pair: UNP-V, Correlation: 0.980620277545801
Pair: UNP-VMC, Correlation: 0.937188338761349
Pair: UNP-WRB, Correlation: 0.9478207455476546
Pair: UNP-WMT, Correlation: 0.9424448484703639
Pair: UNP-WM, Correlation: 0.9666090090899979
Pair: UNP-WAT, Correlation: 0.9608236553445076
Pair: UNP-WEC, Correlation: 0.9559493996646923
Pair: UNP-WST, Correlation: 0.9423640510426586
Pair: UNP-WTW, Correlation: 0.9739545971208333
Pair: UNP-WDAY, Correlation: 0.9383270102833281
Pair: UNP-XEL, Correlation: 0.9511583989274224
Pair: UNP-XYL, Correlation: 0.9561648771885171
Pair: UNP-YUM, Correlation: 0.9764849808592209
Pair: UNP-ZTS, Correlation: 0.9718066333651619
Pair: UPS-UNH, Correlation: 0.9218282896436389
Pair: UPS-WAT, Correlation: 0.9373311151900803
Pair: UPS-WEC, Correlation: 0.9059279922332154
Pair: UPS-WST, Correlation: 0.9508143540566062
Pair: UPS-XEL, Correlation: 0.9145958739511005
Pair: UPS-YUM, Correlation: 0.9146459830787611
Pair: UPS-ZBRA, Correlation: 0.9072787760865466
Pair: UPS-ZTS, Correlation: 0.9166245319930398
Pair: URI-VRSK, Correlation: 0.9022616862864911
Pair: URI-VRTX, Correlation: 0.921875544778485
Pair: URI-VMC, Correlation: 0.9275639620320111
Pair: URI-WRB, Correlation: 0.9367843480538297
Pair: URI-GWW, Correlation: 0.980186935287836
Pair: URI-WMT, Correlation: 0.9424378577212761
Pair: URI-WM, Correlation: 0.929629574872892
Pair: UNH-VLO, Correlation: 0.9108145525074406
Pair: UNH-VRSK, Correlation: 0.9640480996814272
Pair: UNH-VRTX, Correlation: 0.9370678690419286
Pair: UNH-VICI, Correlation: 0.9483562024748468
Pair: UNH-V, Correlation: 0.9629655274237946
Pair: UNH-VMC, Correlation: 0.9430459345057826
Pair: UNH-WRB, Correlation: 0.9736685915161433
Pair: UNH-WMT, Correlation: 0.944025057635128
Pair: UNH-WM, Correlation: 0.9816427999443568
Pair: UNH-WAT, Correlation: 0.9533032459749778
Pair: UNH-WEC, Correlation: 0.9334392641601573
Pair: UNH-WST, Correlation: 0.9376698831818666
Pair: UNH-WTW, Correlation: 0.9629549453494721
Pair: UNH-XEL, Correlation: 0.9311033954968173
Pair: UNH-XYL, Correlation: 0.938615340498969
Pair: UNH-YUM, Correlation: 0.9676066338446967
Pair: UNH-ZTS, Correlation: 0.9416678550157307
Pair: UHS-VLTO, Correlation: 0.9525561410163393
Pair: VLO-VRTX, Correlation: 0.9214621328927431
Pair: VLO-VMC, Correlation: 0.9175568964867474
Pair: VLO-WRB, Correlation: 0.939892004723521
Pair: VLO-GWW, Correlation: 0.9072801762194084
Pair: VLO-WM, Correlation: 0.9212465065138371
Pair: VLTO-WAB, Correlation: 0.9142149353612246
Pair: VLTO-ZBRA, Correlation: 0.9352630692068991
Pair: VRSN-VRSK, Correlation: 0.9159406527752695
Pair: VRSN-V, Correlation: 0.9471572007804726
Pair: VRSN-WAT, Correlation: 0.9111862236815671
Pair: VRSN-WEC, Correlation: 0.964918529344428
Pair: VRSN-WTW, Correlation: 0.9229559519020799
Pair: VRSN-WDAY, Correlation: 0.9112772700632268
Pair: VRSN-XEL, Correlation: 0.9684506469281882
Pair: VRSN-YUM, Correlation: 0.936938008920972
Pair: VRSN-ZTS, Correlation: 0.932300485554601
Pair: VRSK-VRTX, Correlation: 0.9502436809732981
Pair: VRSK-V, Correlation: 0.9839846413610457
Pair: VRSK-VMC, Correlation: 0.9524424238247166
Pair: VRSK-WRB, Correlation: 0.9561872911247019
Pair: VRSK-GWW, Correlation: 0.9045875281858614
Pair: VRSK-WMT, Correlation: 0.9738828949967361
Pair: VRSK-WM, Correlation: 0.9766001174150594
Pair: VRSK-WAT, Correlation: 0.9262857072570929
Pair: VRSK-WEC, Correlation: 0.9377507767854264
Pair: VRSK-WELL, Correlation: 0.9061545716046774
Pair: VRSK-WST, Correlation: 0.9410647603693616
Pair: VRSK-WTW, Correlation: 0.9745249105799151
Pair: VRSK-WDAY, Correlation: 0.9245133765944019
Pair: VRSK-XEL, Correlation: 0.926911551559437
Pair: VRSK-XYL, Correlation: 0.9506640033434571
Pair: VRSK-YUM, Correlation: 0.9688733210386963
Pair: VRSK-ZTS, Correlation: 0.9569993992169059
Pair: VZ-DIS, Correlation: 0.9078704715757737
Pair: VRTX-V, Correlation: 0.9414532101641615
Pair: VRTX-VMC, Correlation: 0.924759356815082
Pair: VRTX-WRB, Correlation: 0.9565401416951335
Pair: VRTX-GWW, Correlation: 0.9349159205782946
Pair: VRTX-WMT, Correlation: 0.9567117595523051
Pair: VRTX-WM, Correlation: 0.9531415747435509
Pair: VRTX-WTW, Correlation: 0.9379549446990179
Pair: VRTX-YUM, Correlation: 0.9167122463221221
Pair: VICI-WM, Correlation: 0.910144167444714
Pair: VICI-YUM, Correlation: 0.9219418669163918
Pair: V-VMC, Correlation: 0.9528058377581731
Pair: V-WRB, Correlation: 0.9527760968927651
Pair: V-WMT, Correlation: 0.9564148312224817
Pair: V-WM, Correlation: 0.9742769229529905
Pair: V-WAT, Correlation: 0.951007330826358
Pair: V-WEC, Correlation: 0.9613862874361891
Pair: V-WST, Correlation: 0.9321695963933874
Pair: V-WTW, Correlation: 0.9853138495873187
Pair: V-WDAY, Correlation: 0.9361949973207929
Pair: V-XEL, Correlation: 0.9547791000276488
Pair: V-XYL, Correlation: 0.9671536562313449
Pair: V-YUM, Correlation: 0.98019354902246
Pair: V-ZTS, Correlation: 0.963312195503897
Pair: VMC-WRB, Correlation: 0.9545071281026645
Pair: VMC-GWW, Correlation: 0.907899769459181
Pair: VMC-WMT, Correlation: 0.9340562568938454
Pair: VMC-WM, Correlation: 0.9686567694521289
Pair: VMC-WAT, Correlation: 0.9246493140121448
Pair: VMC-WELL, Correlation: 0.9268091868999426
Pair: VMC-WTW, Correlation: 0.9532858779555448
Pair: VMC-XYL, Correlation: 0.9442671395803773
Pair: VMC-YUM, Correlation: 0.9504277875513231
Pair: WRB-GWW, Correlation: 0.9408931379716909
Pair: WRB-WMT, Correlation: 0.9577467075851618
Pair: WRB-WM, Correlation: 0.9865310207352981
Pair: WRB-WAT, Correlation: 0.9218281217933164
Pair: WRB-WEC, Correlation: 0.9023341064723592
Pair: WRB-WELL, Correlation: 0.9221585724817744
Pair: WRB-WTW, Correlation: 0.961719270357184
Pair: WRB-XYL, Correlation: 0.9209156728858807
Pair: WRB-YUM, Correlation: 0.9539623586817296
Pair: GWW-WMT, Correlation: 0.9375204997705514
Pair: GWW-WM, Correlation: 0.9268096814569259
Pair: WMT-WM, Correlation: 0.9653859315969974
Pair: WMT-WELL, Correlation: 0.918008818989946
Pair: WMT-WTW, Correlation: 0.964166751814345
Pair: WMT-XYL, Correlation: 0.9291119687257087
Pair: WMT-YUM, Correlation: 0.9370475848294267
Pair: DIS-ZBH, Correlation: 0.9206540151180836
Pair: WM-WAT, Correlation: 0.9473563902324268
Pair: WM-WEC, Correlation: 0.9253138957131574
Pair: WM-WELL, Correlation: 0.9202241102662981
Pair: WM-WST, Correlation: 0.926880702660865
Pair: WM-WTW, Correlation: 0.9762534509048698
Pair: WM-XEL, Correlation: 0.9152257490662028
Pair: WM-XYL, Correlation: 0.9622853087125207
Pair: WM-YUM, Correlation: 0.9739817066667271
Pair: WM-ZTS, Correlation: 0.9313437187626729
Pair: WAT-WEC, Correlation: 0.9360844273360822
Pair: WAT-WST, Correlation: 0.9313009873939242
Pair: WAT-WTW, Correlation: 0.9541263277624886
Pair: WAT-XEL, Correlation: 0.9371198194538164
Pair: WAT-XYL, Correlation: 0.9577617267140077
Pair: WAT-YUM, Correlation: 0.9637234078498372
Pair: WAT-ZBRA, Correlation: 0.9155552765879515
Pair: WAT-ZTS, Correlation: 0.942535326094498
Pair: WEC-WTW, Correlation: 0.9493016370779463
Pair: WEC-XEL, Correlation: 0.996226316964509
Pair: WEC-XYL, Correlation: 0.9091516475248628
Pair: WEC-YUM, Correlation: 0.9522582487241721
Pair: WEC-ZTS, Correlation: 0.9459228162621087
Pair: WELL-WTW, Correlation: 0.9061966176146686
Pair: WELL-YUM, Correlation: 0.9027928708006188
Pair: WST-WTW, Correlation: 0.9210410318585236
Pair: WST-WDAY, Correlation: 0.9035237212587021
Pair: WST-XYL, Correlation: 0.914784509028189
Pair: WST-YUM, Correlation: 0.9285398183959777
Pair: WST-ZBRA, Correlation: 0.9205552201382741
Pair: WST-ZTS, Correlation: 0.967451096591421
Pair: WTW-WDAY, Correlation: 0.9184214557113669
Pair: WTW-XEL, Correlation: 0.9432412665222067
Pair: WTW-XYL, Correlation: 0.9665461153183761
Pair: WTW-YUM, Correlation: 0.9744989820732337
Pair: WTW-ZTS, Correlation: 0.946181783732806
Pair: WDAY-XYL, Correlation: 0.9212344289693506
Pair: WDAY-YUM, Correlation: 0.9146402310666734
Pair: WDAY-ZTS, Correlation: 0.9354224195933892
Pair: XEL-XYL, Correlation: 0.9007253901176986
Pair: XEL-YUM, Correlation: 0.9466411402467643
Pair: XEL-ZTS, Correlation: 0.9425557847730087
Pair: XYL-YUM, Correlation: 0.9683871002643202
Pair: XYL-ZTS, Correlation: 0.9374540604339708
Pair: YUM-ZTS, Correlation: 0.9538417619550015
Pair: ZBRA-ZTS, Correlation: 0.9152277512493621
Number of pairs above correlation threshold: 29608

Processing pair MMM-HAS

Processing pair MMM-IFF

Processing pair MMM-LUV

Processing pair MMM-VLTO
ADF test for MMM-VLTO failed with LinAlgError

Processing pair AOS-ACN

Processing pair AOS-LNT

Processing pair AOS-ALL

Processing pair AOS-GOOGL

Processing pair AOS-GOOG

Processing pair AOS-MO

Processing pair AOS-AEE

Processing pair AOS-AEP

Processing pair AOS-AME

Processing pair AOS-AMGN

Processing pair AOS-APH

Processing pair AOS-ADI

Processing pair AOS-AON

Processing pair AOS-AIZ

Processing pair AOS-ATO

Processing pair AOS-ADP

Processing pair AOS-AVB

Processing pair AOS-AVY

Processing pair AOS-BAC

Processing pair AOS-BDX

Processing pair AOS-BLK

Processing pair AOS-BK

Processing pair AOS-BKNG

Processing pair AOS-BSX

Processing pair AOS-BR

Processing pair AOS-COF

Processing pair AOS-CARR
ADF test for AOS-CARR failed with LinAlgError

Processing pair AOS-CBOE
ADF test for AOS-CBOE failed with LinAlgError

Processing pair AOS-CBRE

Processing pair AOS-CDW
ADF test for AOS-CDW failed with LinAlgError

Processing pair AOS-CE

Processing pair AOS-CNC

Processing pair AOS-SCHW

Processing pair AOS-CB

Processing pair AOS-CHD

Processing pair AOS-CI

Processing pair AOS-CINF

Processing pair AOS-CSCO

Processing pair AOS-CME

Processing pair AOS-CMS

Processing pair AOS-KO

Processing pair AOS-CTSH

Processing pair AOS-CL

Processing pair AOS-CMCSA

Processing pair AOS-ED

Processing pair AOS-STZ

Processing pair AOS-COO

Processing pair AOS-GLW

Processing pair AOS-CSX

Processing pair AOS-CMI

Processing pair AOS-DRI

Processing pair AOS-DLR

Processing pair AOS-DFS

Processing pair AOS-DPZ

Processing pair AOS-DOV

Processing pair AOS-DTE

Processing pair AOS-DUK

Processing pair AOS-EMN

Processing pair AOS-EBAY

Processing pair AOS-ECL

Processing pair AOS-EIX

Processing pair AOS-EA

Processing pair AOS-ELV

Processing pair AOS-EMR

Processing pair AOS-EFX

Processing pair AOS-EQIX

Processing pair AOS-EG

Processing pair AOS-EVRG

Processing pair AOS-EXPD

Processing pair AOS-EXR

Processing pair AOS-FDS

Processing pair AOS-FDX

Processing pair AOS-FITB

Processing pair AOS-FI

Processing pair AOS-GD

Processing pair AOS-GL

Processing pair AOS-GS

Processing pair AOS-HIG

Processing pair AOS-HCA
ADF test for AOS-HCA failed with LinAlgError

Processing pair AOS-HOLX

Processing pair AOS-HD

Processing pair AOS-HON

Processing pair AOS-HBAN

Processing pair AOS-HII
ADF test for AOS-HII failed with LinAlgError

Processing pair AOS-IEX

Processing pair AOS-ITW

Processing pair AOS-ICE

Processing pair AOS-IPG

Processing pair AOS-INTU

Processing pair AOS-JBHT

Processing pair AOS-JKHY

Processing pair AOS-JNJ

Processing pair AOS-JCI

Processing pair AOS-JPM

Processing pair AOS-KMB

Processing pair AOS-LHX

Processing pair AOS-LH

Processing pair AOS-LII

Processing pair AOS-LYV

Processing pair AOS-LMT

Processing pair AOS-LOW

Processing pair AOS-LYB
ADF test for AOS-LYB failed with LinAlgError

Processing pair AOS-MAR

Processing pair AOS-MMC

Processing pair AOS-MLM

Processing pair AOS-MAS

Processing pair AOS-MA

Processing pair AOS-MCD

Processing pair AOS-MTD

Processing pair AOS-MGM

Processing pair AOS-MCHP

Processing pair AOS-MU

Processing pair AOS-MDLZ

Processing pair AOS-MNST

Processing pair AOS-MCO

Processing pair AOS-MS

Processing pair AOS-NDAQ

Processing pair AOS-NI

Processing pair AOS-NDSN

Processing pair AOS-NSC

Processing pair AOS-NOC

Processing pair AOS-NVR

Processing pair AOS-NXPI
ADF test for AOS-NXPI failed with LinAlgError

Processing pair AOS-OMC

Processing pair AOS-OTIS
ADF test for AOS-OTIS failed with LinAlgError

Processing pair AOS-PKG

Processing pair AOS-PAYX

Processing pair AOS-PEP

Processing pair AOS-PM

Processing pair AOS-PNC

Processing pair AOS-PPG

Processing pair AOS-PFG

Processing pair AOS-PRU

Processing pair AOS-PEG

Processing pair AOS-PTC

Processing pair AOS-PSA

Processing pair AOS-DGX

Processing pair AOS-RJF

Processing pair AOS-RTX

Processing pair AOS-RF

Processing pair AOS-RSG

Processing pair AOS-ROK

Processing pair AOS-ROL

Processing pair AOS-ROP

Processing pair AOS-ROST

Processing pair AOS-SPGI

Processing pair AOS-CRM

Processing pair AOS-SRE

Processing pair AOS-SHW

Processing pair AOS-SNA

Processing pair AOS-SBUX

Processing pair AOS-STE

Processing pair AOS-SYK

Processing pair AOS-SYY

Processing pair AOS-TMUS

Processing pair AOS-TEL

Processing pair AOS-TXN

Processing pair AOS-TXT

Processing pair AOS-TJX

Processing pair AOS-TRV

Processing pair AOS-TYL

Processing pair AOS-ULTA

Processing pair AOS-UNP

Processing pair AOS-UNH

Processing pair AOS-VRSK

Processing pair AOS-V

Processing pair AOS-VMC

Processing pair AOS-WM

Processing pair AOS-WAT

Processing pair AOS-WY

Processing pair AOS-WTW

Processing pair AOS-XYL
ADF test for AOS-XYL failed with LinAlgError

Processing pair AOS-YUM

Processing pair ABT-ACN

Processing pair ABT-ADBE

Processing pair ABT-AMD

Processing pair ABT-AES

Processing pair ABT-A

Processing pair ABT-APD

Processing pair ABT-AKAM

Processing pair ABT-ARE

Processing pair ABT-ALLE
ADF test for ABT-ALLE failed with LinAlgError

Processing pair ABT-LNT

Processing pair ABT-ALL

Processing pair ABT-GOOGL

Processing pair ABT-GOOG

Processing pair ABT-AMZN

Processing pair ABT-AEE

Processing pair ABT-AEP

Processing pair ABT-AMT

Processing pair ABT-AWK

Processing pair ABT-AME

Processing pair ABT-AMGN

Processing pair ABT-APH

Processing pair ABT-ADI

Processing pair ABT-ANSS

Processing pair ABT-AON

Processing pair ABT-AAPL

Processing pair ABT-AIZ

Processing pair ABT-ATO

Processing pair ABT-ADSK

Processing pair ABT-ADP

Processing pair ABT-AVY

Processing pair ABT-BALL

Processing pair ABT-BAC

Processing pair ABT-BDX

Processing pair ABT-BBY

Processing pair ABT-TECH

Processing pair ABT-BLK

Processing pair ABT-BX

Processing pair ABT-BR

Processing pair ABT-BRO

Processing pair ABT-CHRW

Processing pair ABT-CPT

Processing pair ABT-CBRE

Processing pair ABT-CDW
ADF test for ABT-CDW failed with LinAlgError

Processing pair ABT-CE

Processing pair ABT-CNC

Processing pair ABT-CRL

Processing pair ABT-SCHW

Processing pair ABT-CHD

Processing pair ABT-CINF

Processing pair ABT-CSCO

Processing pair ABT-CME

Processing pair ABT-CMS

Processing pair ABT-KO

Processing pair ABT-CMCSA

Processing pair ABT-COO

Processing pair ABT-CPRT

Processing pair ABT-GLW

Processing pair ABT-CSGP

Processing pair ABT-CCI

Processing pair ABT-CSX

Processing pair ABT-CMI

Processing pair ABT-DHR

Processing pair ABT-DRI

Processing pair ABT-DE

Processing pair ABT-DXCM

Processing pair ABT-DLR

Processing pair ABT-DFS

Processing pair ABT-DG

Processing pair ABT-DPZ

Processing pair ABT-DOV

Processing pair ABT-DTE

Processing pair ABT-DUK

Processing pair ABT-EBAY

Processing pair ABT-ECL

Processing pair ABT-EW

Processing pair ABT-ELV

Processing pair ABT-EMR

Processing pair ABT-ETR

Processing pair ABT-EFX

Processing pair ABT-EQIX

Processing pair ABT-EVRG

Processing pair ABT-ES

Processing pair ABT-EXPD

Processing pair ABT-EXR

Processing pair ABT-FDS

Processing pair ABT-FAST

Processing pair ABT-FITB

Processing pair ABT-FI

Processing pair ABT-FTNT

Processing pair ABT-GRMN

Processing pair ABT-GEN

Processing pair ABT-GL

Processing pair ABT-HCA
ADF test for ABT-HCA failed with LinAlgError

Processing pair ABT-HSY

Processing pair ABT-HOLX

Processing pair ABT-HD

Processing pair ABT-HON

Processing pair ABT-HUM

Processing pair ABT-IEX

Processing pair ABT-IDXX

Processing pair ABT-ITW

Processing pair ABT-PODD

Processing pair ABT-ICE

Processing pair ABT-IPG

Processing pair ABT-INTU

Processing pair ABT-ISRG

Processing pair ABT-INVH
ADF test for ABT-INVH failed with LinAlgError

Processing pair ABT-IQV
ADF test for ABT-IQV failed with LinAlgError

Processing pair ABT-JBHT

Processing pair ABT-JKHY

Processing pair ABT-J

Processing pair ABT-JNJ

Processing pair ABT-JCI

Processing pair ABT-JPM

Processing pair ABT-KDP

Processing pair ABT-KEYS
ADF test for ABT-KEYS failed with LinAlgError

Processing pair ABT-LHX

Processing pair ABT-LH

Processing pair ABT-LDOS

Processing pair ABT-LIN

Processing pair ABT-LYV

Processing pair ABT-LMT

Processing pair ABT-LOW

Processing pair ABT-LULU

Processing pair ABT-MMC

Processing pair ABT-MAS

Processing pair ABT-MA

Processing pair ABT-MKC

Processing pair ABT-MCD

Processing pair ABT-MTD

Processing pair ABT-MCHP

Processing pair ABT-MU

Processing pair ABT-MSFT

Processing pair ABT-MAA

Processing pair ABT-MOH

Processing pair ABT-MDLZ

Processing pair ABT-MNST

Processing pair ABT-MCO

Processing pair ABT-MS

Processing pair ABT-MSCI

Processing pair ABT-NDAQ

Processing pair ABT-NFLX

Processing pair ABT-NEE

Processing pair ABT-NKE

Processing pair ABT-NDSN

Processing pair ABT-NSC

Processing pair ABT-NOC

Processing pair ABT-NVR

Processing pair ABT-NXPI
ADF test for ABT-NXPI failed with LinAlgError

Processing pair ABT-ODFL

Processing pair ABT-PKG

Processing pair ABT-PAYX

Processing pair ABT-PEP

Processing pair ABT-PNC

Processing pair ABT-POOL

Processing pair ABT-PG

Processing pair ABT-PLD

Processing pair ABT-PEG

Processing pair ABT-PTC

Processing pair ABT-PSA

Processing pair ABT-QCOM

Processing pair ABT-DGX

Processing pair ABT-RJF

Processing pair ABT-O

Processing pair ABT-RF

Processing pair ABT-RSG

Processing pair ABT-RMD

Processing pair ABT-RVTY

Processing pair ABT-ROK

Processing pair ABT-ROL

Processing pair ABT-ROP

Processing pair ABT-ROST

Processing pair ABT-SPGI

Processing pair ABT-CRM

Processing pair ABT-SBAC

Processing pair ABT-STX

Processing pair ABT-SRE

Processing pair ABT-NOW
ADF test for ABT-NOW failed with LinAlgError

Processing pair ABT-SHW

Processing pair ABT-SO

Processing pair ABT-SBUX

Processing pair ABT-STE

Processing pair ABT-SYK

Processing pair ABT-SYY

Processing pair ABT-TMUS

Processing pair ABT-TROW

Processing pair ABT-TTWO

Processing pair ABT-TGT

Processing pair ABT-TEL

Processing pair ABT-TDY

Processing pair ABT-TER

Processing pair ABT-TXN

Processing pair ABT-TMO

Processing pair ABT-TJX

Processing pair ABT-TSCO

Processing pair ABT-TRMB

Processing pair ABT-TYL

Processing pair ABT-UDR

Processing pair ABT-UNP

Processing pair ABT-UPS

Processing pair ABT-UNH

Processing pair ABT-VRSN

Processing pair ABT-VRSK

Processing pair ABT-V

Processing pair ABT-VMC

Processing pair ABT-WRB

Processing pair ABT-WMT

Processing pair ABT-WM

Processing pair ABT-WAT

Processing pair ABT-WEC

Processing pair ABT-WST

Processing pair ABT-WTW

Processing pair ABT-WDAY
ADF test for ABT-WDAY failed with LinAlgError

Processing pair ABT-XEL

Processing pair ABT-XYL
ADF test for ABT-XYL failed with LinAlgError

Processing pair ABT-YUM

Processing pair ABT-ZBRA

Processing pair ABT-ZTS
ADF test for ABT-ZTS failed with LinAlgError

Processing pair ABBV-ACN
ADF test for ABBV-ACN failed with LinAlgError

Processing pair ABBV-AMD
ADF test for ABBV-AMD failed with LinAlgError

Processing pair ABBV-AFL
ADF test for ABBV-AFL failed with LinAlgError

Processing pair ABBV-A
ADF test for ABBV-A failed with LinAlgError

Processing pair ABBV-ALL
ADF test for ABBV-ALL failed with LinAlgError

Processing pair ABBV-GOOGL
ADF test for ABBV-GOOGL failed with LinAlgError

Processing pair ABBV-GOOG
ADF test for ABBV-GOOG failed with LinAlgError

Processing pair ABBV-AXP
ADF test for ABBV-AXP failed with LinAlgError

Processing pair ABBV-AMP
ADF test for ABBV-AMP failed with LinAlgError

Processing pair ABBV-AME
ADF test for ABBV-AME failed with LinAlgError

Processing pair ABBV-AMGN
ADF test for ABBV-AMGN failed with LinAlgError

Processing pair ABBV-APH
ADF test for ABBV-APH failed with LinAlgError

Processing pair ABBV-ADI
ADF test for ABBV-ADI failed with LinAlgError

Processing pair ABBV-AON
ADF test for ABBV-AON failed with LinAlgError

Processing pair ABBV-APO
ADF test for ABBV-APO failed with LinAlgError

Processing pair ABBV-AAPL
ADF test for ABBV-AAPL failed with LinAlgError

Processing pair ABBV-AMAT
ADF test for ABBV-AMAT failed with LinAlgError

Processing pair ABBV-ACGL
ADF test for ABBV-ACGL failed with LinAlgError

Processing pair ABBV-ANET
ADF test for ABBV-ANET failed with LinAlgError

Processing pair ABBV-AJG
ADF test for ABBV-AJG failed with LinAlgError

Processing pair ABBV-AIZ
ADF test for ABBV-AIZ failed with LinAlgError

Processing pair ABBV-ADP
ADF test for ABBV-ADP failed with LinAlgError

Processing pair ABBV-AZO
ADF test for ABBV-AZO failed with LinAlgError

Processing pair ABBV-AVY
ADF test for ABBV-AVY failed with LinAlgError

Processing pair ABBV-AXON
ADF test for ABBV-AXON failed with LinAlgError

Processing pair ABBV-BLK
ADF test for ABBV-BLK failed with LinAlgError

Processing pair ABBV-BX
ADF test for ABBV-BX failed with LinAlgError

Processing pair ABBV-BSX
ADF test for ABBV-BSX failed with LinAlgError

Processing pair ABBV-AVGO
ADF test for ABBV-AVGO failed with LinAlgError

Processing pair ABBV-BR
ADF test for ABBV-BR failed with LinAlgError

Processing pair ABBV-BRO
ADF test for ABBV-BRO failed with LinAlgError

Processing pair ABBV-BLDR
ADF test for ABBV-BLDR failed with LinAlgError

Processing pair ABBV-CDNS
ADF test for ABBV-CDNS failed with LinAlgError

Processing pair ABBV-CAT
ADF test for ABBV-CAT failed with LinAlgError

Processing pair ABBV-CBOE
ADF test for ABBV-CBOE failed with LinAlgError

Processing pair ABBV-CBRE
ADF test for ABBV-CBRE failed with LinAlgError

Processing pair ABBV-CDW
ADF test for ABBV-CDW failed with LinAlgError

Processing pair ABBV-COR
ADF test for ABBV-COR failed with LinAlgError

Processing pair ABBV-CVX
ADF test for ABBV-CVX failed with LinAlgError

Processing pair ABBV-CMG
ADF test for ABBV-CMG failed with LinAlgError

Processing pair ABBV-CB
ADF test for ABBV-CB failed with LinAlgError

Processing pair ABBV-CI
ADF test for ABBV-CI failed with LinAlgError

Processing pair ABBV-CTAS
ADF test for ABBV-CTAS failed with LinAlgError

Processing pair ABBV-KO
ADF test for ABBV-KO failed with LinAlgError

Processing pair ABBV-CL
ADF test for ABBV-CL failed with LinAlgError

Processing pair ABBV-ED
ADF test for ABBV-ED failed with LinAlgError

Processing pair ABBV-CPRT
ADF test for ABBV-CPRT failed with LinAlgError

Processing pair ABBV-COST
ADF test for ABBV-COST failed with LinAlgError

Processing pair ABBV-CSX
ADF test for ABBV-CSX failed with LinAlgError

Processing pair ABBV-CMI
ADF test for ABBV-CMI failed with LinAlgError

Processing pair ABBV-DHR
ADF test for ABBV-DHR failed with LinAlgError

Processing pair ABBV-DRI
ADF test for ABBV-DRI failed with LinAlgError

Processing pair ABBV-DECK
ADF test for ABBV-DECK failed with LinAlgError

Processing pair ABBV-DE
ADF test for ABBV-DE failed with LinAlgError

Processing pair ABBV-DFS
ADF test for ABBV-DFS failed with LinAlgError

Processing pair ABBV-DOV
ADF test for ABBV-DOV failed with LinAlgError

Processing pair ABBV-DHI
ADF test for ABBV-DHI failed with LinAlgError

Processing pair ABBV-DUK
ADF test for ABBV-DUK failed with LinAlgError

Processing pair ABBV-ETN
ADF test for ABBV-ETN failed with LinAlgError

Processing pair ABBV-ELV
ADF test for ABBV-ELV failed with LinAlgError

Processing pair ABBV-EMR
ADF test for ABBV-EMR failed with LinAlgError

Processing pair ABBV-ETR
ADF test for ABBV-ETR failed with LinAlgError

Processing pair ABBV-ERIE
ADF test for ABBV-ERIE failed with LinAlgError

Processing pair ABBV-EG
ADF test for ABBV-EG failed with LinAlgError

Processing pair ABBV-EXC
ADF test for ABBV-EXC failed with LinAlgError

Processing pair ABBV-EXPD
ADF test for ABBV-EXPD failed with LinAlgError

Processing pair ABBV-FDS
ADF test for ABBV-FDS failed with LinAlgError

Processing pair ABBV-FAST
ADF test for ABBV-FAST failed with LinAlgError

Processing pair ABBV-FTNT
ADF test for ABBV-FTNT failed with LinAlgError

Processing pair ABBV-IT
ADF test for ABBV-IT failed with LinAlgError

Processing pair ABBV-GD
ADF test for ABBV-GD failed with LinAlgError

Processing pair ABBV-GPC
ADF test for ABBV-GPC failed with LinAlgError

Processing pair ABBV-GS
ADF test for ABBV-GS failed with LinAlgError

Processing pair ABBV-HIG
ADF test for ABBV-HIG failed with LinAlgError

Processing pair ABBV-HCA
ADF test for ABBV-HCA failed with LinAlgError

Processing pair ABBV-HSY
ADF test for ABBV-HSY failed with LinAlgError

Processing pair ABBV-HLT
ADF test for ABBV-HLT failed with LinAlgError

Processing pair ABBV-HOLX
ADF test for ABBV-HOLX failed with LinAlgError

Processing pair ABBV-HD
ADF test for ABBV-HD failed with LinAlgError

Processing pair ABBV-HPQ
ADF test for ABBV-HPQ failed with LinAlgError

Processing pair ABBV-HUBB
ADF test for ABBV-HUBB failed with LinAlgError

Processing pair ABBV-ITW
ADF test for ABBV-ITW failed with LinAlgError

Processing pair ABBV-IR
ADF test for ABBV-IR failed with LinAlgError

Processing pair ABBV-ICE
ADF test for ABBV-ICE failed with LinAlgError

Processing pair ABBV-INTU
ADF test for ABBV-INTU failed with LinAlgError

Processing pair ABBV-ISRG
ADF test for ABBV-ISRG failed with LinAlgError

Processing pair ABBV-IRM
ADF test for ABBV-IRM failed with LinAlgError

Processing pair ABBV-JBHT
ADF test for ABBV-JBHT failed with LinAlgError

Processing pair ABBV-JBL
ADF test for ABBV-JBL failed with LinAlgError

Processing pair ABBV-J
ADF test for ABBV-J failed with LinAlgError

Processing pair ABBV-JNJ
ADF test for ABBV-JNJ failed with LinAlgError

Processing pair ABBV-JPM
ADF test for ABBV-JPM failed with LinAlgError

Processing pair ABBV-JNPR
ADF test for ABBV-JNPR failed with LinAlgError

Processing pair ABBV-KKR
ADF test for ABBV-KKR failed with LinAlgError

Processing pair ABBV-KLAC
ADF test for ABBV-KLAC failed with LinAlgError

Processing pair ABBV-LRCX
ADF test for ABBV-LRCX failed with LinAlgError

Processing pair ABBV-LDOS
ADF test for ABBV-LDOS failed with LinAlgError

Processing pair ABBV-LEN
ADF test for ABBV-LEN failed with LinAlgError

Processing pair ABBV-LLY
ADF test for ABBV-LLY failed with LinAlgError

Processing pair ABBV-LIN
ADF test for ABBV-LIN failed with LinAlgError

Processing pair ABBV-LMT
ADF test for ABBV-LMT failed with LinAlgError

Processing pair ABBV-LOW
ADF test for ABBV-LOW failed with LinAlgError

Processing pair ABBV-MPC
ADF test for ABBV-MPC failed with LinAlgError

Processing pair ABBV-MAR
ADF test for ABBV-MAR failed with LinAlgError

Processing pair ABBV-MMC
ADF test for ABBV-MMC failed with LinAlgError

Processing pair ABBV-MLM
ADF test for ABBV-MLM failed with LinAlgError

Processing pair ABBV-MAS
ADF test for ABBV-MAS failed with LinAlgError

Processing pair ABBV-MA
ADF test for ABBV-MA failed with LinAlgError

Processing pair ABBV-MCD
ADF test for ABBV-MCD failed with LinAlgError

Processing pair ABBV-MRK
ADF test for ABBV-MRK failed with LinAlgError

Processing pair ABBV-MET
ADF test for ABBV-MET failed with LinAlgError

Processing pair ABBV-MCHP
ADF test for ABBV-MCHP failed with LinAlgError

Processing pair ABBV-MSFT
ADF test for ABBV-MSFT failed with LinAlgError

Processing pair ABBV-MOH
ADF test for ABBV-MOH failed with LinAlgError

Processing pair ABBV-MDLZ
ADF test for ABBV-MDLZ failed with LinAlgError

Processing pair ABBV-MPWR
ADF test for ABBV-MPWR failed with LinAlgError

Processing pair ABBV-MNST
ADF test for ABBV-MNST failed with LinAlgError

Processing pair ABBV-MCO
ADF test for ABBV-MCO failed with LinAlgError

Processing pair ABBV-MS
ADF test for ABBV-MS failed with LinAlgError

Processing pair ABBV-MSI
ADF test for ABBV-MSI failed with LinAlgError

Processing pair ABBV-MSCI
ADF test for ABBV-MSCI failed with LinAlgError

Processing pair ABBV-NDAQ
ADF test for ABBV-NDAQ failed with LinAlgError

Processing pair ABBV-NDSN
ADF test for ABBV-NDSN failed with LinAlgError

Processing pair ABBV-NOC
ADF test for ABBV-NOC failed with LinAlgError

Processing pair ABBV-NUE
ADF test for ABBV-NUE failed with LinAlgError

Processing pair ABBV-NVR
ADF test for ABBV-NVR failed with LinAlgError

Processing pair ABBV-NXPI
ADF test for ABBV-NXPI failed with LinAlgError

Processing pair ABBV-ORLY
ADF test for ABBV-ORLY failed with LinAlgError

Processing pair ABBV-ODFL
ADF test for ABBV-ODFL failed with LinAlgError

Processing pair ABBV-ON
ADF test for ABBV-ON failed with LinAlgError

Processing pair ABBV-ORCL
ADF test for ABBV-ORCL failed with LinAlgError

Processing pair ABBV-PCAR
ADF test for ABBV-PCAR failed with LinAlgError

Processing pair ABBV-PKG
ADF test for ABBV-PKG failed with LinAlgError

Processing pair ABBV-PANW
ADF test for ABBV-PANW failed with LinAlgError

Processing pair ABBV-PH
ADF test for ABBV-PH failed with LinAlgError

Processing pair ABBV-PAYX
ADF test for ABBV-PAYX failed with LinAlgError

Processing pair ABBV-PEP
ADF test for ABBV-PEP failed with LinAlgError

Processing pair ABBV-PM
ADF test for ABBV-PM failed with LinAlgError

Processing pair ABBV-PFG
ADF test for ABBV-PFG failed with LinAlgError

Processing pair ABBV-PG
ADF test for ABBV-PG failed with LinAlgError

Processing pair ABBV-PGR
ADF test for ABBV-PGR failed with LinAlgError

Processing pair ABBV-PLD
ADF test for ABBV-PLD failed with LinAlgError

Processing pair ABBV-PEG
ADF test for ABBV-PEG failed with LinAlgError

Processing pair ABBV-PTC
ADF test for ABBV-PTC failed with LinAlgError

Processing pair ABBV-PSA
ADF test for ABBV-PSA failed with LinAlgError

Processing pair ABBV-PWR
ADF test for ABBV-PWR failed with LinAlgError

Processing pair ABBV-DGX
ADF test for ABBV-DGX failed with LinAlgError

Processing pair ABBV-RJF
ADF test for ABBV-RJF failed with LinAlgError

Processing pair ABBV-RTX
ADF test for ABBV-RTX failed with LinAlgError

Processing pair ABBV-RF
ADF test for ABBV-RF failed with LinAlgError

Processing pair ABBV-RSG
ADF test for ABBV-RSG failed with LinAlgError

Processing pair ABBV-ROL
ADF test for ABBV-ROL failed with LinAlgError

Processing pair ABBV-ROP
ADF test for ABBV-ROP failed with LinAlgError

Processing pair ABBV-SPGI
ADF test for ABBV-SPGI failed with LinAlgError

Processing pair ABBV-SRE
ADF test for ABBV-SRE failed with LinAlgError

Processing pair ABBV-NOW
ADF test for ABBV-NOW failed with LinAlgError

Processing pair ABBV-SHW
ADF test for ABBV-SHW failed with LinAlgError

Processing pair ABBV-SNA
ADF test for ABBV-SNA failed with LinAlgError

Processing pair ABBV-SO
ADF test for ABBV-SO failed with LinAlgError

Processing pair ABBV-STLD
ADF test for ABBV-STLD failed with LinAlgError

Processing pair ABBV-STE
ADF test for ABBV-STE failed with LinAlgError

Processing pair ABBV-SYK
ADF test for ABBV-SYK failed with LinAlgError

Processing pair ABBV-SNPS
ADF test for ABBV-SNPS failed with LinAlgError

Processing pair ABBV-TMUS
ADF test for ABBV-TMUS failed with LinAlgError

Processing pair ABBV-TEL
ADF test for ABBV-TEL failed with LinAlgError

Processing pair ABBV-TXN
ADF test for ABBV-TXN failed with LinAlgError

Processing pair ABBV-TPL
ADF test for ABBV-TPL failed with LinAlgError

Processing pair ABBV-TMO
ADF test for ABBV-TMO failed with LinAlgError

Processing pair ABBV-TJX
ADF test for ABBV-TJX failed with LinAlgError

Processing pair ABBV-TSCO
ADF test for ABBV-TSCO failed with LinAlgError

Processing pair ABBV-TT
ADF test for ABBV-TT failed with LinAlgError

Processing pair ABBV-TDG
ADF test for ABBV-TDG failed with LinAlgError

Processing pair ABBV-TRV
ADF test for ABBV-TRV failed with LinAlgError

Processing pair ABBV-UNP
ADF test for ABBV-UNP failed with LinAlgError

Processing pair ABBV-URI
ADF test for ABBV-URI failed with LinAlgError

Processing pair ABBV-UNH
ADF test for ABBV-UNH failed with LinAlgError

Processing pair ABBV-VLO
ADF test for ABBV-VLO failed with LinAlgError

Processing pair ABBV-VRSK
ADF test for ABBV-VRSK failed with LinAlgError

Processing pair ABBV-VRTX
ADF test for ABBV-VRTX failed with LinAlgError

Processing pair ABBV-V
ADF test for ABBV-V failed with LinAlgError

Processing pair ABBV-VMC
ADF test for ABBV-VMC failed with LinAlgError

Processing pair ABBV-WRB
ADF test for ABBV-WRB failed with LinAlgError

Processing pair ABBV-GWW
ADF test for ABBV-GWW failed with LinAlgError

Processing pair ABBV-WMT
ADF test for ABBV-WMT failed with LinAlgError

Processing pair ABBV-WM
ADF test for ABBV-WM failed with LinAlgError

Processing pair ABBV-WTW
ADF test for ABBV-WTW failed with LinAlgError

Processing pair ABBV-YUM
ADF test for ABBV-YUM failed with LinAlgError

Processing pair ACN-ADBE

Processing pair ACN-AMD

Processing pair ACN-AFL

Processing pair ACN-A

Processing pair ACN-APD

Processing pair ACN-ALLE
ADF test for ACN-ALLE failed with LinAlgError

Processing pair ACN-LNT

Processing pair ACN-ALL

Processing pair ACN-GOOGL

Processing pair ACN-GOOG

Processing pair ACN-AMZN

Processing pair ACN-AEE

Processing pair ACN-AEP

Processing pair ACN-AXP

Processing pair ACN-AMT

Processing pair ACN-AWK

Processing pair ACN-AMP

Processing pair ACN-AME

Processing pair ACN-AMGN

Processing pair ACN-APH

Processing pair ACN-ADI

Processing pair ACN-ANSS

Processing pair ACN-AON

Processing pair ACN-APO
ADF test for ACN-APO failed with LinAlgError

Processing pair ACN-AAPL

Processing pair ACN-AMAT

Processing pair ACN-AJG

Processing pair ACN-AIZ

Processing pair ACN-ATO

Processing pair ACN-ADSK

Processing pair ACN-ADP

Processing pair ACN-AZO

Processing pair ACN-AVY

Processing pair ACN-BAC

Processing pair ACN-BBY

Processing pair ACN-TECH

Processing pair ACN-BLK

Processing pair ACN-BX

Processing pair ACN-BSX

Processing pair ACN-BR

Processing pair ACN-BRO

Processing pair ACN-CHRW

Processing pair ACN-CDNS

Processing pair ACN-CPT

Processing pair ACN-COF

Processing pair ACN-CAT

Processing pair ACN-CBOE
ADF test for ACN-CBOE failed with LinAlgError

Processing pair ACN-CBRE

Processing pair ACN-CDW
ADF test for ACN-CDW failed with LinAlgError

Processing pair ACN-CE

Processing pair ACN-CNC

Processing pair ACN-CRL

Processing pair ACN-SCHW

Processing pair ACN-CMG

Processing pair ACN-CB

Processing pair ACN-CHD

Processing pair ACN-CI

Processing pair ACN-CINF

Processing pair ACN-CTAS

Processing pair ACN-CSCO

Processing pair ACN-CME

Processing pair ACN-CMS

Processing pair ACN-KO

Processing pair ACN-ED

Processing pair ACN-COO

Processing pair ACN-CPRT

Processing pair ACN-GLW

Processing pair ACN-CSGP

Processing pair ACN-COST

Processing pair ACN-CSX

Processing pair ACN-CMI

Processing pair ACN-DHR

Processing pair ACN-DRI

Processing pair ACN-DE

Processing pair ACN-DXCM

Processing pair ACN-DLR

Processing pair ACN-DFS

Processing pair ACN-DPZ

Processing pair ACN-DOV

Processing pair ACN-DHI

Processing pair ACN-DTE

Processing pair ACN-DUK

Processing pair ACN-EBAY

Processing pair ACN-ECL

Processing pair ACN-EW

Processing pair ACN-ELV

Processing pair ACN-EMR

Processing pair ACN-ETR

Processing pair ACN-EFX

Processing pair ACN-EQIX

Processing pair ACN-EG

Processing pair ACN-EXC

Processing pair ACN-EXPD

Processing pair ACN-EXR

Processing pair ACN-FDS

Processing pair ACN-FAST

Processing pair ACN-FITB

Processing pair ACN-FI

Processing pair ACN-FTNT

Processing pair ACN-GRMN

Processing pair ACN-IT

Processing pair ACN-GEN

Processing pair ACN-GPC

Processing pair ACN-GL

Processing pair ACN-GS

Processing pair ACN-HIG

Processing pair ACN-HCA
ADF test for ACN-HCA failed with LinAlgError

Processing pair ACN-HSY

Processing pair ACN-HLT
ADF test for ACN-HLT failed with LinAlgError

Processing pair ACN-HOLX

Processing pair ACN-HD

Processing pair ACN-HON

Processing pair ACN-HPQ

Processing pair ACN-HUM

Processing pair ACN-IEX

Processing pair ACN-IDXX

Processing pair ACN-ITW

Processing pair ACN-PODD

Processing pair ACN-ICE

Processing pair ACN-IPG

Processing pair ACN-INTU

Processing pair ACN-ISRG

Processing pair ACN-INVH
ADF test for ACN-INVH failed with LinAlgError

Processing pair ACN-IQV
ADF test for ACN-IQV failed with LinAlgError

Processing pair ACN-JBHT

Processing pair ACN-JKHY

Processing pair ACN-J

Processing pair ACN-JNJ

Processing pair ACN-JCI

Processing pair ACN-JPM

Processing pair ACN-KDP

Processing pair ACN-KEYS
ADF test for ACN-KEYS failed with LinAlgError

Processing pair ACN-KLAC

Processing pair ACN-LHX

Processing pair ACN-LH

Processing pair ACN-LRCX

Processing pair ACN-LDOS

Processing pair ACN-LEN

Processing pair ACN-LII

Processing pair ACN-LIN

Processing pair ACN-LYV

Processing pair ACN-LMT

Processing pair ACN-LOW

Processing pair ACN-LULU

Processing pair ACN-MAR

Processing pair ACN-MMC

Processing pair ACN-MLM

Processing pair ACN-MAS

Processing pair ACN-MA

Processing pair ACN-MKC

Processing pair ACN-MCD

Processing pair ACN-MRK

Processing pair ACN-MET

Processing pair ACN-MTD

Processing pair ACN-MCHP

Processing pair ACN-MU

Processing pair ACN-MSFT

Processing pair ACN-MAA

Processing pair ACN-MOH

Processing pair ACN-MDLZ

Processing pair ACN-MPWR

Processing pair ACN-MNST

Processing pair ACN-MCO

Processing pair ACN-MS

Processing pair ACN-MSI

Processing pair ACN-MSCI

Processing pair ACN-NDAQ

Processing pair ACN-NFLX

Processing pair ACN-NEE

Processing pair ACN-NKE

Processing pair ACN-NDSN

Processing pair ACN-NSC

Processing pair ACN-NOC

Processing pair ACN-NVR

Processing pair ACN-NXPI
ADF test for ACN-NXPI failed with LinAlgError

Processing pair ACN-ORLY

Processing pair ACN-ODFL

Processing pair ACN-ON

Processing pair ACN-ORCL

Processing pair ACN-PKG

Processing pair ACN-PH

Processing pair ACN-PAYX

Processing pair ACN-PEP

Processing pair ACN-PNC

Processing pair ACN-POOL

Processing pair ACN-PFG

Processing pair ACN-PG

Processing pair ACN-PGR

Processing pair ACN-PLD

Processing pair ACN-PEG

Processing pair ACN-PTC

Processing pair ACN-PSA

Processing pair ACN-QCOM

Processing pair ACN-DGX

Processing pair ACN-RJF

Processing pair ACN-RF

Processing pair ACN-RSG

Processing pair ACN-RMD

Processing pair ACN-RVTY

Processing pair ACN-ROK

Processing pair ACN-ROL

Processing pair ACN-ROP

Processing pair ACN-ROST

Processing pair ACN-SPGI

Processing pair ACN-CRM

Processing pair ACN-STX

Processing pair ACN-SRE

Processing pair ACN-NOW
ADF test for ACN-NOW failed with LinAlgError

Processing pair ACN-SHW

Processing pair ACN-SNA

Processing pair ACN-SO

Processing pair ACN-SBUX

Processing pair ACN-STE

Processing pair ACN-SYK

Processing pair ACN-SNPS

Processing pair ACN-SYY

Processing pair ACN-TMUS

Processing pair ACN-TTWO

Processing pair ACN-TGT

Processing pair ACN-TEL

Processing pair ACN-TDY

Processing pair ACN-TER

Processing pair ACN-TSLA
ADF test for ACN-TSLA failed with LinAlgError

Processing pair ACN-TXN

Processing pair ACN-TMO

Processing pair ACN-TJX

Processing pair ACN-TSCO

Processing pair ACN-TT

Processing pair ACN-TDG

Processing pair ACN-TRV

Processing pair ACN-TYL

Processing pair ACN-UDR

Processing pair ACN-ULTA

Processing pair ACN-UNP

Processing pair ACN-UPS

Processing pair ACN-UNH

Processing pair ACN-VRSN

Processing pair ACN-VRSK

Processing pair ACN-VRTX

Processing pair ACN-V

Processing pair ACN-VMC

Processing pair ACN-WRB

Processing pair ACN-WMT

Processing pair ACN-WM

Processing pair ACN-WAT

Processing pair ACN-WEC

Processing pair ACN-WST

Processing pair ACN-WTW

Processing pair ACN-WDAY
ADF test for ACN-WDAY failed with LinAlgError

Processing pair ACN-XEL

Processing pair ACN-XYL
ADF test for ACN-XYL failed with LinAlgError

Processing pair ACN-YUM

Processing pair ACN-ZBRA

Processing pair ACN-ZTS
ADF test for ACN-ZTS failed with LinAlgError

Processing pair ADBE-AMD

Processing pair ADBE-A

Processing pair ADBE-APD

Processing pair ADBE-AKAM

Processing pair ADBE-ALLE
ADF test for ADBE-ALLE failed with LinAlgError

Processing pair ADBE-LNT

Processing pair ADBE-GOOGL

Processing pair ADBE-GOOG

Processing pair ADBE-AMZN

Processing pair ADBE-AEE

Processing pair ADBE-AMT

Processing pair ADBE-AWK

Processing pair ADBE-AME

Processing pair ADBE-AMGN

Processing pair ADBE-ADI

Processing pair ADBE-ANSS

Processing pair ADBE-AON

Processing pair ADBE-AAPL

Processing pair ADBE-AIZ

Processing pair ADBE-ADSK

Processing pair ADBE-ADP

Processing pair ADBE-AVY

Processing pair ADBE-BALL

Processing pair ADBE-BAC

Processing pair ADBE-BBY

Processing pair ADBE-TECH

Processing pair ADBE-BLK

Processing pair ADBE-BR

Processing pair ADBE-BRO

Processing pair ADBE-CBRE

Processing pair ADBE-CDW
ADF test for ADBE-CDW failed with LinAlgError

Processing pair ADBE-CE

Processing pair ADBE-CRL

Processing pair ADBE-CHD

Processing pair ADBE-CINF

Processing pair ADBE-CSCO

Processing pair ADBE-CME

Processing pair ADBE-CMS

Processing pair ADBE-COO

Processing pair ADBE-CPRT

Processing pair ADBE-GLW

Processing pair ADBE-CSGP

Processing pair ADBE-CSX

Processing pair ADBE-CMI

Processing pair ADBE-DHR

Processing pair ADBE-DRI

Processing pair ADBE-DE

Processing pair ADBE-DXCM

Processing pair ADBE-DLR

Processing pair ADBE-DPZ

Processing pair ADBE-DOV

Processing pair ADBE-DTE

Processing pair ADBE-DUK

Processing pair ADBE-EBAY

Processing pair ADBE-ECL

Processing pair ADBE-EW

Processing pair ADBE-ELV

Processing pair ADBE-EMR

Processing pair ADBE-ETR

Processing pair ADBE-EFX

Processing pair ADBE-EQIX

Processing pair ADBE-EXPD

Processing pair ADBE-EXR

Processing pair ADBE-FDS

Processing pair ADBE-FAST

Processing pair ADBE-FI

Processing pair ADBE-GRMN

Processing pair ADBE-GEN

Processing pair ADBE-HOLX

Processing pair ADBE-HD

Processing pair ADBE-HON

Processing pair ADBE-IEX

Processing pair ADBE-IDXX

Processing pair ADBE-ITW

Processing pair ADBE-PODD

Processing pair ADBE-ICE

Processing pair ADBE-INTU

Processing pair ADBE-ISRG

Processing pair ADBE-IQV
ADF test for ADBE-IQV failed with LinAlgError

Processing pair ADBE-JBHT

Processing pair ADBE-JKHY

Processing pair ADBE-J

Processing pair ADBE-JNJ

Processing pair ADBE-JPM

Processing pair ADBE-KDP

Processing pair ADBE-LHX

Processing pair ADBE-LH

Processing pair ADBE-LRCX

Processing pair ADBE-LDOS

Processing pair ADBE-LIN

Processing pair ADBE-LYV

Processing pair ADBE-LOW

Processing pair ADBE-LULU

Processing pair ADBE-MMC

Processing pair ADBE-MAS

Processing pair ADBE-MA

Processing pair ADBE-MKC

Processing pair ADBE-MCD

Processing pair ADBE-MTD

Processing pair ADBE-MCHP

Processing pair ADBE-MU

Processing pair ADBE-MSFT

Processing pair ADBE-MAA

Processing pair ADBE-MOH

Processing pair ADBE-MDLZ

Processing pair ADBE-MNST

Processing pair ADBE-MCO

Processing pair ADBE-MS

Processing pair ADBE-MSCI

Processing pair ADBE-NDAQ

Processing pair ADBE-NFLX

Processing pair ADBE-NEE

Processing pair ADBE-NKE

Processing pair ADBE-NDSN

Processing pair ADBE-NSC

Processing pair ADBE-NVR

Processing pair ADBE-NXPI
ADF test for ADBE-NXPI failed with LinAlgError

Processing pair ADBE-ODFL

Processing pair ADBE-PAYX

Processing pair ADBE-PEP

Processing pair ADBE-POOL

Processing pair ADBE-PG

Processing pair ADBE-PLD

Processing pair ADBE-PEG

Processing pair ADBE-PTC

Processing pair ADBE-DGX

Processing pair ADBE-RSG

Processing pair ADBE-RMD

Processing pair ADBE-RVTY

Processing pair ADBE-ROK

Processing pair ADBE-ROL

Processing pair ADBE-ROP

Processing pair ADBE-ROST

Processing pair ADBE-SPGI

Processing pair ADBE-CRM

Processing pair ADBE-SBAC

Processing pair ADBE-NOW
ADF test for ADBE-NOW failed with LinAlgError

Processing pair ADBE-SHW

Processing pair ADBE-SBUX

Processing pair ADBE-STE

Processing pair ADBE-SYK

Processing pair ADBE-SYY

Processing pair ADBE-TMUS

Processing pair ADBE-TROW

Processing pair ADBE-TTWO

Processing pair ADBE-TGT

Processing pair ADBE-TEL

Processing pair ADBE-TDY

Processing pair ADBE-TER

Processing pair ADBE-TXN

Processing pair ADBE-TMO

Processing pair ADBE-TYL

Processing pair ADBE-UNP

Processing pair ADBE-UPS

Processing pair ADBE-UNH

Processing pair ADBE-VRSN

Processing pair ADBE-VRSK

Processing pair ADBE-V

Processing pair ADBE-WMT

Processing pair ADBE-WM

Processing pair ADBE-WAT

Processing pair ADBE-WEC

Processing pair ADBE-WST

Processing pair ADBE-WTW

Processing pair ADBE-WDAY
ADF test for ADBE-WDAY failed with LinAlgError

Processing pair ADBE-XEL

Processing pair ADBE-XYL
ADF test for ADBE-XYL failed with LinAlgError

Processing pair ADBE-YUM

Processing pair ADBE-ZBRA

Processing pair ADBE-ZTS
ADF test for ADBE-ZTS failed with LinAlgError

Processing pair AMD-A

Processing pair AMD-GOOGL

Processing pair AMD-GOOG

Processing pair AMD-AMZN

Processing pair AMD-AXP

Processing pair AMD-AMP

Processing pair AMD-AME

Processing pair AMD-APH

Processing pair AMD-ADI

Processing pair AMD-ANSS

Processing pair AMD-AON

Processing pair AMD-APO
ADF test for AMD-APO failed with LinAlgError

Processing pair AMD-AAPL

Processing pair AMD-AMAT

Processing pair AMD-AJG

Processing pair AMD-ADP

Processing pair AMD-AZO

Processing pair AMD-AVY

Processing pair AMD-AXON

Processing pair AMD-BLK

Processing pair AMD-BX

Processing pair AMD-AVGO

Processing pair AMD-BR

Processing pair AMD-BRO

Processing pair AMD-BLDR

Processing pair AMD-CDNS

Processing pair AMD-CAT

Processing pair AMD-CBRE

Processing pair AMD-CDW
ADF test for AMD-CDW failed with LinAlgError

Processing pair AMD-CMG

Processing pair AMD-CTAS

Processing pair AMD-CPRT

Processing pair AMD-COST

Processing pair AMD-CSX

Processing pair AMD-CMI

Processing pair AMD-DHR

Processing pair AMD-DECK

Processing pair AMD-DE

Processing pair AMD-DXCM

Processing pair AMD-DOV

Processing pair AMD-DHI

Processing pair AMD-ETN

Processing pair AMD-ELV

Processing pair AMD-EMR

Processing pair AMD-EFX

Processing pair AMD-EQIX

Processing pair AMD-EXPD

Processing pair AMD-FDS

Processing pair AMD-FAST

Processing pair AMD-FTNT

Processing pair AMD-GRMN

Processing pair AMD-IT

Processing pair AMD-GS

Processing pair AMD-HCA
ADF test for AMD-HCA failed with LinAlgError

Processing pair AMD-HLT
ADF test for AMD-HLT failed with LinAlgError

Processing pair AMD-HD

Processing pair AMD-HUBB

Processing pair AMD-IDXX

Processing pair AMD-ITW

Processing pair AMD-IR
ADF test for AMD-IR failed with LinAlgError

Processing pair AMD-ICE

Processing pair AMD-INTU

Processing pair AMD-ISRG

Processing pair AMD-IQV
ADF test for AMD-IQV failed with LinAlgError

Processing pair AMD-JBL

Processing pair AMD-J

Processing pair AMD-JPM

Processing pair AMD-KKR
ADF test for AMD-KKR failed with LinAlgError

Processing pair AMD-KLAC

Processing pair AMD-LRCX

Processing pair AMD-LDOS

Processing pair AMD-LEN

Processing pair AMD-LIN

Processing pair AMD-LOW

Processing pair AMD-LULU

Processing pair AMD-MMC

Processing pair AMD-MLM

Processing pair AMD-MAS

Processing pair AMD-MA

Processing pair AMD-MCD

Processing pair AMD-MTD

Processing pair AMD-MCHP

Processing pair AMD-MU

Processing pair AMD-MSFT

Processing pair AMD-MOH

Processing pair AMD-MPWR

Processing pair AMD-MCO

Processing pair AMD-MS

Processing pair AMD-MSI

Processing pair AMD-MSCI

Processing pair AMD-NDAQ

Processing pair AMD-NDSN

Processing pair AMD-NVR

Processing pair AMD-NXPI
ADF test for AMD-NXPI failed with LinAlgError

Processing pair AMD-ORLY

Processing pair AMD-ODFL

Processing pair AMD-ORCL

Processing pair AMD-PCAR

Processing pair AMD-PANW
ADF test for AMD-PANW failed with LinAlgError

Processing pair AMD-PH

Processing pair AMD-PAYX

Processing pair AMD-POOL

Processing pair AMD-PG

Processing pair AMD-PGR

Processing pair AMD-PLD

Processing pair AMD-PTC

Processing pair AMD-PHM

Processing pair AMD-PWR

Processing pair AMD-QCOM

Processing pair AMD-RJF

Processing pair AMD-RSG

Processing pair AMD-ROL

Processing pair AMD-ROP

Processing pair AMD-SPGI

Processing pair AMD-CRM

Processing pair AMD-STX

Processing pair AMD-NOW
ADF test for AMD-NOW failed with LinAlgError

Processing pair AMD-SHW

Processing pair AMD-SO

Processing pair AMD-STE

Processing pair AMD-SYK

Processing pair AMD-SNPS

Processing pair AMD-TMUS

Processing pair AMD-TEL

Processing pair AMD-TER

Processing pair AMD-TXN

Processing pair AMD-TMO

Processing pair AMD-TJX

Processing pair AMD-TSCO

Processing pair AMD-TT

Processing pair AMD-TDG

Processing pair AMD-TYL

Processing pair AMD-UNP

Processing pair AMD-URI

Processing pair AMD-UNH

Processing pair AMD-VRSK

Processing pair AMD-V

Processing pair AMD-VMC

Processing pair AMD-WRB

Processing pair AMD-GWW

Processing pair AMD-WMT

Processing pair AMD-WM

Processing pair AMD-WST

Processing pair AMD-WTW

Processing pair AMD-XYL
ADF test for AMD-XYL failed with LinAlgError

Processing pair AMD-ZTS
ADF test for AMD-ZTS failed with LinAlgError

Processing pair AES-A

Processing pair AES-TECH

Processing pair AES-DHR

Processing pair AES-DE

Processing pair AES-DG

Processing pair AES-ENPH
ADF test for AES-ENPH failed with LinAlgError

Processing pair AES-IDXX

Processing pair AES-PODD

Processing pair AES-KDP

Processing pair AES-KEYS
ADF test for AES-KEYS failed with LinAlgError

Processing pair AES-MTD

Processing pair AES-NEE

Processing pair AES-NSC

Processing pair AES-POOL

Processing pair AES-RMD

Processing pair AES-RVTY

Processing pair AES-TGT

Processing pair AES-TDY

Processing pair AES-TMO

Processing pair AES-UPS

Processing pair AFL-ALL

Processing pair AFL-GOOGL

Processing pair AFL-GOOG

Processing pair AFL-AXP

Processing pair AFL-AMP

Processing pair AFL-AME

Processing pair AFL-AMGN

Processing pair AFL-APH

Processing pair AFL-ADI

Processing pair AFL-AON

Processing pair AFL-APO
ADF test for AFL-APO failed with LinAlgError

Processing pair AFL-AAPL

Processing pair AFL-AMAT

Processing pair AFL-ACGL

Processing pair AFL-ANET
ADF test for AFL-ANET failed with LinAlgError

Processing pair AFL-AJG

Processing pair AFL-AIZ

Processing pair AFL-ATO

Processing pair AFL-ADP

Processing pair AFL-AZO

Processing pair AFL-AVY

Processing pair AFL-AXON

Processing pair AFL-BLK

Processing pair AFL-BX

Processing pair AFL-BKNG

Processing pair AFL-BSX

Processing pair AFL-AVGO

Processing pair AFL-BR

Processing pair AFL-BRO

Processing pair AFL-BLDR

Processing pair AFL-CDNS

Processing pair AFL-CAT

Processing pair AFL-CBOE
ADF test for AFL-CBOE failed with LinAlgError

Processing pair AFL-CBRE

Processing pair AFL-CDW
ADF test for AFL-CDW failed with LinAlgError

Processing pair AFL-COR

Processing pair AFL-CVX

Processing pair AFL-CMG

Processing pair AFL-CB

Processing pair AFL-CI

Processing pair AFL-CINF

Processing pair AFL-CTAS

Processing pair AFL-KO

Processing pair AFL-ED

Processing pair AFL-CEG
ADF test for AFL-CEG failed with LinAlgError

Processing pair AFL-CPRT

Processing pair AFL-COST

Processing pair AFL-CMI

Processing pair AFL-DRI

Processing pair AFL-DECK

Processing pair AFL-DE

Processing pair AFL-DELL
ADF test for AFL-DELL failed with LinAlgError

Processing pair AFL-DFS

Processing pair AFL-DOV

Processing pair AFL-DHI

Processing pair AFL-DUK

Processing pair AFL-ETN

Processing pair AFL-ELV

Processing pair AFL-EMR

Processing pair AFL-ETR

Processing pair AFL-ERIE

Processing pair AFL-EG

Processing pair AFL-EXPD

Processing pair AFL-FDS

Processing pair AFL-FICO

Processing pair AFL-FAST

Processing pair AFL-FI

Processing pair AFL-FTNT

Processing pair AFL-GRMN

Processing pair AFL-IT

Processing pair AFL-GD

Processing pair AFL-GS

Processing pair AFL-HIG

Processing pair AFL-HCA
ADF test for AFL-HCA failed with LinAlgError

Processing pair AFL-HLT
ADF test for AFL-HLT failed with LinAlgError

Processing pair AFL-HD

Processing pair AFL-HWM
ADF test for AFL-HWM failed with LinAlgError

Processing pair AFL-HUBB

Processing pair AFL-ITW

Processing pair AFL-IR
ADF test for AFL-IR failed with LinAlgError

Processing pair AFL-ICE

Processing pair AFL-INTU

Processing pair AFL-ISRG

Processing pair AFL-IRM

Processing pair AFL-JBL

Processing pair AFL-J

Processing pair AFL-JPM

Processing pair AFL-KKR
ADF test for AFL-KKR failed with LinAlgError

Processing pair AFL-KLAC

Processing pair AFL-LRCX

Processing pair AFL-LDOS

Processing pair AFL-LEN

Processing pair AFL-LII

Processing pair AFL-LLY

Processing pair AFL-LIN

Processing pair AFL-LMT

Processing pair AFL-L

Processing pair AFL-LOW

Processing pair AFL-MPC
ADF test for AFL-MPC failed with LinAlgError

Processing pair AFL-MAR

Processing pair AFL-MMC

Processing pair AFL-MLM

Processing pair AFL-MAS

Processing pair AFL-MA

Processing pair AFL-MCD

Processing pair AFL-MCK

Processing pair AFL-MRK

Processing pair AFL-MET

Processing pair AFL-MCHP

Processing pair AFL-MSFT

Processing pair AFL-MOH

Processing pair AFL-MDLZ

Processing pair AFL-MPWR

Processing pair AFL-MCO

Processing pair AFL-MS

Processing pair AFL-MSI

Processing pair AFL-NDAQ

Processing pair AFL-NTAP

Processing pair AFL-NDSN

Processing pair AFL-NOC

Processing pair AFL-NUE

Processing pair AFL-NVR

Processing pair AFL-NXPI
ADF test for AFL-NXPI failed with LinAlgError

Processing pair AFL-ORLY

Processing pair AFL-ODFL

Processing pair AFL-ON

Processing pair AFL-OKE

Processing pair AFL-ORCL

Processing pair AFL-PCAR

Processing pair AFL-PKG

Processing pair AFL-PANW
ADF test for AFL-PANW failed with LinAlgError

Processing pair AFL-PH

Processing pair AFL-PAYX

Processing pair AFL-PEP

Processing pair AFL-PSX
ADF test for AFL-PSX failed with LinAlgError

Processing pair AFL-PFG

Processing pair AFL-PG

Processing pair AFL-PGR

Processing pair AFL-PRU

Processing pair AFL-PEG

Processing pair AFL-PTC

Processing pair AFL-PHM

Processing pair AFL-PWR

Processing pair AFL-RJF

Processing pair AFL-RTX

Processing pair AFL-RF

Processing pair AFL-RSG

Processing pair AFL-ROL

Processing pair AFL-ROP

Processing pair AFL-ROST

Processing pair AFL-SPGI

Processing pair AFL-SRE

Processing pair AFL-NOW
ADF test for AFL-NOW failed with LinAlgError

Processing pair AFL-SHW

Processing pair AFL-SNA

Processing pair AFL-SO

Processing pair AFL-STLD

Processing pair AFL-SYK

Processing pair AFL-SNPS

Processing pair AFL-TMUS

Processing pair AFL-TEL

Processing pair AFL-TXN

Processing pair AFL-TPL

Processing pair AFL-TXT

Processing pair AFL-TJX

Processing pair AFL-TSCO

Processing pair AFL-TT

Processing pair AFL-TDG

Processing pair AFL-TRV

Processing pair AFL-UNP

Processing pair AFL-URI

Processing pair AFL-UNH

Processing pair AFL-VLO

Processing pair AFL-VRSK

Processing pair AFL-VRTX

Processing pair AFL-V

Processing pair AFL-VMC

Processing pair AFL-WRB

Processing pair AFL-GWW

Processing pair AFL-WMT

Processing pair AFL-WM

Processing pair AFL-WELL

Processing pair AFL-WTW

Processing pair AFL-XYL
ADF test for AFL-XYL failed with LinAlgError

Processing pair AFL-YUM

Processing pair A-APD

Processing pair A-ALLE
ADF test for A-ALLE failed with LinAlgError

Processing pair A-LNT

Processing pair A-ALL

Processing pair A-GOOGL

Processing pair A-GOOG

Processing pair A-AMZN

Processing pair A-AMCR
ADF test for A-AMCR failed with LinAlgError

Processing pair A-AEE

Processing pair A-AEP

Processing pair A-AXP

Processing pair A-AMT

Processing pair A-AWK

Processing pair A-AMP

Processing pair A-AME

Processing pair A-AMGN

Processing pair A-APH

Processing pair A-ADI

Processing pair A-ANSS

Processing pair A-AON

Processing pair A-AAPL

Processing pair A-AMAT

Processing pair A-AJG

Processing pair A-AIZ

Processing pair A-ADSK

Processing pair A-ADP

Processing pair A-AZO

Processing pair A-AVY

Processing pair A-BAC

Processing pair A-BBY

Processing pair A-TECH

Processing pair A-BLK

Processing pair A-BX

Processing pair A-BR

Processing pair A-BRO

Processing pair A-CHRW

Processing pair A-CDNS

Processing pair A-CPT

Processing pair A-COF

Processing pair A-CBRE

Processing pair A-CDW
ADF test for A-CDW failed with LinAlgError

Processing pair A-CE

Processing pair A-CNC

Processing pair A-CRL

Processing pair A-SCHW

Processing pair A-CB

Processing pair A-CHD

Processing pair A-CI

Processing pair A-CINF

Processing pair A-CTAS

Processing pair A-CSCO

Processing pair A-CME

Processing pair A-CMS

Processing pair A-KO

Processing pair A-COO

Processing pair A-CPRT

Processing pair A-GLW

Processing pair A-CSGP

Processing pair A-COST

Processing pair A-CSX

Processing pair A-CMI

Processing pair A-DHR

Processing pair A-DRI

Processing pair A-DE

Processing pair A-DXCM

Processing pair A-DLR

Processing pair A-DFS

Processing pair A-DPZ

Processing pair A-DOV

Processing pair A-DTE

Processing pair A-DUK

Processing pair A-EBAY

Processing pair A-EW

Processing pair A-ELV

Processing pair A-EMR

Processing pair A-ETR

Processing pair A-EFX

Processing pair A-EQIX

Processing pair A-EXC

Processing pair A-EXPD

Processing pair A-EXR

Processing pair A-FDS

Processing pair A-FAST

Processing pair A-FITB

Processing pair A-FI

Processing pair A-FTNT

Processing pair A-GRMN

Processing pair A-IT

Processing pair A-GEN

Processing pair A-GPC

Processing pair A-GS

Processing pair A-HCA
ADF test for A-HCA failed with LinAlgError

Processing pair A-HSY

Processing pair A-HOLX

Processing pair A-HD

Processing pair A-HON

Processing pair A-HPQ

Processing pair A-HUM

Processing pair A-IEX

Processing pair A-IDXX

Processing pair A-ITW

Processing pair A-PODD

Processing pair A-ICE

Processing pair A-IPG

Processing pair A-INTU

Processing pair A-ISRG

Processing pair A-INVH
ADF test for A-INVH failed with LinAlgError

Processing pair A-IQV
ADF test for A-IQV failed with LinAlgError

Processing pair A-JBHT

Processing pair A-JKHY

Processing pair A-J

Processing pair A-JNJ

Processing pair A-JCI

Processing pair A-JPM

Processing pair A-KDP

Processing pair A-KEYS
ADF test for A-KEYS failed with LinAlgError

Processing pair A-LHX

Processing pair A-LH

Processing pair A-LRCX

Processing pair A-LDOS

Processing pair A-LIN

Processing pair A-LYV

Processing pair A-LMT

Processing pair A-LOW

Processing pair A-LULU

Processing pair A-MMC

Processing pair A-MLM

Processing pair A-MAS

Processing pair A-MA

Processing pair A-MKC

Processing pair A-MCD

Processing pair A-MET

Processing pair A-MTD

Processing pair A-MCHP

Processing pair A-MU

Processing pair A-MSFT

Processing pair A-MAA

Processing pair A-MOH

Processing pair A-MDLZ

Processing pair A-MPWR

Processing pair A-MNST

Processing pair A-MCO

Processing pair A-MS

Processing pair A-MSI

Processing pair A-MSCI

Processing pair A-NDAQ

Processing pair A-NEE

Processing pair A-NKE

Processing pair A-NDSN

Processing pair A-NSC

Processing pair A-NOC

Processing pair A-NVR

Processing pair A-NXPI
ADF test for A-NXPI failed with LinAlgError

Processing pair A-ORLY

Processing pair A-ODFL

Processing pair A-PKG

Processing pair A-PAYX

Processing pair A-PEP

Processing pair A-PNC

Processing pair A-POOL

Processing pair A-PG

Processing pair A-PLD

Processing pair A-PEG

Processing pair A-PTC

Processing pair A-PSA

Processing pair A-QCOM

Processing pair A-DGX

Processing pair A-RJF

Processing pair A-RF

Processing pair A-RSG

Processing pair A-RMD

Processing pair A-RVTY

Processing pair A-ROK

Processing pair A-ROL

Processing pair A-ROP

Processing pair A-ROST

Processing pair A-SPGI

Processing pair A-CRM

Processing pair A-SBAC

Processing pair A-STX

Processing pair A-SRE

Processing pair A-NOW
ADF test for A-NOW failed with LinAlgError

Processing pair A-SHW

Processing pair A-SO

Processing pair A-SBUX

Processing pair A-STE

Processing pair A-SYK

Processing pair A-SNPS

Processing pair A-SYY

Processing pair A-TMUS

Processing pair A-TROW

Processing pair A-TTWO

Processing pair A-TGT

Processing pair A-TEL

Processing pair A-TDY

Processing pair A-TER

Processing pair A-TSLA
ADF test for A-TSLA failed with LinAlgError

Processing pair A-TXN

Processing pair A-TMO

Processing pair A-TJX

Processing pair A-TSCO

Processing pair A-TRV

Processing pair A-TRMB

Processing pair A-TYL

Processing pair A-UNP

Processing pair A-UPS

Processing pair A-UNH

Processing pair A-VRSN

Processing pair A-VRSK

Processing pair A-V

Processing pair A-VMC

Processing pair A-WRB

Processing pair A-WMT

Processing pair A-WM

Processing pair A-WAT

Processing pair A-WEC

Processing pair A-WST

Processing pair A-WTW

Processing pair A-WDAY
ADF test for A-WDAY failed with LinAlgError

Processing pair A-XEL

Processing pair A-XYL
ADF test for A-XYL failed with LinAlgError

Processing pair A-YUM

Processing pair A-ZBRA

Processing pair A-ZTS
ADF test for A-ZTS failed with LinAlgError

Processing pair APD-AKAM

Processing pair APD-ALLE
ADF test for APD-ALLE failed with LinAlgError

Processing pair APD-LNT

Processing pair APD-ALL

Processing pair APD-GOOGL

Processing pair APD-GOOG

Processing pair APD-AMZN

Processing pair APD-AEE

Processing pair APD-AEP

Processing pair APD-AMT

Processing pair APD-AWK

Processing pair APD-AME

Processing pair APD-AMGN

Processing pair APD-APH

Processing pair APD-ADI

Processing pair APD-ANSS

Processing pair APD-AON

Processing pair APD-AAPL

Processing pair APD-AIZ

Processing pair APD-ATO

Processing pair APD-ADSK

Processing pair APD-ADP

Processing pair APD-AVY

Processing pair APD-BAC

Processing pair APD-BDX

Processing pair APD-BBY

Processing pair APD-TECH

Processing pair APD-BLK

Processing pair APD-BSX

Processing pair APD-BR

Processing pair APD-BRO

Processing pair APD-CHRW

Processing pair APD-CPT

Processing pair APD-CBRE

Processing pair APD-CDW
ADF test for APD-CDW failed with LinAlgError

Processing pair APD-CE

Processing pair APD-CNC

Processing pair APD-CHD

Processing pair APD-CI

Processing pair APD-CINF

Processing pair APD-CTAS

Processing pair APD-CSCO

Processing pair APD-CLX

Processing pair APD-CME

Processing pair APD-CMS

Processing pair APD-KO

Processing pair APD-CMCSA

Processing pair APD-ED

Processing pair APD-STZ

Processing pair APD-COO

Processing pair APD-CPRT

Processing pair APD-GLW

Processing pair APD-CSGP

Processing pair APD-CCI

Processing pair APD-CSX

Processing pair APD-CMI

Processing pair APD-DHR

Processing pair APD-DRI

Processing pair APD-DE

Processing pair APD-DXCM

Processing pair APD-DLR

Processing pair APD-DPZ

Processing pair APD-DOV

Processing pair APD-DTE

Processing pair APD-DUK

Processing pair APD-EBAY

Processing pair APD-ECL

Processing pair APD-EW

Processing pair APD-EA

Processing pair APD-ELV

Processing pair APD-EMR

Processing pair APD-ETR

Processing pair APD-EFX

Processing pair APD-EQIX

Processing pair APD-EG

Processing pair APD-EVRG

Processing pair APD-ES

Processing pair APD-EXPD

Processing pair APD-EXR

Processing pair APD-FDS

Processing pair APD-FAST

Processing pair APD-FI

Processing pair APD-GRMN

Processing pair APD-GEV
ADF test for APD-GEV failed with LinAlgError

Processing pair APD-GEN

Processing pair APD-GPC

Processing pair APD-GL

Processing pair APD-HCA
ADF test for APD-HCA failed with LinAlgError

Processing pair APD-HSY

Processing pair APD-HOLX

Processing pair APD-HD

Processing pair APD-HON

Processing pair APD-HUM

Processing pair APD-IEX

Processing pair APD-IDXX

Processing pair APD-ITW

Processing pair APD-PODD

Processing pair APD-ICE

Processing pair APD-IPG

Processing pair APD-INTU

Processing pair APD-ISRG

Processing pair APD-IQV
ADF test for APD-IQV failed with LinAlgError

Processing pair APD-JBHT

Processing pair APD-JKHY

Processing pair APD-J

Processing pair APD-JNJ

Processing pair APD-JCI

Processing pair APD-JPM

Processing pair APD-KDP

Processing pair APD-KEYS
ADF test for APD-KEYS failed with LinAlgError

Processing pair APD-KMB

Processing pair APD-LHX

Processing pair APD-LH

Processing pair APD-LDOS

Processing pair APD-LIN

Processing pair APD-LYV

Processing pair APD-LMT

Processing pair APD-LOW

Processing pair APD-LULU

Processing pair APD-MMC

Processing pair APD-MAS

Processing pair APD-MA

Processing pair APD-MKC

Processing pair APD-MCD

Processing pair APD-MRK

Processing pair APD-MTD

Processing pair APD-MCHP

Processing pair APD-MSFT

Processing pair APD-MAA

Processing pair APD-MOH

Processing pair APD-MDLZ

Processing pair APD-MNST

Processing pair APD-MCO

Processing pair APD-MS

Processing pair APD-MSI

Processing pair APD-MSCI

Processing pair APD-NDAQ

Processing pair APD-NFLX

Processing pair APD-NEE

Processing pair APD-NKE

Processing pair APD-NDSN

Processing pair APD-NSC

Processing pair APD-NOC

Processing pair APD-NVR

Processing pair APD-NXPI
ADF test for APD-NXPI failed with LinAlgError

Processing pair APD-ORLY

Processing pair APD-ODFL

Processing pair APD-PKG

Processing pair APD-PAYX

Processing pair APD-PEP

Processing pair APD-PNC

Processing pair APD-POOL

Processing pair APD-PG

Processing pair APD-PLD

Processing pair APD-PEG

Processing pair APD-PTC

Processing pair APD-PSA

Processing pair APD-DGX

Processing pair APD-RJF

Processing pair APD-O

Processing pair APD-RF

Processing pair APD-RSG

Processing pair APD-RMD

Processing pair APD-RVTY

Processing pair APD-ROK

Processing pair APD-ROL

Processing pair APD-ROP

Processing pair APD-ROST

Processing pair APD-SPGI

Processing pair APD-CRM

Processing pair APD-SBAC

Processing pair APD-SRE

Processing pair APD-NOW
ADF test for APD-NOW failed with LinAlgError

Processing pair APD-SHW

Processing pair APD-SNA

Processing pair APD-SO

Processing pair APD-SBUX

Processing pair APD-STE

Processing pair APD-SYK

Processing pair APD-SYY

Processing pair APD-TMUS

Processing pair APD-TTWO

Processing pair APD-TEL

Processing pair APD-TDY

Processing pair APD-TER

Processing pair APD-TXN

Processing pair APD-TMO

Processing pair APD-TJX

Processing pair APD-TSCO

Processing pair APD-TRV

Processing pair APD-TYL

Processing pair APD-UNP

Processing pair APD-UPS

Processing pair APD-UNH

Processing pair APD-VRSN

Processing pair APD-VRSK

Processing pair APD-VRTX

Processing pair APD-V

Processing pair APD-VMC

Processing pair APD-WRB

Processing pair APD-WMT

Processing pair APD-WM

Processing pair APD-WAT

Processing pair APD-WEC

Processing pair APD-WST

Processing pair APD-WTW

Processing pair APD-WDAY
ADF test for APD-WDAY failed with LinAlgError

Processing pair APD-XEL

Processing pair APD-XYL
ADF test for APD-XYL failed with LinAlgError

Processing pair APD-YUM

Processing pair APD-ZTS
ADF test for APD-ZTS failed with LinAlgError

Processing pair AKAM-AMZN

Processing pair AKAM-AMT

Processing pair AKAM-AWK

Processing pair AKAM-ANSS

Processing pair AKAM-ADSK

Processing pair AKAM-BALL

Processing pair AKAM-CHD

Processing pair AKAM-CME

Processing pair AKAM-CMCSA

Processing pair AKAM-COO

Processing pair AKAM-CSGP

Processing pair AKAM-DPZ

Processing pair AKAM-ECL

Processing pair AKAM-EW

Processing pair AKAM-EQIX

Processing pair AKAM-HD

Processing pair AKAM-HON

Processing pair AKAM-IEX

Processing pair AKAM-ICE

Processing pair AKAM-JKHY

Processing pair AKAM-KDP

Processing pair AKAM-MA

Processing pair AKAM-MKC

Processing pair AKAM-MCO

Processing pair AKAM-NKE

Processing pair AKAM-NSC

Processing pair AKAM-POOL

Processing pair AKAM-ROP

Processing pair AKAM-SPGI

Processing pair AKAM-CRM

Processing pair AKAM-SBAC

Processing pair AKAM-SHW

Processing pair AKAM-SBUX

Processing pair AKAM-STE

Processing pair AKAM-TDY

Processing pair AKAM-TYL

Processing pair AKAM-UNP

Processing pair AKAM-VRSN

Processing pair AKAM-V

Processing pair AKAM-WEC

Processing pair AKAM-ZTS
ADF test for AKAM-ZTS failed with LinAlgError

Processing pair ALB-ENPH
ADF test for ALB-ENPH failed with LinAlgError

Processing pair ARE-ALGN

Processing pair ARE-LNT

Processing pair ARE-AEE

Processing pair ARE-AMT

Processing pair ARE-AWK

Processing pair ARE-ANSS

Processing pair ARE-ADSK

Processing pair ARE-BALL

Processing pair ARE-BDX

Processing pair ARE-BBY

Processing pair ARE-TECH

Processing pair ARE-CPT

Processing pair ARE-KMX

Processing pair ARE-CE

Processing pair ARE-CNC

Processing pair ARE-CRL

Processing pair ARE-CHTR
ADF test for ARE-CHTR failed with LinAlgError

Processing pair ARE-CSCO

Processing pair ARE-CLX

Processing pair ARE-CME

Processing pair ARE-CMS

Processing pair ARE-CMCSA

Processing pair ARE-COO

Processing pair ARE-CSGP

Processing pair ARE-CCI

Processing pair ARE-CSX

Processing pair ARE-DLR

Processing pair ARE-DG

Processing pair ARE-DPZ

Processing pair ARE-DTE

Processing pair ARE-EBAY

Processing pair ARE-EW

Processing pair ARE-EPAM
ADF test for ARE-EPAM failed with LinAlgError

Processing pair ARE-ESS

Processing pair ARE-EL

Processing pair ARE-EVRG

Processing pair ARE-ES

Processing pair ARE-GPN

Processing pair ARE-HON

Processing pair ARE-HRL

Processing pair ARE-IEX

Processing pair ARE-IDXX

Processing pair ARE-JKHY

Processing pair ARE-JNJ

Processing pair ARE-KDP

Processing pair ARE-LHX

Processing pair ARE-LH

Processing pair ARE-MKTX

Processing pair ARE-MKC

Processing pair ARE-MDT

Processing pair ARE-MTD

Processing pair ARE-MAA

Processing pair ARE-NEE

Processing pair ARE-NKE

Processing pair ARE-NSC

Processing pair ARE-NTRS

Processing pair ARE-PAYC
ADF test for ARE-PAYC failed with LinAlgError

Processing pair ARE-PNC

Processing pair ARE-POOL

Processing pair ARE-PLD

Processing pair ARE-O

Processing pair ARE-RMD

Processing pair ARE-RVTY

Processing pair ARE-SBAC

Processing pair ARE-SWKS

Processing pair ARE-SBUX

Processing pair ARE-SYY

Processing pair ARE-TROW

Processing pair ARE-TTWO

Processing pair ARE-TDY

Processing pair ARE-TFX

Processing pair ARE-TFC

Processing pair ARE-UDR

Processing pair ARE-VRSN

Processing pair ARE-WAT

Processing pair ARE-WEC

Processing pair ARE-XEL

Processing pair ARE-ZBRA

Processing pair ALGN-APTV
ADF test for ALGN-APTV failed with LinAlgError

Processing pair ALGN-ADSK

Processing pair ALGN-BBY

Processing pair ALGN-TECH

Processing pair ALGN-CZR
ADF test for ALGN-CZR failed with LinAlgError

Processing pair ALGN-KMX

Processing pair ALGN-CRL

Processing pair ALGN-CHTR
ADF test for ALGN-CHTR failed with LinAlgError

Processing pair ALGN-EL

Processing pair ALGN-MTCH

Processing pair ALGN-NKE

Processing pair ALGN-RVTY

Processing pair ALGN-TROW

Processing pair ALGN-TRMB

Processing pair ALGN-ZBRA

Processing pair ALLE-LNT
ADF test for ALLE-LNT failed with LinAlgError

Processing pair ALLE-ALL
ADF test for ALLE-ALL failed with LinAlgError

Processing pair ALLE-AMZN
ADF test for ALLE-AMZN failed with LinAlgError

Processing pair ALLE-AEE
ADF test for ALLE-AEE failed with LinAlgError

Processing pair ALLE-AEP
ADF test for ALLE-AEP failed with LinAlgError

Processing pair ALLE-AMT
ADF test for ALLE-AMT failed with LinAlgError

Processing pair ALLE-AWK
ADF test for ALLE-AWK failed with LinAlgError

Processing pair ALLE-AME
ADF test for ALLE-AME failed with LinAlgError

Processing pair ALLE-ADI
ADF test for ALLE-ADI failed with LinAlgError

Processing pair ALLE-ANSS
ADF test for ALLE-ANSS failed with LinAlgError

Processing pair ALLE-AON
ADF test for ALLE-AON failed with LinAlgError

Processing pair ALLE-AIZ
ADF test for ALLE-AIZ failed with LinAlgError

Processing pair ALLE-ATO
ADF test for ALLE-ATO failed with LinAlgError

Processing pair ALLE-ADSK
ADF test for ALLE-ADSK failed with LinAlgError

Processing pair ALLE-ADP
ADF test for ALLE-ADP failed with LinAlgError

Processing pair ALLE-AVY
ADF test for ALLE-AVY failed with LinAlgError

Processing pair ALLE-BAC
ADF test for ALLE-BAC failed with LinAlgError

Processing pair ALLE-BBY
ADF test for ALLE-BBY failed with LinAlgError

Processing pair ALLE-BLK
ADF test for ALLE-BLK failed with LinAlgError

Processing pair ALLE-BR
ADF test for ALLE-BR failed with LinAlgError

Processing pair ALLE-CBRE
ADF test for ALLE-CBRE failed with LinAlgError

Processing pair ALLE-CDW
ADF test for ALLE-CDW failed with LinAlgError

Processing pair ALLE-CE
ADF test for ALLE-CE failed with LinAlgError

Processing pair ALLE-CHD
ADF test for ALLE-CHD failed with LinAlgError

Processing pair ALLE-CINF
ADF test for ALLE-CINF failed with LinAlgError

Processing pair ALLE-CSCO
ADF test for ALLE-CSCO failed with LinAlgError

Processing pair ALLE-CME
ADF test for ALLE-CME failed with LinAlgError

Processing pair ALLE-CMS
ADF test for ALLE-CMS failed with LinAlgError

Processing pair ALLE-CMCSA
ADF test for ALLE-CMCSA failed with LinAlgError

Processing pair ALLE-COO
ADF test for ALLE-COO failed with LinAlgError

Processing pair ALLE-GLW
ADF test for ALLE-GLW failed with LinAlgError

Processing pair ALLE-CSGP
ADF test for ALLE-CSGP failed with LinAlgError

Processing pair ALLE-CSX
ADF test for ALLE-CSX failed with LinAlgError

Processing pair ALLE-DHR
ADF test for ALLE-DHR failed with LinAlgError

Processing pair ALLE-DRI
ADF test for ALLE-DRI failed with LinAlgError

Processing pair ALLE-DLR
ADF test for ALLE-DLR failed with LinAlgError

Processing pair ALLE-DPZ
ADF test for ALLE-DPZ failed with LinAlgError

Processing pair ALLE-DOV
ADF test for ALLE-DOV failed with LinAlgError

Processing pair ALLE-DTE
ADF test for ALLE-DTE failed with LinAlgError

Processing pair ALLE-DUK
ADF test for ALLE-DUK failed with LinAlgError

Processing pair ALLE-ECL
ADF test for ALLE-ECL failed with LinAlgError

Processing pair ALLE-ETR
ADF test for ALLE-ETR failed with LinAlgError

Processing pair ALLE-EFX
ADF test for ALLE-EFX failed with LinAlgError

Processing pair ALLE-EQIX
ADF test for ALLE-EQIX failed with LinAlgError

Processing pair ALLE-EXPD
ADF test for ALLE-EXPD failed with LinAlgError

Processing pair ALLE-FI
ADF test for ALLE-FI failed with LinAlgError

Processing pair ALLE-GRMN
ADF test for ALLE-GRMN failed with LinAlgError

Processing pair ALLE-HD
ADF test for ALLE-HD failed with LinAlgError

Processing pair ALLE-HON
ADF test for ALLE-HON failed with LinAlgError

Processing pair ALLE-IEX
ADF test for ALLE-IEX failed with LinAlgError

Processing pair ALLE-IDXX
ADF test for ALLE-IDXX failed with LinAlgError

Processing pair ALLE-ITW
ADF test for ALLE-ITW failed with LinAlgError

Processing pair ALLE-ICE
ADF test for ALLE-ICE failed with LinAlgError

Processing pair ALLE-INTU
ADF test for ALLE-INTU failed with LinAlgError

Processing pair ALLE-ISRG
ADF test for ALLE-ISRG failed with LinAlgError

Processing pair ALLE-IQV
ADF test for ALLE-IQV failed with LinAlgError

Processing pair ALLE-J
ADF test for ALLE-J failed with LinAlgError

Processing pair ALLE-JNJ
ADF test for ALLE-JNJ failed with LinAlgError

Processing pair ALLE-JPM
ADF test for ALLE-JPM failed with LinAlgError

Processing pair ALLE-KDP
ADF test for ALLE-KDP failed with LinAlgError

Processing pair ALLE-LHX
ADF test for ALLE-LHX failed with LinAlgError

Processing pair ALLE-LH
ADF test for ALLE-LH failed with LinAlgError

Processing pair ALLE-LDOS
ADF test for ALLE-LDOS failed with LinAlgError

Processing pair ALLE-LYV
ADF test for ALLE-LYV failed with LinAlgError

Processing pair ALLE-LOW
ADF test for ALLE-LOW failed with LinAlgError

Processing pair ALLE-MAS
ADF test for ALLE-MAS failed with LinAlgError

Processing pair ALLE-MA
ADF test for ALLE-MA failed with LinAlgError

Processing pair ALLE-MCD
ADF test for ALLE-MCD failed with LinAlgError

Processing pair ALLE-MTD
ADF test for ALLE-MTD failed with LinAlgError

Processing pair ALLE-MCHP
ADF test for ALLE-MCHP failed with LinAlgError

Processing pair ALLE-MCO
ADF test for ALLE-MCO failed with LinAlgError

Processing pair ALLE-MSCI
ADF test for ALLE-MSCI failed with LinAlgError

Processing pair ALLE-NDAQ
ADF test for ALLE-NDAQ failed with LinAlgError

Processing pair ALLE-NEE
ADF test for ALLE-NEE failed with LinAlgError

Processing pair ALLE-NDSN
ADF test for ALLE-NDSN failed with LinAlgError

Processing pair ALLE-NSC
ADF test for ALLE-NSC failed with LinAlgError

Processing pair ALLE-NVR
ADF test for ALLE-NVR failed with LinAlgError

Processing pair ALLE-PAYX
ADF test for ALLE-PAYX failed with LinAlgError

Processing pair ALLE-PNC
ADF test for ALLE-PNC failed with LinAlgError

Processing pair ALLE-POOL
ADF test for ALLE-POOL failed with LinAlgError

Processing pair ALLE-PG
ADF test for ALLE-PG failed with LinAlgError

Processing pair ALLE-PLD
ADF test for ALLE-PLD failed with LinAlgError

Processing pair ALLE-PEG
ADF test for ALLE-PEG failed with LinAlgError

Processing pair ALLE-DGX
ADF test for ALLE-DGX failed with LinAlgError

Processing pair ALLE-RMD
ADF test for ALLE-RMD failed with LinAlgError

Processing pair ALLE-ROK
ADF test for ALLE-ROK failed with LinAlgError

Processing pair ALLE-ROL
ADF test for ALLE-ROL failed with LinAlgError

Processing pair ALLE-ROP
ADF test for ALLE-ROP failed with LinAlgError

Processing pair ALLE-ROST
ADF test for ALLE-ROST failed with LinAlgError

Processing pair ALLE-SPGI
ADF test for ALLE-SPGI failed with LinAlgError

Processing pair ALLE-CRM
ADF test for ALLE-CRM failed with LinAlgError

Processing pair ALLE-NOW
ADF test for ALLE-NOW failed with LinAlgError

Processing pair ALLE-SHW
ADF test for ALLE-SHW failed with LinAlgError

Processing pair ALLE-SBUX
ADF test for ALLE-SBUX failed with LinAlgError

Processing pair ALLE-STE
ADF test for ALLE-STE failed with LinAlgError

Processing pair ALLE-SYK
ADF test for ALLE-SYK failed with LinAlgError

Processing pair ALLE-SYY
ADF test for ALLE-SYY failed with LinAlgError

Processing pair ALLE-TMUS
ADF test for ALLE-TMUS failed with LinAlgError

Processing pair ALLE-TEL
ADF test for ALLE-TEL failed with LinAlgError

Processing pair ALLE-TDY
ADF test for ALLE-TDY failed with LinAlgError

Processing pair ALLE-TER
ADF test for ALLE-TER failed with LinAlgError

Processing pair ALLE-TXN
ADF test for ALLE-TXN failed with LinAlgError

Processing pair ALLE-TMO
ADF test for ALLE-TMO failed with LinAlgError

Processing pair ALLE-TYL
ADF test for ALLE-TYL failed with LinAlgError

Processing pair ALLE-UNP
ADF test for ALLE-UNP failed with LinAlgError

Processing pair ALLE-VRSN
ADF test for ALLE-VRSN failed with LinAlgError

Processing pair ALLE-VRSK
ADF test for ALLE-VRSK failed with LinAlgError

Processing pair ALLE-V
ADF test for ALLE-V failed with LinAlgError

Processing pair ALLE-WM
ADF test for ALLE-WM failed with LinAlgError

Processing pair ALLE-WAT
ADF test for ALLE-WAT failed with LinAlgError

Processing pair ALLE-WEC
ADF test for ALLE-WEC failed with LinAlgError

Processing pair ALLE-WTW
ADF test for ALLE-WTW failed with LinAlgError

Processing pair ALLE-WDAY
ADF test for ALLE-WDAY failed with LinAlgError

Processing pair ALLE-XEL
ADF test for ALLE-XEL failed with LinAlgError

Processing pair ALLE-XYL
ADF test for ALLE-XYL failed with LinAlgError

Processing pair ALLE-YUM
ADF test for ALLE-YUM failed with LinAlgError

Processing pair ALLE-ZTS
ADF test for ALLE-ZTS failed with LinAlgError

Processing pair LNT-ALL

Processing pair LNT-GOOGL

Processing pair LNT-GOOG

Processing pair LNT-AMZN

Processing pair LNT-AMCR
ADF test for LNT-AMCR failed with LinAlgError

Processing pair LNT-AEE

Processing pair LNT-AEP

Processing pair LNT-AMT

Processing pair LNT-AWK

Processing pair LNT-AME

Processing pair LNT-AMGN

Processing pair LNT-ADI

Processing pair LNT-ANSS

Processing pair LNT-AON

Processing pair LNT-AIZ

Processing pair LNT-ATO

Processing pair LNT-ADSK

Processing pair LNT-ADP

Processing pair LNT-AVB

Processing pair LNT-AVY

Processing pair LNT-BALL

Processing pair LNT-BAC

Processing pair LNT-BDX

Processing pair LNT-BBY

Processing pair LNT-TECH

Processing pair LNT-BLK

Processing pair LNT-BSX

Processing pair LNT-BR

Processing pair LNT-CHRW

Processing pair LNT-CPT

Processing pair LNT-CBOE
ADF test for LNT-CBOE failed with LinAlgError

Processing pair LNT-CBRE

Processing pair LNT-CDW
ADF test for LNT-CDW failed with LinAlgError

Processing pair LNT-CE

Processing pair LNT-CNC

Processing pair LNT-CNP

Processing pair LNT-SCHW

Processing pair LNT-CB

Processing pair LNT-CHD

Processing pair LNT-CI

Processing pair LNT-CINF

Processing pair LNT-CSCO

Processing pair LNT-CLX

Processing pair LNT-CME

Processing pair LNT-CMS

Processing pair LNT-KO

Processing pair LNT-CL

Processing pair LNT-CMCSA

Processing pair LNT-ED

Processing pair LNT-STZ

Processing pair LNT-COO

Processing pair LNT-GLW

Processing pair LNT-CPAY
ADF test for LNT-CPAY failed with LinAlgError

Processing pair LNT-CSGP

Processing pair LNT-CCI

Processing pair LNT-CSX

Processing pair LNT-CMI

Processing pair LNT-DHR

Processing pair LNT-DRI

Processing pair LNT-DLR

Processing pair LNT-DFS

Processing pair LNT-DPZ

Processing pair LNT-DOV

Processing pair LNT-DTE

Processing pair LNT-DUK

Processing pair LNT-EBAY

Processing pair LNT-ECL

Processing pair LNT-EW

Processing pair LNT-EA

Processing pair LNT-ELV

Processing pair LNT-ETR

Processing pair LNT-EFX

Processing pair LNT-EQIX

Processing pair LNT-EQR

Processing pair LNT-ESS

Processing pair LNT-EG

Processing pair LNT-EVRG

Processing pair LNT-ES

Processing pair LNT-EXPD

Processing pair LNT-EXR

Processing pair LNT-FDS

Processing pair LNT-FITB

Processing pair LNT-FI

Processing pair LNT-GEN

Processing pair LNT-GD

Processing pair LNT-GL

Processing pair LNT-HSIC

Processing pair LNT-HSY

Processing pair LNT-HOLX

Processing pair LNT-HD

Processing pair LNT-HON

Processing pair LNT-HRL

Processing pair LNT-HUM

Processing pair LNT-HBAN

Processing pair LNT-IEX

Processing pair LNT-IDXX

Processing pair LNT-ITW

Processing pair LNT-PODD

Processing pair LNT-ICE

Processing pair LNT-IPG

Processing pair LNT-INTU

Processing pair LNT-ISRG

Processing pair LNT-INVH
ADF test for LNT-INVH failed with LinAlgError

Processing pair LNT-IQV
ADF test for LNT-IQV failed with LinAlgError

Processing pair LNT-JBHT

Processing pair LNT-JKHY

Processing pair LNT-J

Processing pair LNT-JNJ

Processing pair LNT-JPM

Processing pair LNT-KDP

Processing pair LNT-KEYS
ADF test for LNT-KEYS failed with LinAlgError

Processing pair LNT-KMB

Processing pair LNT-LHX

Processing pair LNT-LH

Processing pair LNT-LDOS

Processing pair LNT-LYV

Processing pair LNT-LMT

Processing pair LNT-LOW

Processing pair LNT-MAR

Processing pair LNT-MMC

Processing pair LNT-MAS

Processing pair LNT-MA

Processing pair LNT-MKC

Processing pair LNT-MCD

Processing pair LNT-MDT

Processing pair LNT-MTD

Processing pair LNT-MCHP

Processing pair LNT-MAA

Processing pair LNT-MOH

Processing pair LNT-MDLZ

Processing pair LNT-MNST

Processing pair LNT-MCO

Processing pair LNT-MSCI

Processing pair LNT-NDAQ

Processing pair LNT-NEE

Processing pair LNT-NKE

Processing pair LNT-NI

Processing pair LNT-NDSN

Processing pair LNT-NSC

Processing pair LNT-NTRS

Processing pair LNT-NOC

Processing pair LNT-NVR

Processing pair LNT-NXPI
ADF test for LNT-NXPI failed with LinAlgError

Processing pair LNT-PKG

Processing pair LNT-PAYX

Processing pair LNT-PEP

Processing pair LNT-PFE

Processing pair LNT-PNW

Processing pair LNT-PNC

Processing pair LNT-POOL

Processing pair LNT-PPG

Processing pair LNT-PG

Processing pair LNT-PLD

Processing pair LNT-PEG

Processing pair LNT-PTC

Processing pair LNT-PSA

Processing pair LNT-DGX

Processing pair LNT-RTX

Processing pair LNT-O

Processing pair LNT-RF

Processing pair LNT-RSG

Processing pair LNT-RMD

Processing pair LNT-RVTY

Processing pair LNT-ROK

Processing pair LNT-ROL

Processing pair LNT-ROP

Processing pair LNT-ROST

Processing pair LNT-SPGI

Processing pair LNT-CRM

Processing pair LNT-SBAC

Processing pair LNT-SRE

Processing pair LNT-SHW

Processing pair LNT-SO

Processing pair LNT-SBUX

Processing pair LNT-STE

Processing pair LNT-SYK

Processing pair LNT-SYY

Processing pair LNT-TMUS

Processing pair LNT-TTWO

Processing pair LNT-TEL

Processing pair LNT-TDY

Processing pair LNT-TER

Processing pair LNT-TXN

Processing pair LNT-TMO

Processing pair LNT-TJX

Processing pair LNT-TRV

Processing pair LNT-TYL

Processing pair LNT-UDR

Processing pair LNT-ULTA

Processing pair LNT-UNP

Processing pair LNT-UPS

Processing pair LNT-UNH

Processing pair LNT-VRSN

Processing pair LNT-VRSK

Processing pair LNT-V

Processing pair LNT-VMC

Processing pair LNT-WRB

Processing pair LNT-WMT

Processing pair LNT-WM

Processing pair LNT-WAT

Processing pair LNT-WEC

Processing pair LNT-WST

Processing pair LNT-WTW

Processing pair LNT-XEL

Processing pair LNT-XYL
ADF test for LNT-XYL failed with LinAlgError

Processing pair LNT-YUM

Processing pair LNT-ZTS
ADF test for LNT-ZTS failed with LinAlgError

Processing pair ALL-GOOGL

Processing pair ALL-GOOG

Processing pair ALL-AMZN

Processing pair ALL-AEE

Processing pair ALL-AEP

Processing pair ALL-AXP

Processing pair ALL-AMP

Processing pair ALL-AME

Processing pair ALL-AMGN

Processing pair ALL-APH

Processing pair ALL-ADI

Processing pair ALL-AON

Processing pair ALL-APO
ADF test for ALL-APO failed with LinAlgError

Processing pair ALL-AAPL

Processing pair ALL-AMAT

Processing pair ALL-ACGL

Processing pair ALL-ANET
ADF test for ALL-ANET failed with LinAlgError

Processing pair ALL-AJG

Processing pair ALL-AIZ

Processing pair ALL-ATO

Processing pair ALL-ADP

Processing pair ALL-AZO

Processing pair ALL-AVB

Processing pair ALL-AVY

Processing pair ALL-AXON

Processing pair ALL-BAC

Processing pair ALL-BLK

Processing pair ALL-BX

Processing pair ALL-BK

Processing pair ALL-BKNG

Processing pair ALL-BSX

Processing pair ALL-BR

Processing pair ALL-BRO

Processing pair ALL-CDNS

Processing pair ALL-COF

Processing pair ALL-CAT

Processing pair ALL-CBOE
ADF test for ALL-CBOE failed with LinAlgError

Processing pair ALL-CBRE

Processing pair ALL-CDW
ADF test for ALL-CDW failed with LinAlgError

Processing pair ALL-CE

Processing pair ALL-COR

Processing pair ALL-CNC

Processing pair ALL-SCHW

Processing pair ALL-CB

Processing pair ALL-CHD

Processing pair ALL-CI

Processing pair ALL-CINF

Processing pair ALL-CTAS

Processing pair ALL-CSCO

Processing pair ALL-CME

Processing pair ALL-CMS

Processing pair ALL-KO

Processing pair ALL-CL

Processing pair ALL-ED

Processing pair ALL-STZ

Processing pair ALL-COO

Processing pair ALL-CPRT

Processing pair ALL-GLW

Processing pair ALL-COST

Processing pair ALL-CSX

Processing pair ALL-CMI

Processing pair ALL-DHR

Processing pair ALL-DRI

Processing pair ALL-DELL
ADF test for ALL-DELL failed with LinAlgError

Processing pair ALL-DLR

Processing pair ALL-DFS

Processing pair ALL-DPZ

Processing pair ALL-DOV

Processing pair ALL-DHI

Processing pair ALL-DTE

Processing pair ALL-DUK

Processing pair ALL-ETN

Processing pair ALL-ECL

Processing pair ALL-EIX

Processing pair ALL-ELV

Processing pair ALL-EMR

Processing pair ALL-ETR

Processing pair ALL-EFX

Processing pair ALL-EQIX

Processing pair ALL-ERIE

Processing pair ALL-EG

Processing pair ALL-EVRG

Processing pair ALL-EXPD

Processing pair ALL-EXR

Processing pair ALL-FDS

Processing pair ALL-FAST

Processing pair ALL-FITB

Processing pair ALL-FI

Processing pair ALL-GRMN

Processing pair ALL-IT

Processing pair ALL-GEN

Processing pair ALL-GD

Processing pair ALL-GL

Processing pair ALL-GDDY
ADF test for ALL-GDDY failed with LinAlgError

Processing pair ALL-GS

Processing pair ALL-HIG

Processing pair ALL-HCA
ADF test for ALL-HCA failed with LinAlgError

Processing pair ALL-HLT
ADF test for ALL-HLT failed with LinAlgError

Processing pair ALL-HOLX

Processing pair ALL-HD

Processing pair ALL-HON

Processing pair ALL-HWM
ADF test for ALL-HWM failed with LinAlgError

Processing pair ALL-HUBB

Processing pair ALL-HBAN

Processing pair ALL-IEX

Processing pair ALL-ITW

Processing pair ALL-IR
ADF test for ALL-IR failed with LinAlgError

Processing pair ALL-ICE

Processing pair ALL-IPG

Processing pair ALL-INTU

Processing pair ALL-ISRG

Processing pair ALL-JBHT

Processing pair ALL-JKHY

Processing pair ALL-J

Processing pair ALL-JNJ

Processing pair ALL-JCI

Processing pair ALL-JPM

Processing pair ALL-KDP

Processing pair ALL-KKR
ADF test for ALL-KKR failed with LinAlgError

Processing pair ALL-KLAC

Processing pair ALL-LHX

Processing pair ALL-LH

Processing pair ALL-LRCX

Processing pair ALL-LDOS

Processing pair ALL-LEN

Processing pair ALL-LII

Processing pair ALL-LIN

Processing pair ALL-LYV

Processing pair ALL-LMT

Processing pair ALL-L

Processing pair ALL-LOW

Processing pair ALL-MAR

Processing pair ALL-MMC

Processing pair ALL-MLM

Processing pair ALL-MAS

Processing pair ALL-MA

Processing pair ALL-MCD

Processing pair ALL-MRK

Processing pair ALL-META
ADF test for ALL-META failed with LinAlgError

Processing pair ALL-MET

Processing pair ALL-MTD

Processing pair ALL-MCHP

Processing pair ALL-MU

Processing pair ALL-MSFT

Processing pair ALL-MOH

Processing pair ALL-MDLZ

Processing pair ALL-MPWR

Processing pair ALL-MNST

Processing pair ALL-MCO

Processing pair ALL-MS

Processing pair ALL-MSI

Processing pair ALL-MSCI

Processing pair ALL-NDAQ

Processing pair ALL-NEE

Processing pair ALL-NI

Processing pair ALL-NDSN

Processing pair ALL-NSC

Processing pair ALL-NOC

Processing pair ALL-NVR

Processing pair ALL-NXPI
ADF test for ALL-NXPI failed with LinAlgError

Processing pair ALL-ORLY

Processing pair ALL-ODFL

Processing pair ALL-OMC

Processing pair ALL-OKE

Processing pair ALL-ORCL

Processing pair ALL-PCAR

Processing pair ALL-PKG

Processing pair ALL-PANW
ADF test for ALL-PANW failed with LinAlgError

Processing pair ALL-PH

Processing pair ALL-PAYX

Processing pair ALL-PNR

Processing pair ALL-PEP

Processing pair ALL-PM

Processing pair ALL-PNC

Processing pair ALL-PFG

Processing pair ALL-PG

Processing pair ALL-PGR

Processing pair ALL-PLD

Processing pair ALL-PRU

Processing pair ALL-PEG

Processing pair ALL-PTC

Processing pair ALL-PSA

Processing pair ALL-PHM

Processing pair ALL-DGX

Processing pair ALL-RJF

Processing pair ALL-RTX

Processing pair ALL-REGN

Processing pair ALL-RF

Processing pair ALL-RSG

Processing pair ALL-ROK

Processing pair ALL-ROL

Processing pair ALL-ROP

Processing pair ALL-ROST

Processing pair ALL-SPGI

Processing pair ALL-CRM

Processing pair ALL-STX

Processing pair ALL-SRE

Processing pair ALL-NOW
ADF test for ALL-NOW failed with LinAlgError

Processing pair ALL-SHW

Processing pair ALL-SNA

Processing pair ALL-SO

Processing pair ALL-STE

Processing pair ALL-SYK

Processing pair ALL-SNPS

Processing pair ALL-SYY

Processing pair ALL-TMUS

Processing pair ALL-TEL

Processing pair ALL-TDY

Processing pair ALL-TXN

Processing pair ALL-TPL

Processing pair ALL-TXT

Processing pair ALL-TMO

Processing pair ALL-TJX

Processing pair ALL-TSCO

Processing pair ALL-TT

Processing pair ALL-TDG

Processing pair ALL-TRV

Processing pair ALL-TYL

Processing pair ALL-UNP

Processing pair ALL-URI

Processing pair ALL-UNH

Processing pair ALL-VLO

Processing pair ALL-VRSK

Processing pair ALL-VRTX

Processing pair ALL-V

Processing pair ALL-VMC

Processing pair ALL-WRB

Processing pair ALL-WMT

Processing pair ALL-WM

Processing pair ALL-WAT

Processing pair ALL-WEC

Processing pair ALL-WELL

Processing pair ALL-WTW

Processing pair ALL-XEL

Processing pair ALL-XYL
ADF test for ALL-XYL failed with LinAlgError

Processing pair ALL-YUM

Processing pair GOOGL-GOOG

Processing pair GOOGL-AMZN

Processing pair GOOGL-AEE

Processing pair GOOGL-AXP

Processing pair GOOGL-AWK

Processing pair GOOGL-AMP

Processing pair GOOGL-AME

Processing pair GOOGL-AMGN

Processing pair GOOGL-APH

Processing pair GOOGL-ADI

Processing pair GOOGL-ANSS

Processing pair GOOGL-AON

Processing pair GOOGL-APO
ADF test for GOOGL-APO failed with LinAlgError

Processing pair GOOGL-AAPL

Processing pair GOOGL-AMAT

Processing pair GOOGL-ACGL

Processing pair GOOGL-AJG

Processing pair GOOGL-AIZ

Processing pair GOOGL-ADSK

Processing pair GOOGL-ADP

Processing pair GOOGL-AZO

Processing pair GOOGL-AVY

Processing pair GOOGL-AXON

Processing pair GOOGL-BAC

Processing pair GOOGL-TECH

Processing pair GOOGL-BLK

Processing pair GOOGL-BX

Processing pair GOOGL-BKNG

Processing pair GOOGL-BSX

Processing pair GOOGL-AVGO

Processing pair GOOGL-BR

Processing pair GOOGL-BRO

Processing pair GOOGL-CDNS

Processing pair GOOGL-CPT

Processing pair GOOGL-COF

Processing pair GOOGL-CARR
ADF test for GOOGL-CARR failed with LinAlgError

Processing pair GOOGL-CAT

Processing pair GOOGL-CBOE
ADF test for GOOGL-CBOE failed with LinAlgError

Processing pair GOOGL-CBRE

Processing pair GOOGL-CDW
ADF test for GOOGL-CDW failed with LinAlgError

Processing pair GOOGL-CE

Processing pair GOOGL-COR

Processing pair GOOGL-SCHW

Processing pair GOOGL-CMG

Processing pair GOOGL-CB

Processing pair GOOGL-CHD

Processing pair GOOGL-CI

Processing pair GOOGL-CINF

Processing pair GOOGL-CTAS

Processing pair GOOGL-CSCO

Processing pair GOOGL-CME

Processing pair GOOGL-KO

Processing pair GOOGL-CL

Processing pair GOOGL-COO

Processing pair GOOGL-CPRT

Processing pair GOOGL-GLW

Processing pair GOOGL-CSGP

Processing pair GOOGL-COST

Processing pair GOOGL-CSX

Processing pair GOOGL-CMI

Processing pair GOOGL-DHR

Processing pair GOOGL-DRI

Processing pair GOOGL-DE

Processing pair GOOGL-DXCM

Processing pair GOOGL-DLR

Processing pair GOOGL-DFS

Processing pair GOOGL-DPZ

Processing pair GOOGL-DOV

Processing pair GOOGL-DHI

Processing pair GOOGL-DTE

Processing pair GOOGL-DUK

Processing pair GOOGL-ETN

Processing pair GOOGL-EBAY

Processing pair GOOGL-ELV

Processing pair GOOGL-EMR

Processing pair GOOGL-ETR

Processing pair GOOGL-EFX

Processing pair GOOGL-EQIX

Processing pair GOOGL-ERIE

Processing pair GOOGL-EG

Processing pair GOOGL-EXPD

Processing pair GOOGL-EXR

Processing pair GOOGL-FDS

Processing pair GOOGL-FAST

Processing pair GOOGL-FITB

Processing pair GOOGL-FI

Processing pair GOOGL-FTNT

Processing pair GOOGL-GRMN

Processing pair GOOGL-IT

Processing pair GOOGL-GEN

Processing pair GOOGL-GD

Processing pair GOOGL-GS

Processing pair GOOGL-HIG

Processing pair GOOGL-HCA
ADF test for GOOGL-HCA failed with LinAlgError

Processing pair GOOGL-HSY

Processing pair GOOGL-HLT
ADF test for GOOGL-HLT failed with LinAlgError

Processing pair GOOGL-HOLX

Processing pair GOOGL-HD

Processing pair GOOGL-HON

Processing pair GOOGL-HPQ

Processing pair GOOGL-HUBB

Processing pair GOOGL-IEX

Processing pair GOOGL-IDXX

Processing pair GOOGL-ITW

Processing pair GOOGL-IR
ADF test for GOOGL-IR failed with LinAlgError

Processing pair GOOGL-ICE

Processing pair GOOGL-IPG

Processing pair GOOGL-INTU

Processing pair GOOGL-ISRG

Processing pair GOOGL-INVH
ADF test for GOOGL-INVH failed with LinAlgError

Processing pair GOOGL-IQV
ADF test for GOOGL-IQV failed with LinAlgError

Processing pair GOOGL-JBHT

Processing pair GOOGL-J

Processing pair GOOGL-JNJ

Processing pair GOOGL-JCI

Processing pair GOOGL-JPM

Processing pair GOOGL-KDP

Processing pair GOOGL-KKR
ADF test for GOOGL-KKR failed with LinAlgError

Processing pair GOOGL-KLAC

Processing pair GOOGL-LHX

Processing pair GOOGL-LH

Processing pair GOOGL-LRCX

Processing pair GOOGL-LDOS

Processing pair GOOGL-LEN

Processing pair GOOGL-LII

Processing pair GOOGL-LIN

Processing pair GOOGL-LYV

Processing pair GOOGL-LMT

Processing pair GOOGL-LOW

Processing pair GOOGL-LULU

Processing pair GOOGL-MAR

Processing pair GOOGL-MMC

Processing pair GOOGL-MLM

Processing pair GOOGL-MAS

Processing pair GOOGL-MA

Processing pair GOOGL-MCD

Processing pair GOOGL-MRK

Processing pair GOOGL-META
ADF test for GOOGL-META failed with LinAlgError

Processing pair GOOGL-MET

Processing pair GOOGL-MTD

Processing pair GOOGL-MCHP

Processing pair GOOGL-MU

Processing pair GOOGL-MSFT

Processing pair GOOGL-MAA

Processing pair GOOGL-MOH

Processing pair GOOGL-MDLZ

Processing pair GOOGL-MPWR

Processing pair GOOGL-MNST

Processing pair GOOGL-MCO

Processing pair GOOGL-MS

Processing pair GOOGL-MSI

Processing pair GOOGL-MSCI

Processing pair GOOGL-NDAQ

Processing pair GOOGL-NTAP

Processing pair GOOGL-NFLX

Processing pair GOOGL-NEE

Processing pair GOOGL-NDSN

Processing pair GOOGL-NSC

Processing pair GOOGL-NOC

Processing pair GOOGL-NVR

Processing pair GOOGL-NXPI
ADF test for GOOGL-NXPI failed with LinAlgError

Processing pair GOOGL-ORLY

Processing pair GOOGL-ODFL

Processing pair GOOGL-ON

Processing pair GOOGL-ORCL

Processing pair GOOGL-PCAR

Processing pair GOOGL-PKG

Processing pair GOOGL-PANW
ADF test for GOOGL-PANW failed with LinAlgError

Processing pair GOOGL-PH

Processing pair GOOGL-PAYX

Processing pair GOOGL-PNR

Processing pair GOOGL-PEP

Processing pair GOOGL-PNC

Processing pair GOOGL-POOL

Processing pair GOOGL-PFG

Processing pair GOOGL-PG

Processing pair GOOGL-PGR

Processing pair GOOGL-PLD

Processing pair GOOGL-PEG

Processing pair GOOGL-PTC

Processing pair GOOGL-PSA

Processing pair GOOGL-PHM

Processing pair GOOGL-QCOM

Processing pair GOOGL-DGX

Processing pair GOOGL-RJF

Processing pair GOOGL-RF

Processing pair GOOGL-RSG

Processing pair GOOGL-RMD

Processing pair GOOGL-ROK

Processing pair GOOGL-ROL

Processing pair GOOGL-ROP

Processing pair GOOGL-ROST

Processing pair GOOGL-SPGI

Processing pair GOOGL-CRM

Processing pair GOOGL-STX

Processing pair GOOGL-NOW
ADF test for GOOGL-NOW failed with LinAlgError

Processing pair GOOGL-SHW

Processing pair GOOGL-SNA

Processing pair GOOGL-SO

Processing pair GOOGL-STLD

Processing pair GOOGL-STE

Processing pair GOOGL-SYK

Processing pair GOOGL-SNPS

Processing pair GOOGL-TMUS

Processing pair GOOGL-TEL

Processing pair GOOGL-TDY

Processing pair GOOGL-TER

Processing pair GOOGL-TSLA
ADF test for GOOGL-TSLA failed with LinAlgError

Processing pair GOOGL-TXN

Processing pair GOOGL-TPL

Processing pair GOOGL-TXT

Processing pair GOOGL-TMO

Processing pair GOOGL-TJX

Processing pair GOOGL-TSCO

Processing pair GOOGL-TT

Processing pair GOOGL-TDG

Processing pair GOOGL-TRV

Processing pair GOOGL-TYL

Processing pair GOOGL-UNP

Processing pair GOOGL-UPS

Processing pair GOOGL-URI

Processing pair GOOGL-UNH

Processing pair GOOGL-VRSK

Processing pair GOOGL-VRTX

Processing pair GOOGL-V

Processing pair GOOGL-VMC

Processing pair GOOGL-WRB

Processing pair GOOGL-GWW

Processing pair GOOGL-WMT

Processing pair GOOGL-WM

Processing pair GOOGL-WAT

Processing pair GOOGL-WELL

Processing pair GOOGL-WST

Processing pair GOOGL-WTW

Processing pair GOOGL-XYL
ADF test for GOOGL-XYL failed with LinAlgError

Processing pair GOOGL-YUM

Processing pair GOOGL-ZTS
ADF test for GOOGL-ZTS failed with LinAlgError

Processing pair GOOG-AMZN

Processing pair GOOG-AEE

Processing pair GOOG-AXP

Processing pair GOOG-AWK

Processing pair GOOG-AMP

Processing pair GOOG-AME

Processing pair GOOG-AMGN

Processing pair GOOG-APH

Processing pair GOOG-ADI

Processing pair GOOG-ANSS

Processing pair GOOG-AON

Processing pair GOOG-APO
ADF test for GOOG-APO failed with LinAlgError

Processing pair GOOG-AAPL

Processing pair GOOG-AMAT

Processing pair GOOG-AJG

Processing pair GOOG-AIZ

Processing pair GOOG-ADSK

Processing pair GOOG-ADP

Processing pair GOOG-AZO

Processing pair GOOG-AVY

Processing pair GOOG-AXON

Processing pair GOOG-BAC

Processing pair GOOG-TECH

Processing pair GOOG-BLK

Processing pair GOOG-BX

Processing pair GOOG-BKNG

Processing pair GOOG-BSX

Processing pair GOOG-AVGO

Processing pair GOOG-BR

Processing pair GOOG-BRO

Processing pair GOOG-CDNS

Processing pair GOOG-CPT

Processing pair GOOG-COF

Processing pair GOOG-CARR
ADF test for GOOG-CARR failed with LinAlgError

Processing pair GOOG-CAT

Processing pair GOOG-CBOE
ADF test for GOOG-CBOE failed with LinAlgError

Processing pair GOOG-CBRE

Processing pair GOOG-CDW
ADF test for GOOG-CDW failed with LinAlgError

Processing pair GOOG-CE

Processing pair GOOG-COR

Processing pair GOOG-SCHW

Processing pair GOOG-CMG

Processing pair GOOG-CB

Processing pair GOOG-CHD

Processing pair GOOG-CI

Processing pair GOOG-CINF

Processing pair GOOG-CTAS

Processing pair GOOG-CSCO

Processing pair GOOG-CME

Processing pair GOOG-KO

Processing pair GOOG-COO

Processing pair GOOG-CPRT

Processing pair GOOG-GLW

Processing pair GOOG-CSGP

Processing pair GOOG-COST

Processing pair GOOG-CSX

Processing pair GOOG-CMI

Processing pair GOOG-DHR

Processing pair GOOG-DRI

Processing pair GOOG-DE

Processing pair GOOG-DXCM

Processing pair GOOG-DLR

Processing pair GOOG-DFS

Processing pair GOOG-DPZ

Processing pair GOOG-DOV

Processing pair GOOG-DHI

Processing pair GOOG-DTE

Processing pair GOOG-DUK

Processing pair GOOG-ETN

Processing pair GOOG-EBAY

Processing pair GOOG-ELV

Processing pair GOOG-EMR

Processing pair GOOG-ETR

Processing pair GOOG-EFX

Processing pair GOOG-EQIX

Processing pair GOOG-ERIE

Processing pair GOOG-EG

Processing pair GOOG-EXPD

Processing pair GOOG-EXR

Processing pair GOOG-FDS

Processing pair GOOG-FAST

Processing pair GOOG-FITB

Processing pair GOOG-FI

Processing pair GOOG-FTNT

Processing pair GOOG-GRMN

Processing pair GOOG-IT

Processing pair GOOG-GEN

Processing pair GOOG-GD

Processing pair GOOG-GS

Processing pair GOOG-HIG

Processing pair GOOG-HCA
ADF test for GOOG-HCA failed with LinAlgError

Processing pair GOOG-HSY

Processing pair GOOG-HLT
ADF test for GOOG-HLT failed with LinAlgError

Processing pair GOOG-HOLX

Processing pair GOOG-HD

Processing pair GOOG-HON

Processing pair GOOG-HPQ

Processing pair GOOG-HUBB

Processing pair GOOG-IEX

Processing pair GOOG-IDXX

Processing pair GOOG-ITW

Processing pair GOOG-IR
ADF test for GOOG-IR failed with LinAlgError

Processing pair GOOG-ICE

Processing pair GOOG-IPG

Processing pair GOOG-INTU

Processing pair GOOG-ISRG

Processing pair GOOG-INVH
ADF test for GOOG-INVH failed with LinAlgError

Processing pair GOOG-IQV
ADF test for GOOG-IQV failed with LinAlgError

Processing pair GOOG-JBHT

Processing pair GOOG-J

Processing pair GOOG-JNJ

Processing pair GOOG-JCI

Processing pair GOOG-JPM

Processing pair GOOG-KDP

Processing pair GOOG-KKR
ADF test for GOOG-KKR failed with LinAlgError

Processing pair GOOG-KLAC

Processing pair GOOG-LHX

Processing pair GOOG-LH

Processing pair GOOG-LRCX

Processing pair GOOG-LDOS

Processing pair GOOG-LEN

Processing pair GOOG-LII

Processing pair GOOG-LIN

Processing pair GOOG-LYV

Processing pair GOOG-LMT

Processing pair GOOG-LOW

Processing pair GOOG-LULU

Processing pair GOOG-MAR

Processing pair GOOG-MMC

Processing pair GOOG-MLM

Processing pair GOOG-MAS

Processing pair GOOG-MA

Processing pair GOOG-MCD

Processing pair GOOG-MRK

Processing pair GOOG-META
ADF test for GOOG-META failed with LinAlgError

Processing pair GOOG-MET

Processing pair GOOG-MTD

Processing pair GOOG-MCHP

Processing pair GOOG-MU

Processing pair GOOG-MSFT

Processing pair GOOG-MAA

Processing pair GOOG-MOH

Processing pair GOOG-MDLZ

Processing pair GOOG-MPWR

Processing pair GOOG-MNST

Processing pair GOOG-MCO

Processing pair GOOG-MS

Processing pair GOOG-MSI

Processing pair GOOG-MSCI

Processing pair GOOG-NDAQ

Processing pair GOOG-NTAP

Processing pair GOOG-NFLX

Processing pair GOOG-NEE

Processing pair GOOG-NDSN

Processing pair GOOG-NSC

Processing pair GOOG-NOC

Processing pair GOOG-NVR

Processing pair GOOG-NXPI
ADF test for GOOG-NXPI failed with LinAlgError

Processing pair GOOG-ORLY

Processing pair GOOG-ODFL

Processing pair GOOG-ON

Processing pair GOOG-ORCL

Processing pair GOOG-PCAR

Processing pair GOOG-PKG

Processing pair GOOG-PANW
ADF test for GOOG-PANW failed with LinAlgError

Processing pair GOOG-PH

Processing pair GOOG-PAYX

Processing pair GOOG-PNR

Processing pair GOOG-PEP

Processing pair GOOG-PNC

Processing pair GOOG-POOL

Processing pair GOOG-PG

Processing pair GOOG-PGR

Processing pair GOOG-PLD

Processing pair GOOG-PEG

Processing pair GOOG-PTC

Processing pair GOOG-PSA

Processing pair GOOG-PHM

Processing pair GOOG-QCOM

Processing pair GOOG-DGX

Processing pair GOOG-RJF

Processing pair GOOG-RF

Processing pair GOOG-RSG

Processing pair GOOG-RMD

Processing pair GOOG-ROK

Processing pair GOOG-ROL

Processing pair GOOG-ROP

Processing pair GOOG-ROST

Processing pair GOOG-SPGI

Processing pair GOOG-CRM

Processing pair GOOG-STX

Processing pair GOOG-NOW
ADF test for GOOG-NOW failed with LinAlgError

Processing pair GOOG-SHW

Processing pair GOOG-SNA

Processing pair GOOG-SO

Processing pair GOOG-STLD

Processing pair GOOG-STE

Processing pair GOOG-SYK

Processing pair GOOG-SNPS

Processing pair GOOG-TMUS

Processing pair GOOG-TEL

Processing pair GOOG-TDY

Processing pair GOOG-TER

Processing pair GOOG-TSLA
ADF test for GOOG-TSLA failed with LinAlgError

Processing pair GOOG-TXN

Processing pair GOOG-TPL

Processing pair GOOG-TMO

Processing pair GOOG-TJX

Processing pair GOOG-TSCO

Processing pair GOOG-TT

Processing pair GOOG-TDG

Processing pair GOOG-TRV

Processing pair GOOG-TYL

Processing pair GOOG-UNP

Processing pair GOOG-URI

Processing pair GOOG-UNH

Processing pair GOOG-VRSK

Processing pair GOOG-VRTX

Processing pair GOOG-V

Processing pair GOOG-VMC

Processing pair GOOG-WRB

Processing pair GOOG-GWW

Processing pair GOOG-WMT

Processing pair GOOG-WM

Processing pair GOOG-WAT

Processing pair GOOG-WELL

Processing pair GOOG-WST

Processing pair GOOG-WTW

Processing pair GOOG-XYL
ADF test for GOOG-XYL failed with LinAlgError

Processing pair GOOG-YUM

Processing pair GOOG-ZTS
ADF test for GOOG-ZTS failed with LinAlgError

Processing pair MO-CAG

Processing pair MO-STZ

Processing pair MO-DD

Processing pair MO-EIX

Processing pair MO-GD

Processing pair MO-HSIC

Processing pair MO-NI

Processing pair MO-OMC

Processing pair MO-PPL

Processing pair MO-REG

Processing pair AMZN-AEE

Processing pair AMZN-AEP

Processing pair AMZN-AMT

Processing pair AMZN-AWK

Processing pair AMZN-AME

Processing pair AMZN-AMGN

Processing pair AMZN-APH

Processing pair AMZN-ADI

Processing pair AMZN-ANSS

Processing pair AMZN-AON

Processing pair AMZN-AAPL

Processing pair AMZN-AMAT

Processing pair AMZN-AIZ

Processing pair AMZN-ADSK

Processing pair AMZN-ADP

Processing pair AMZN-AVY

Processing pair AMZN-BALL

Processing pair AMZN-BAC

Processing pair AMZN-BBY

Processing pair AMZN-TECH

Processing pair AMZN-BLK

Processing pair AMZN-BSX

Processing pair AMZN-BR

Processing pair AMZN-BRO

Processing pair AMZN-CBRE

Processing pair AMZN-CDW
ADF test for AMZN-CDW failed with LinAlgError

Processing pair AMZN-CE

Processing pair AMZN-CRL

Processing pair AMZN-CHD

Processing pair AMZN-CINF

Processing pair AMZN-CTAS

Processing pair AMZN-CSCO

Processing pair AMZN-CME

Processing pair AMZN-CMS

Processing pair AMZN-COO

Processing pair AMZN-CPRT

Processing pair AMZN-GLW

Processing pair AMZN-CSGP

Processing pair AMZN-CSX

Processing pair AMZN-CMI

Processing pair AMZN-DHR

Processing pair AMZN-DRI

Processing pair AMZN-DXCM

Processing pair AMZN-DLR

Processing pair AMZN-DPZ

Processing pair AMZN-DOV

Processing pair AMZN-DTE

Processing pair AMZN-DUK

Processing pair AMZN-EBAY

Processing pair AMZN-ECL

Processing pair AMZN-EW

Processing pair AMZN-EA

Processing pair AMZN-ELV

Processing pair AMZN-EMR

Processing pair AMZN-ETR

Processing pair AMZN-EFX

Processing pair AMZN-EQIX

Processing pair AMZN-EXPD

Processing pair AMZN-EXR

Processing pair AMZN-FDS

Processing pair AMZN-FAST

Processing pair AMZN-FI

Processing pair AMZN-GRMN

Processing pair AMZN-GEN

Processing pair AMZN-HOLX

Processing pair AMZN-HD

Processing pair AMZN-HON

Processing pair AMZN-IEX

Processing pair AMZN-IDXX

Processing pair AMZN-ITW

Processing pair AMZN-ICE

Processing pair AMZN-INTU

Processing pair AMZN-ISRG

Processing pair AMZN-IQV
ADF test for AMZN-IQV failed with LinAlgError

Processing pair AMZN-JBHT

Processing pair AMZN-JKHY

Processing pair AMZN-J

Processing pair AMZN-JNJ

Processing pair AMZN-JPM

Processing pair AMZN-KDP

Processing pair AMZN-LHX

Processing pair AMZN-LH

Processing pair AMZN-LRCX

Processing pair AMZN-LDOS

Processing pair AMZN-LII

Processing pair AMZN-LYV

Processing pair AMZN-LMT

Processing pair AMZN-LOW

Processing pair AMZN-LULU

Processing pair AMZN-MMC

Processing pair AMZN-MAS

Processing pair AMZN-MA

Processing pair AMZN-MKC

Processing pair AMZN-MCD

Processing pair AMZN-META
ADF test for AMZN-META failed with LinAlgError

Processing pair AMZN-MTD

Processing pair AMZN-MCHP

Processing pair AMZN-MU

Processing pair AMZN-MSFT

Processing pair AMZN-MAA

Processing pair AMZN-MOH

Processing pair AMZN-MDLZ

Processing pair AMZN-MNST

Processing pair AMZN-MCO

Processing pair AMZN-MSCI

Processing pair AMZN-NDAQ

Processing pair AMZN-NFLX

Processing pair AMZN-NEE

Processing pair AMZN-NKE

Processing pair AMZN-NDSN

Processing pair AMZN-NSC

Processing pair AMZN-NVR

Processing pair AMZN-NXPI
ADF test for AMZN-NXPI failed with LinAlgError

Processing pair AMZN-PKG

Processing pair AMZN-PAYX

Processing pair AMZN-PEP

Processing pair AMZN-PNC

Processing pair AMZN-POOL

Processing pair AMZN-PG

Processing pair AMZN-PLD

Processing pair AMZN-PEG

Processing pair AMZN-PTC

Processing pair AMZN-QCOM

Processing pair AMZN-DGX

Processing pair AMZN-RSG

Processing pair AMZN-RMD

Processing pair AMZN-RVTY

Processing pair AMZN-ROK

Processing pair AMZN-ROL

Processing pair AMZN-ROP

Processing pair AMZN-ROST

Processing pair AMZN-SPGI

Processing pair AMZN-CRM

Processing pair AMZN-NOW
ADF test for AMZN-NOW failed with LinAlgError

Processing pair AMZN-SHW

Processing pair AMZN-SBUX

Processing pair AMZN-STE

Processing pair AMZN-SYK

Processing pair AMZN-SYY

Processing pair AMZN-TMUS

Processing pair AMZN-TROW

Processing pair AMZN-TTWO

Processing pair AMZN-TEL

Processing pair AMZN-TDY

Processing pair AMZN-TER

Processing pair AMZN-TXN

Processing pair AMZN-TMO

Processing pair AMZN-TJX

Processing pair AMZN-TYL

Processing pair AMZN-UNP

Processing pair AMZN-UNH

Processing pair AMZN-VRSN

Processing pair AMZN-VRSK

Processing pair AMZN-V

Processing pair AMZN-VMC

Processing pair AMZN-WMT

Processing pair AMZN-WM

Processing pair AMZN-WAT

Processing pair AMZN-WEC

Processing pair AMZN-WST

Processing pair AMZN-WTW

Processing pair AMZN-WDAY
ADF test for AMZN-WDAY failed with LinAlgError

Processing pair AMZN-XEL

Processing pair AMZN-XYL
ADF test for AMZN-XYL failed with LinAlgError

Processing pair AMZN-YUM

Processing pair AMZN-ZBRA

Processing pair AMZN-ZTS
ADF test for AMZN-ZTS failed with LinAlgError

Processing pair AMCR-AEE
ADF test for AMCR-AEE failed with LinAlgError

Processing pair AMCR-AEP
ADF test for AMCR-AEP failed with LinAlgError

Processing pair AMCR-AWK
ADF test for AMCR-AWK failed with LinAlgError

Processing pair AMCR-CHRW
ADF test for AMCR-CHRW failed with LinAlgError

Processing pair AMCR-CMS
ADF test for AMCR-CMS failed with LinAlgError

Processing pair AMCR-GLW
ADF test for AMCR-GLW failed with LinAlgError

Processing pair AMCR-DTE
ADF test for AMCR-DTE failed with LinAlgError

Processing pair AMCR-DUK
ADF test for AMCR-DUK failed with LinAlgError

Processing pair AMCR-EVRG
ADF test for AMCR-EVRG failed with LinAlgError

Processing pair AMCR-EXR
ADF test for AMCR-EXR failed with LinAlgError

Processing pair AMCR-HOLX
ADF test for AMCR-HOLX failed with LinAlgError

Processing pair AMCR-HON
ADF test for AMCR-HON failed with LinAlgError

Processing pair AMCR-JNJ
ADF test for AMCR-JNJ failed with LinAlgError

Processing pair AMCR-LH
ADF test for AMCR-LH failed with LinAlgError

Processing pair AMCR-MTD
ADF test for AMCR-MTD failed with LinAlgError

Processing pair AMCR-MAA
ADF test for AMCR-MAA failed with LinAlgError

Processing pair AMCR-NEE
ADF test for AMCR-NEE failed with LinAlgError

Processing pair AMCR-PNC
ADF test for AMCR-PNC failed with LinAlgError

Processing pair AMCR-DGX
ADF test for AMCR-DGX failed with LinAlgError

Processing pair AMCR-SYY
ADF test for AMCR-SYY failed with LinAlgError

Processing pair AMCR-TXN
ADF test for AMCR-TXN failed with LinAlgError

Processing pair AMCR-VLTO
ADF test for AMCR-VLTO failed with LinAlgError

Processing pair AMCR-WAT
ADF test for AMCR-WAT failed with LinAlgError

Processing pair AMCR-XEL
ADF test for AMCR-XEL failed with LinAlgError

Processing pair AEE-AEP

Processing pair AEE-AMT

Processing pair AEE-AWK

Processing pair AEE-AME

Processing pair AEE-AMGN

Processing pair AEE-ADI

Processing pair AEE-ANSS

Processing pair AEE-AON

Processing pair AEE-AIZ

Processing pair AEE-ATO

Processing pair AEE-ADSK

Processing pair AEE-ADP

Processing pair AEE-AVB

Processing pair AEE-AVY

Processing pair AEE-BALL

Processing pair AEE-BAC

Processing pair AEE-BDX

Processing pair AEE-BBY

Processing pair AEE-TECH

Processing pair AEE-BLK

Processing pair AEE-BSX

Processing pair AEE-BR

Processing pair AEE-CHRW

Processing pair AEE-CPT

Processing pair AEE-CBRE

Processing pair AEE-CDW
ADF test for AEE-CDW failed with LinAlgError

Processing pair AEE-CE

Processing pair AEE-CNC

Processing pair AEE-CNP

Processing pair AEE-SCHW

Processing pair AEE-CB

Processing pair AEE-CHD

Processing pair AEE-CI

Processing pair AEE-CINF

Processing pair AEE-CSCO

Processing pair AEE-CLX

Processing pair AEE-CME

Processing pair AEE-CMS

Processing pair AEE-KO

Processing pair AEE-CMCSA

Processing pair AEE-ED

Processing pair AEE-STZ

Processing pair AEE-COO

Processing pair AEE-GLW

Processing pair AEE-CSGP

Processing pair AEE-CCI

Processing pair AEE-CSX

Processing pair AEE-DHR

Processing pair AEE-DRI

Processing pair AEE-DLR

Processing pair AEE-DG

Processing pair AEE-DPZ

Processing pair AEE-DOV

Processing pair AEE-DTE

Processing pair AEE-DUK

Processing pair AEE-EBAY

Processing pair AEE-ECL

Processing pair AEE-EW

Processing pair AEE-EA

Processing pair AEE-ELV

Processing pair AEE-ETR

Processing pair AEE-EFX

Processing pair AEE-EQIX

Processing pair AEE-EQR

Processing pair AEE-ESS

Processing pair AEE-EG

Processing pair AEE-EVRG

Processing pair AEE-ES

Processing pair AEE-EXC

Processing pair AEE-EXPD

Processing pair AEE-EXR

Processing pair AEE-FDS

Processing pair AEE-FI

Processing pair AEE-GEN

Processing pair AEE-GPC

Processing pair AEE-GL

Processing pair AEE-HSY

Processing pair AEE-HOLX

Processing pair AEE-HD

Processing pair AEE-HON

Processing pair AEE-HRL

Processing pair AEE-HUM

Processing pair AEE-IEX

Processing pair AEE-IDXX

Processing pair AEE-ITW

Processing pair AEE-PODD

Processing pair AEE-ICE

Processing pair AEE-IPG

Processing pair AEE-INTU

Processing pair AEE-IQV
ADF test for AEE-IQV failed with LinAlgError

Processing pair AEE-JBHT

Processing pair AEE-JKHY

Processing pair AEE-J

Processing pair AEE-JNJ

Processing pair AEE-JPM

Processing pair AEE-KDP

Processing pair AEE-KEYS
ADF test for AEE-KEYS failed with LinAlgError

Processing pair AEE-KMB

Processing pair AEE-LHX

Processing pair AEE-LH

Processing pair AEE-LDOS

Processing pair AEE-LYV

Processing pair AEE-LMT

Processing pair AEE-LOW

Processing pair AEE-MMC

Processing pair AEE-MAS

Processing pair AEE-MA

Processing pair AEE-MKC

Processing pair AEE-MCD

Processing pair AEE-MDT

Processing pair AEE-MTD

Processing pair AEE-MCHP

Processing pair AEE-MAA

Processing pair AEE-MOH

Processing pair AEE-MDLZ

Processing pair AEE-MNST

Processing pair AEE-MCO

Processing pair AEE-MSCI

Processing pair AEE-NDAQ

Processing pair AEE-NEE

Processing pair AEE-NKE

Processing pair AEE-NI

Processing pair AEE-NDSN

Processing pair AEE-NSC

Processing pair AEE-NOC

Processing pair AEE-PKG

Processing pair AEE-PAYX

Processing pair AEE-PEP

Processing pair AEE-PFE

Processing pair AEE-PNW

Processing pair AEE-PNC

Processing pair AEE-POOL

Processing pair AEE-PG

Processing pair AEE-PLD

Processing pair AEE-PEG

Processing pair AEE-PTC

Processing pair AEE-PSA

Processing pair AEE-DGX

Processing pair AEE-O

Processing pair AEE-RF

Processing pair AEE-RSG

Processing pair AEE-RMD

Processing pair AEE-RVTY

Processing pair AEE-ROK

Processing pair AEE-ROL

Processing pair AEE-ROP

Processing pair AEE-ROST

Processing pair AEE-SPGI

Processing pair AEE-CRM

Processing pair AEE-SBAC

Processing pair AEE-SRE

Processing pair AEE-SHW

Processing pair AEE-SO

Processing pair AEE-SBUX

Processing pair AEE-STE

Processing pair AEE-SYK

Processing pair AEE-SYY

Processing pair AEE-TMUS

Processing pair AEE-TTWO

Processing pair AEE-TEL

Processing pair AEE-TDY

Processing pair AEE-TXN

Processing pair AEE-TMO

Processing pair AEE-TJX

Processing pair AEE-TRV

Processing pair AEE-TYL

Processing pair AEE-UDR

Processing pair AEE-ULTA

Processing pair AEE-UNP

Processing pair AEE-UPS

Processing pair AEE-UNH

Processing pair AEE-VRSN

Processing pair AEE-VRSK

Processing pair AEE-V

Processing pair AEE-VMC

Processing pair AEE-WRB

Processing pair AEE-WM

Processing pair AEE-WAT

Processing pair AEE-WEC

Processing pair AEE-WST

Processing pair AEE-WTW

Processing pair AEE-XEL

Processing pair AEE-XYL
ADF test for AEE-XYL failed with LinAlgError

Processing pair AEE-YUM

Processing pair AEE-ZTS
ADF test for AEE-ZTS failed with LinAlgError

Processing pair AEP-AMT

Processing pair AEP-AWK

Processing pair AEP-AME

Processing pair AEP-AMGN

Processing pair AEP-ADI

Processing pair AEP-ANSS

Processing pair AEP-AON

Processing pair AEP-AIZ

Processing pair AEP-ATO

Processing pair AEP-ADSK

Processing pair AEP-ADP

Processing pair AEP-AVB

Processing pair AEP-AVY

Processing pair AEP-BAC

Processing pair AEP-BDX

Processing pair AEP-BLK

Processing pair AEP-BSX

Processing pair AEP-BR

Processing pair AEP-CHRW

Processing pair AEP-CPT

Processing pair AEP-CBOE
ADF test for AEP-CBOE failed with LinAlgError

Processing pair AEP-CBRE

Processing pair AEP-CDW
ADF test for AEP-CDW failed with LinAlgError

Processing pair AEP-CE

Processing pair AEP-CNC

Processing pair AEP-CNP

Processing pair AEP-CB

Processing pair AEP-CHD

Processing pair AEP-CI

Processing pair AEP-CINF

Processing pair AEP-CSCO

Processing pair AEP-CLX

Processing pair AEP-CME

Processing pair AEP-CMS

Processing pair AEP-KO

Processing pair AEP-CL

Processing pair AEP-CMCSA

Processing pair AEP-ED

Processing pair AEP-STZ

Processing pair AEP-COO

Processing pair AEP-GLW

Processing pair AEP-CPAY
ADF test for AEP-CPAY failed with LinAlgError

Processing pair AEP-CSGP

Processing pair AEP-CCI

Processing pair AEP-CSX

Processing pair AEP-DHR

Processing pair AEP-DRI

Processing pair AEP-DLR

Processing pair AEP-DFS

Processing pair AEP-DPZ

Processing pair AEP-DOV

Processing pair AEP-DTE

Processing pair AEP-DUK

Processing pair AEP-ECL

Processing pair AEP-EIX

Processing pair AEP-EW

Processing pair AEP-EA

Processing pair AEP-ELV

Processing pair AEP-ETR

Processing pair AEP-EFX

Processing pair AEP-EQIX

Processing pair AEP-EQR

Processing pair AEP-ESS

Processing pair AEP-EG

Processing pair AEP-EVRG

Processing pair AEP-ES

Processing pair AEP-EXR

Processing pair AEP-FDS

Processing pair AEP-FI

Processing pair AEP-GD

Processing pair AEP-GL

Processing pair AEP-HSY

Processing pair AEP-HOLX

Processing pair AEP-HD

Processing pair AEP-HON

Processing pair AEP-HRL

Processing pair AEP-HUM

Processing pair AEP-HBAN

Processing pair AEP-IEX

Processing pair AEP-ITW

Processing pair AEP-ICE

Processing pair AEP-IQV
ADF test for AEP-IQV failed with LinAlgError

Processing pair AEP-JBHT

Processing pair AEP-JKHY

Processing pair AEP-JNJ

Processing pair AEP-JPM

Processing pair AEP-KDP

Processing pair AEP-KMB

Processing pair AEP-LHX

Processing pair AEP-LH

Processing pair AEP-LDOS

Processing pair AEP-LYV

Processing pair AEP-LMT

Processing pair AEP-LOW

Processing pair AEP-MAR

Processing pair AEP-MMC

Processing pair AEP-MAS

Processing pair AEP-MA

Processing pair AEP-MKC

Processing pair AEP-MCD

Processing pair AEP-MRK

Processing pair AEP-MTD

Processing pair AEP-MCHP

Processing pair AEP-MAA

Processing pair AEP-MDLZ

Processing pair AEP-MNST

Processing pair AEP-MCO

Processing pair AEP-NDAQ

Processing pair AEP-NEE

Processing pair AEP-NI

Processing pair AEP-NDSN

Processing pair AEP-NSC

Processing pair AEP-NOC

Processing pair AEP-NVR

Processing pair AEP-PKG

Processing pair AEP-PAYX

Processing pair AEP-PEP

Processing pair AEP-PNW

Processing pair AEP-PNC

Processing pair AEP-PG

Processing pair AEP-PLD

Processing pair AEP-PEG

Processing pair AEP-PSA

Processing pair AEP-DGX

Processing pair AEP-RTX

Processing pair AEP-O

Processing pair AEP-RF

Processing pair AEP-RSG

Processing pair AEP-RMD

Processing pair AEP-RVTY

Processing pair AEP-ROK

Processing pair AEP-ROL

Processing pair AEP-ROP

Processing pair AEP-ROST

Processing pair AEP-SPGI

Processing pair AEP-CRM

Processing pair AEP-SBAC

Processing pair AEP-SRE

Processing pair AEP-SHW

Processing pair AEP-SO

Processing pair AEP-SBUX

Processing pair AEP-STE

Processing pair AEP-SYK

Processing pair AEP-SYY

Processing pair AEP-TMUS

Processing pair AEP-TTWO

Processing pair AEP-TEL

Processing pair AEP-TDY

Processing pair AEP-TXN

Processing pair AEP-TMO

Processing pair AEP-TJX

Processing pair AEP-TRV

Processing pair AEP-TYL

Processing pair AEP-UDR

Processing pair AEP-ULTA

Processing pair AEP-UNP

Processing pair AEP-UNH

Processing pair AEP-VLTO
ADF test for AEP-VLTO failed with LinAlgError

Processing pair AEP-VRSN

Processing pair AEP-VRSK

Processing pair AEP-V

Processing pair AEP-VMC

Processing pair AEP-WRB

Processing pair AEP-WMT

Processing pair AEP-WM

Processing pair AEP-WAT

Processing pair AEP-WEC

Processing pair AEP-WTW

Processing pair AEP-XEL

Processing pair AEP-XYL
ADF test for AEP-XYL failed with LinAlgError

Processing pair AEP-YUM

Processing pair AEP-ZTS
ADF test for AEP-ZTS failed with LinAlgError

Processing pair AXP-AMP

Processing pair AXP-AME

Processing pair AXP-AMGN

Processing pair AXP-APH

Processing pair AXP-ADI

Processing pair AXP-AON

Processing pair AXP-APO
ADF test for AXP-APO failed with LinAlgError

Processing pair AXP-AAPL

Processing pair AXP-AMAT

Processing pair AXP-ACGL

Processing pair AXP-ANET
ADF test for AXP-ANET failed with LinAlgError

Processing pair AXP-AJG

Processing pair AXP-AIZ

Processing pair AXP-ADP

Processing pair AXP-AZO

Processing pair AXP-AVY

Processing pair AXP-AXON

Processing pair AXP-BAC

Processing pair AXP-BLK

Processing pair AXP-BX

Processing pair AXP-BKNG

Processing pair AXP-BSX

Processing pair AXP-AVGO

Processing pair AXP-BR

Processing pair AXP-BRO

Processing pair AXP-BLDR

Processing pair AXP-CDNS

Processing pair AXP-COF

Processing pair AXP-CARR
ADF test for AXP-CARR failed with LinAlgError

Processing pair AXP-CAT

Processing pair AXP-CBOE
ADF test for AXP-CBOE failed with LinAlgError

Processing pair AXP-CBRE

Processing pair AXP-CDW
ADF test for AXP-CDW failed with LinAlgError

Processing pair AXP-COR

Processing pair AXP-CMG

Processing pair AXP-CB

Processing pair AXP-CHD

Processing pair AXP-CI

Processing pair AXP-CINF

Processing pair AXP-CTAS

Processing pair AXP-KO

Processing pair AXP-CL

Processing pair AXP-CPRT

Processing pair AXP-COST

Processing pair AXP-CSX

Processing pair AXP-CMI

Processing pair AXP-DHR

Processing pair AXP-DRI

Processing pair AXP-DECK

Processing pair AXP-DE

Processing pair AXP-DELL
ADF test for AXP-DELL failed with LinAlgError

Processing pair AXP-DFS

Processing pair AXP-DOV

Processing pair AXP-DHI

Processing pair AXP-DUK

Processing pair AXP-ETN

Processing pair AXP-ELV

Processing pair AXP-EMR

Processing pair AXP-ETR

Processing pair AXP-EFX

Processing pair AXP-ERIE

Processing pair AXP-EG

Processing pair AXP-EXPD

Processing pair AXP-EXR

Processing pair AXP-FDS

Processing pair AXP-FICO

Processing pair AXP-FAST

Processing pair AXP-FITB

Processing pair AXP-FI

Processing pair AXP-FTNT

Processing pair AXP-GRMN

Processing pair AXP-IT

Processing pair AXP-GEV
ADF test for AXP-GEV failed with LinAlgError

Processing pair AXP-GD

Processing pair AXP-GDDY
ADF test for AXP-GDDY failed with LinAlgError

Processing pair AXP-GS

Processing pair AXP-HIG

Processing pair AXP-HCA
ADF test for AXP-HCA failed with LinAlgError

Processing pair AXP-HLT
ADF test for AXP-HLT failed with LinAlgError

Processing pair AXP-HD

Processing pair AXP-HON

Processing pair AXP-HWM
ADF test for AXP-HWM failed with LinAlgError

Processing pair AXP-HPQ

Processing pair AXP-HUBB

Processing pair AXP-ITW

Processing pair AXP-IR
ADF test for AXP-IR failed with LinAlgError

Processing pair AXP-ICE

Processing pair AXP-INTU

Processing pair AXP-ISRG

Processing pair AXP-IRM

Processing pair AXP-JBHT

Processing pair AXP-JBL

Processing pair AXP-J

Processing pair AXP-JCI

Processing pair AXP-JPM

Processing pair AXP-KKR
ADF test for AXP-KKR failed with LinAlgError

Processing pair AXP-KLAC

Processing pair AXP-LH

Processing pair AXP-LRCX

Processing pair AXP-LDOS

Processing pair AXP-LEN

Processing pair AXP-LII

Processing pair AXP-LLY

Processing pair AXP-LIN

Processing pair AXP-LYV

Processing pair AXP-LMT

Processing pair AXP-L

Processing pair AXP-LOW

Processing pair AXP-MAR

Processing pair AXP-MMC

Processing pair AXP-MLM

Processing pair AXP-MAS

Processing pair AXP-MA

Processing pair AXP-MCD

Processing pair AXP-MRK

Processing pair AXP-MET

Processing pair AXP-MTD

Processing pair AXP-MCHP

Processing pair AXP-MU

Processing pair AXP-MSFT

Processing pair AXP-MOH

Processing pair AXP-MDLZ

Processing pair AXP-MPWR

Processing pair AXP-MCO

Processing pair AXP-MS

Processing pair AXP-MSI

Processing pair AXP-MSCI

Processing pair AXP-NDAQ

Processing pair AXP-NTAP

Processing pair AXP-NDSN

Processing pair AXP-NSC

Processing pair AXP-NRG

Processing pair AXP-NUE

Processing pair AXP-NVR

Processing pair AXP-NXPI
ADF test for AXP-NXPI failed with LinAlgError

Processing pair AXP-ORLY

Processing pair AXP-ODFL

Processing pair AXP-OKE

Processing pair AXP-ORCL

Processing pair AXP-OTIS
ADF test for AXP-OTIS failed with LinAlgError

Processing pair AXP-PCAR

Processing pair AXP-PKG

Processing pair AXP-PANW
ADF test for AXP-PANW failed with LinAlgError

Processing pair AXP-PH

Processing pair AXP-PAYX

Processing pair AXP-PNR

Processing pair AXP-PEP

Processing pair AXP-PNC

Processing pair AXP-PFG

Processing pair AXP-PG

Processing pair AXP-PGR

Processing pair AXP-PLD

Processing pair AXP-PRU

Processing pair AXP-PEG

Processing pair AXP-PTC

Processing pair AXP-PSA

Processing pair AXP-PHM

Processing pair AXP-PWR

Processing pair AXP-QCOM

Processing pair AXP-DGX

Processing pair AXP-RJF

Processing pair AXP-RTX

Processing pair AXP-RF

Processing pair AXP-RSG

Processing pair AXP-ROL

Processing pair AXP-ROP

Processing pair AXP-ROST

Processing pair AXP-SPGI

Processing pair AXP-CRM

Processing pair AXP-STX

Processing pair AXP-SRE

Processing pair AXP-NOW
ADF test for AXP-NOW failed with LinAlgError

Processing pair AXP-SHW

Processing pair AXP-SNA

Processing pair AXP-SO

Processing pair AXP-STLD

Processing pair AXP-STE

Processing pair AXP-SYK

Processing pair AXP-SNPS

Processing pair AXP-TMUS

Processing pair AXP-TEL

Processing pair AXP-TDY

Processing pair AXP-TXN

Processing pair AXP-TPL

Processing pair AXP-TXT

Processing pair AXP-TMO

Processing pair AXP-TJX

Processing pair AXP-TSCO

Processing pair AXP-TT

Processing pair AXP-TDG

Processing pair AXP-TRV

Processing pair AXP-TYL

Processing pair AXP-UNP

Processing pair AXP-URI

Processing pair AXP-UNH

Processing pair AXP-VLO

Processing pair AXP-VLTO
ADF test for AXP-VLTO failed with LinAlgError

Processing pair AXP-VRSK

Processing pair AXP-VRTX

Processing pair AXP-V

Processing pair AXP-VMC

Processing pair AXP-WRB

Processing pair AXP-GWW

Processing pair AXP-WMT

Processing pair AXP-WM

Processing pair AXP-WAT

Processing pair AXP-WELL

Processing pair AXP-WTW

Processing pair AXP-XYL
ADF test for AXP-XYL failed with LinAlgError

Processing pair AXP-YUM

Processing pair AIG-OMC

Processing pair AIG-OTIS
ADF test for AIG-OTIS failed with LinAlgError

Processing pair AIG-PRU

Processing pair AIG-WAB

Processing pair AIG-WFC

Processing pair AMT-AWK

Processing pair AMT-ANSS

Processing pair AMT-AON

Processing pair AMT-AIZ

Processing pair AMT-ATO

Processing pair AMT-ADSK

Processing pair AMT-ADP

Processing pair AMT-AVY

Processing pair AMT-BALL

Processing pair AMT-BAC

Processing pair AMT-BDX

Processing pair AMT-BBY

Processing pair AMT-TECH

Processing pair AMT-BLK

Processing pair AMT-BR

Processing pair AMT-CPT

Processing pair AMT-CE

Processing pair AMT-CNC

Processing pair AMT-CRL

Processing pair AMT-CHTR
ADF test for AMT-CHTR failed with LinAlgError

Processing pair AMT-CHD

Processing pair AMT-CINF

Processing pair AMT-CSCO

Processing pair AMT-CLX

Processing pair AMT-CME

Processing pair AMT-CMS

Processing pair AMT-KO

Processing pair AMT-CMCSA

Processing pair AMT-COO

Processing pair AMT-CSGP

Processing pair AMT-CCI

Processing pair AMT-CSX

Processing pair AMT-DHR

Processing pair AMT-DLR

Processing pair AMT-DG

Processing pair AMT-DPZ

Processing pair AMT-DOV

Processing pair AMT-DTE

Processing pair AMT-DUK

Processing pair AMT-EBAY

Processing pair AMT-ECL

Processing pair AMT-EW

Processing pair AMT-ETR

Processing pair AMT-EFX

Processing pair AMT-EQIX

Processing pair AMT-ESS

Processing pair AMT-EL

Processing pair AMT-EVRG

Processing pair AMT-ES

Processing pair AMT-EXR

Processing pair AMT-FDS

Processing pair AMT-FI

Processing pair AMT-GEN

Processing pair AMT-GPN

Processing pair AMT-HOLX

Processing pair AMT-HD

Processing pair AMT-HON

Processing pair AMT-HRL

Processing pair AMT-HUM

Processing pair AMT-IEX

Processing pair AMT-IDXX

Processing pair AMT-ITW

Processing pair AMT-PODD

Processing pair AMT-ICE

Processing pair AMT-IQV
ADF test for AMT-IQV failed with LinAlgError

Processing pair AMT-JKHY

Processing pair AMT-JNJ

Processing pair AMT-KDP

Processing pair AMT-KMB

Processing pair AMT-LHX

Processing pair AMT-LH

Processing pair AMT-LDOS

Processing pair AMT-LYV

Processing pair AMT-LMT

Processing pair AMT-MKTX

Processing pair AMT-MAS

Processing pair AMT-MA

Processing pair AMT-MKC

Processing pair AMT-MCD

Processing pair AMT-MDT

Processing pair AMT-MTD

Processing pair AMT-MAA

Processing pair AMT-MDLZ

Processing pair AMT-MCO

Processing pair AMT-MSCI

Processing pair AMT-NDAQ

Processing pair AMT-NEE

Processing pair AMT-NKE

Processing pair AMT-NDSN

Processing pair AMT-NSC

Processing pair AMT-NOC

Processing pair AMT-PAYX

Processing pair AMT-PAYC
ADF test for AMT-PAYC failed with LinAlgError

Processing pair AMT-PEP

Processing pair AMT-PNC

Processing pair AMT-POOL

Processing pair AMT-PG

Processing pair AMT-PLD

Processing pair AMT-PEG

Processing pair AMT-DGX

Processing pair AMT-O

Processing pair AMT-RMD

Processing pair AMT-RVTY

Processing pair AMT-ROK

Processing pair AMT-ROL

Processing pair AMT-ROP

Processing pair AMT-ROST

Processing pair AMT-SPGI

Processing pair AMT-CRM

Processing pair AMT-SBAC

Processing pair AMT-SRE

Processing pair AMT-SHW

Processing pair AMT-SBUX

Processing pair AMT-STE

Processing pair AMT-SYY

Processing pair AMT-TROW

Processing pair AMT-TTWO

Processing pair AMT-TEL

Processing pair AMT-TDY

Processing pair AMT-TFX

Processing pair AMT-TER

Processing pair AMT-TXN

Processing pair AMT-TMO

Processing pair AMT-TYL

Processing pair AMT-UDR

Processing pair AMT-UNP

Processing pair AMT-VRSN

Processing pair AMT-VRSK

Processing pair AMT-V

Processing pair AMT-WAT

Processing pair AMT-WEC

Processing pair AMT-WTW

Processing pair AMT-XEL

Processing pair AMT-YUM

Processing pair AMT-ZBRA

Processing pair AMT-ZTS
ADF test for AMT-ZTS failed with LinAlgError

Processing pair AWK-AME

Processing pair AWK-AMGN

Processing pair AWK-ADI

Processing pair AWK-ANSS

Processing pair AWK-AON

Processing pair AWK-AIZ

Processing pair AWK-ATO

Processing pair AWK-ADSK

Processing pair AWK-ADP

Processing pair AWK-AVB

Processing pair AWK-AVY

Processing pair AWK-BALL

Processing pair AWK-BAC

Processing pair AWK-BDX

Processing pair AWK-BBY

Processing pair AWK-TECH

Processing pair AWK-BLK

Processing pair AWK-BR

Processing pair AWK-CHRW

Processing pair AWK-CPT

Processing pair AWK-CBRE

Processing pair AWK-CDW
ADF test for AWK-CDW failed with LinAlgError

Processing pair AWK-CE

Processing pair AWK-CNC

Processing pair AWK-CRL

Processing pair AWK-SCHW

Processing pair AWK-CHTR
ADF test for AWK-CHTR failed with LinAlgError

Processing pair AWK-CHD

Processing pair AWK-CINF

Processing pair AWK-CSCO

Processing pair AWK-CLX

Processing pair AWK-CME

Processing pair AWK-CMS

Processing pair AWK-KO

Processing pair AWK-CMCSA

Processing pair AWK-ED

Processing pair AWK-STZ

Processing pair AWK-COO

Processing pair AWK-GLW

Processing pair AWK-CSGP

Processing pair AWK-CCI

Processing pair AWK-CSX

Processing pair AWK-DHR

Processing pair AWK-DRI

Processing pair AWK-DXCM

Processing pair AWK-DLR

Processing pair AWK-DG

Processing pair AWK-DPZ

Processing pair AWK-DOV

Processing pair AWK-DTE

Processing pair AWK-DUK

Processing pair AWK-EBAY

Processing pair AWK-ECL

Processing pair AWK-EW

Processing pair AWK-EA

Processing pair AWK-ELV

Processing pair AWK-ETR

Processing pair AWK-EPAM
ADF test for AWK-EPAM failed with LinAlgError

Processing pair AWK-EFX

Processing pair AWK-EQIX

Processing pair AWK-ESS

Processing pair AWK-EL

Processing pair AWK-EVRG

Processing pair AWK-ES

Processing pair AWK-EXPD

Processing pair AWK-EXR

Processing pair AWK-FDS

Processing pair AWK-FI

Processing pair AWK-GRMN

Processing pair AWK-GEN

Processing pair AWK-GL

Processing pair AWK-HSY

Processing pair AWK-HOLX

Processing pair AWK-HD

Processing pair AWK-HON

Processing pair AWK-HRL

Processing pair AWK-HUM

Processing pair AWK-IEX

Processing pair AWK-IDXX

Processing pair AWK-ITW

Processing pair AWK-PODD

Processing pair AWK-ICE

Processing pair AWK-INTU

Processing pair AWK-IQV
ADF test for AWK-IQV failed with LinAlgError

Processing pair AWK-JBHT

Processing pair AWK-JKHY

Processing pair AWK-J

Processing pair AWK-JNJ

Processing pair AWK-KDP

Processing pair AWK-KEYS
ADF test for AWK-KEYS failed with LinAlgError

Processing pair AWK-KMB

Processing pair AWK-LHX

Processing pair AWK-LH

Processing pair AWK-LDOS

Processing pair AWK-LYV

Processing pair AWK-LMT

Processing pair AWK-LOW

Processing pair AWK-LULU

Processing pair AWK-MKTX

Processing pair AWK-MMC

Processing pair AWK-MAS

Processing pair AWK-MA

Processing pair AWK-MKC

Processing pair AWK-MCD

Processing pair AWK-MDT

Processing pair AWK-MTD

Processing pair AWK-MCHP

Processing pair AWK-MAA

Processing pair AWK-MOH

Processing pair AWK-MDLZ

Processing pair AWK-MNST

Processing pair AWK-MCO

Processing pair AWK-MSCI

Processing pair AWK-NDAQ

Processing pair AWK-NEE

Processing pair AWK-NKE

Processing pair AWK-NI

Processing pair AWK-NDSN

Processing pair AWK-NSC

Processing pair AWK-NOC

Processing pair AWK-PAYX

Processing pair AWK-PAYC
ADF test for AWK-PAYC failed with LinAlgError

Processing pair AWK-PEP

Processing pair AWK-PFE

Processing pair AWK-PNC

Processing pair AWK-POOL

Processing pair AWK-PPG

Processing pair AWK-PG

Processing pair AWK-PLD

Processing pair AWK-PEG

Processing pair AWK-PSA

Processing pair AWK-DGX

Processing pair AWK-O

Processing pair AWK-RMD

Processing pair AWK-RVTY

Processing pair AWK-ROK

Processing pair AWK-ROL

Processing pair AWK-ROP

Processing pair AWK-ROST

Processing pair AWK-SPGI

Processing pair AWK-CRM

Processing pair AWK-SBAC

Processing pair AWK-SRE

Processing pair AWK-SHW

Processing pair AWK-SO

Processing pair AWK-SBUX

Processing pair AWK-STE

Processing pair AWK-SYK

Processing pair AWK-SYY

Processing pair AWK-TMUS

Processing pair AWK-TROW

Processing pair AWK-TTWO

Processing pair AWK-TGT

Processing pair AWK-TEL

Processing pair AWK-TDY

Processing pair AWK-TER

Processing pair AWK-TXN

Processing pair AWK-TMO

Processing pair AWK-TYL

Processing pair AWK-UDR

Processing pair AWK-UNP

Processing pair AWK-UPS

Processing pair AWK-UNH

Processing pair AWK-VRSN

Processing pair AWK-VRSK

Processing pair AWK-V

Processing pair AWK-WM

Processing pair AWK-WAT

Processing pair AWK-WEC

Processing pair AWK-WST

Processing pair AWK-WTW

Processing pair AWK-XEL

Processing pair AWK-XYL
ADF test for AWK-XYL failed with LinAlgError

Processing pair AWK-YUM

Processing pair AWK-ZBRA

Processing pair AWK-ZTS
ADF test for AWK-ZTS failed with LinAlgError

Processing pair AMP-AME

Processing pair AMP-AMGN

Processing pair AMP-APH

Processing pair AMP-ADI

Processing pair AMP-AON

Processing pair AMP-APO
ADF test for AMP-APO failed with LinAlgError

Processing pair AMP-AAPL

Processing pair AMP-AMAT

Processing pair AMP-ACGL

Processing pair AMP-ANET
ADF test for AMP-ANET failed with LinAlgError

Processing pair AMP-AJG

Processing pair AMP-AIZ

Processing pair AMP-ADP

Processing pair AMP-AZO

Processing pair AMP-AVY

Processing pair AMP-AXON

Processing pair AMP-BLK

Processing pair AMP-BX

Processing pair AMP-BKNG

Processing pair AMP-BSX

Processing pair AMP-AVGO

Processing pair AMP-BR

Processing pair AMP-BRO

Processing pair AMP-BLDR

Processing pair AMP-CDNS

Processing pair AMP-CARR
ADF test for AMP-CARR failed with LinAlgError

Processing pair AMP-CAT

Processing pair AMP-CBOE
ADF test for AMP-CBOE failed with LinAlgError

Processing pair AMP-CBRE

Processing pair AMP-CDW
ADF test for AMP-CDW failed with LinAlgError

Processing pair AMP-COR

Processing pair AMP-CVX

Processing pair AMP-CMG

Processing pair AMP-CB

Processing pair AMP-CI

Processing pair AMP-CINF

Processing pair AMP-CTAS

Processing pair AMP-KO

Processing pair AMP-CEG
ADF test for AMP-CEG failed with LinAlgError

Processing pair AMP-CPRT

Processing pair AMP-COST

Processing pair AMP-CSX

Processing pair AMP-CMI

Processing pair AMP-DHR

Processing pair AMP-DRI

Processing pair AMP-DECK

Processing pair AMP-DE

Processing pair AMP-DELL
ADF test for AMP-DELL failed with LinAlgError

Processing pair AMP-DFS

Processing pair AMP-DOV

Processing pair AMP-DHI

Processing pair AMP-DUK

Processing pair AMP-ETN

Processing pair AMP-ELV

Processing pair AMP-EMR

Processing pair AMP-ETR

Processing pair AMP-EFX

Processing pair AMP-ERIE

Processing pair AMP-EG

Processing pair AMP-EXPD

Processing pair AMP-FDS

Processing pair AMP-FICO

Processing pair AMP-FAST

Processing pair AMP-FITB

Processing pair AMP-FI

Processing pair AMP-FTNT

Processing pair AMP-GRMN

Processing pair AMP-IT

Processing pair AMP-GEV
ADF test for AMP-GEV failed with LinAlgError

Processing pair AMP-GD

Processing pair AMP-GPC

Processing pair AMP-GS

Processing pair AMP-HIG

Processing pair AMP-HCA
ADF test for AMP-HCA failed with LinAlgError

Processing pair AMP-HLT
ADF test for AMP-HLT failed with LinAlgError

Processing pair AMP-HD

Processing pair AMP-HWM
ADF test for AMP-HWM failed with LinAlgError

Processing pair AMP-HPQ

Processing pair AMP-HUBB

Processing pair AMP-ITW

Processing pair AMP-IR
ADF test for AMP-IR failed with LinAlgError

Processing pair AMP-ICE

Processing pair AMP-IPG

Processing pair AMP-INTU

Processing pair AMP-ISRG

Processing pair AMP-IRM

Processing pair AMP-JBHT

Processing pair AMP-JBL

Processing pair AMP-J

Processing pair AMP-JCI

Processing pair AMP-JPM

Processing pair AMP-KKR
ADF test for AMP-KKR failed with LinAlgError

Processing pair AMP-KLAC

Processing pair AMP-KR

Processing pair AMP-LH

Processing pair AMP-LRCX

Processing pair AMP-LDOS

Processing pair AMP-LEN

Processing pair AMP-LII

Processing pair AMP-LLY

Processing pair AMP-LIN

Processing pair AMP-LYV

Processing pair AMP-LMT

Processing pair AMP-L

Processing pair AMP-LOW

Processing pair AMP-MPC
ADF test for AMP-MPC failed with LinAlgError

Processing pair AMP-MAR

Processing pair AMP-MMC

Processing pair AMP-MLM

Processing pair AMP-MAS

Processing pair AMP-MA

Processing pair AMP-MCD

Processing pair AMP-MCK

Processing pair AMP-MRK

Processing pair AMP-MET

Processing pair AMP-MTD

Processing pair AMP-MCHP

Processing pair AMP-MU

Processing pair AMP-MSFT

Processing pair AMP-MOH

Processing pair AMP-MDLZ

Processing pair AMP-MPWR

Processing pair AMP-MNST

Processing pair AMP-MCO

Processing pair AMP-MS

Processing pair AMP-MSI

Processing pair AMP-MSCI

Processing pair AMP-NDAQ

Processing pair AMP-NTAP

Processing pair AMP-NDSN

Processing pair AMP-NUE

Processing pair AMP-NVR

Processing pair AMP-NXPI
ADF test for AMP-NXPI failed with LinAlgError

Processing pair AMP-ORLY

Processing pair AMP-ODFL

Processing pair AMP-ON

Processing pair AMP-OKE

Processing pair AMP-ORCL

Processing pair AMP-OTIS
ADF test for AMP-OTIS failed with LinAlgError

Processing pair AMP-PCAR

Processing pair AMP-PKG

Processing pair AMP-PANW
ADF test for AMP-PANW failed with LinAlgError

Processing pair AMP-PH

Processing pair AMP-PAYX

Processing pair AMP-PNR

Processing pair AMP-PEP

Processing pair AMP-PM

Processing pair AMP-PFG

Processing pair AMP-PG

Processing pair AMP-PGR

Processing pair AMP-PRU

Processing pair AMP-PEG

Processing pair AMP-PTC

Processing pair AMP-PSA

Processing pair AMP-PHM

Processing pair AMP-PWR

Processing pair AMP-QCOM

Processing pair AMP-DGX

Processing pair AMP-RJF

Processing pair AMP-RTX

Processing pair AMP-REGN

Processing pair AMP-RF

Processing pair AMP-RSG

Processing pair AMP-ROK

Processing pair AMP-ROL

Processing pair AMP-ROP

Processing pair AMP-SPGI

Processing pair AMP-STX

Processing pair AMP-NOW
ADF test for AMP-NOW failed with LinAlgError

Processing pair AMP-SHW

Processing pair AMP-SNA

Processing pair AMP-SO

Processing pair AMP-STLD

Processing pair AMP-STE

Processing pair AMP-SYK

Processing pair AMP-SNPS

Processing pair AMP-TMUS

Processing pair AMP-TEL

Processing pair AMP-TXN

Processing pair AMP-TPL

Processing pair AMP-TXT

Processing pair AMP-TMO

Processing pair AMP-TJX

Processing pair AMP-TSCO

Processing pair AMP-TT

Processing pair AMP-TDG

Processing pair AMP-TRV

Processing pair AMP-UNP

Processing pair AMP-URI

Processing pair AMP-UNH

Processing pair AMP-VLO

Processing pair AMP-VRSK

Processing pair AMP-VRTX

Processing pair AMP-V

Processing pair AMP-VMC

Processing pair AMP-WRB

Processing pair AMP-GWW

Processing pair AMP-WMT

Processing pair AMP-WM

Processing pair AMP-WELL

Processing pair AMP-WTW

Processing pair AMP-XYL
ADF test for AMP-XYL failed with LinAlgError

Processing pair AMP-YUM

Processing pair AME-AMGN

Processing pair AME-APH

Processing pair AME-ADI

Processing pair AME-ANSS

Processing pair AME-AON

Processing pair AME-APO
ADF test for AME-APO failed with LinAlgError

Processing pair AME-AAPL

Processing pair AME-AMAT

Processing pair AME-ACGL

Processing pair AME-AJG

Processing pair AME-AIZ

Processing pair AME-ATO

Processing pair AME-ADSK

Processing pair AME-ADP

Processing pair AME-AZO

Processing pair AME-AVY

Processing pair AME-AXON

Processing pair AME-BAC

Processing pair AME-BLK

Processing pair AME-BX

Processing pair AME-BKNG

Processing pair AME-BSX

Processing pair AME-BR

Processing pair AME-BRO

Processing pair AME-CDNS

Processing pair AME-COF

Processing pair AME-CARR
ADF test for AME-CARR failed with LinAlgError

Processing pair AME-CAT

Processing pair AME-CBOE
ADF test for AME-CBOE failed with LinAlgError

Processing pair AME-CBRE

Processing pair AME-CDW
ADF test for AME-CDW failed with LinAlgError

Processing pair AME-CE

Processing pair AME-COR

Processing pair AME-SCHW

Processing pair AME-CMG

Processing pair AME-CB

Processing pair AME-CHD

Processing pair AME-CI

Processing pair AME-CINF

Processing pair AME-CTAS

Processing pair AME-CSCO

Processing pair AME-CME

Processing pair AME-CMS

Processing pair AME-KO

Processing pair AME-CL

Processing pair AME-ED

Processing pair AME-COO

Processing pair AME-CPRT

Processing pair AME-GLW

Processing pair AME-CSGP

Processing pair AME-COST

Processing pair AME-CSX

Processing pair AME-CMI

Processing pair AME-DHR

Processing pair AME-DRI

Processing pair AME-DE

Processing pair AME-DXCM

Processing pair AME-DLR

Processing pair AME-DFS

Processing pair AME-DPZ

Processing pair AME-DOV

Processing pair AME-DHI

Processing pair AME-DTE

Processing pair AME-DUK

Processing pair AME-ETN

Processing pair AME-ECL

Processing pair AME-ELV

Processing pair AME-EMR

Processing pair AME-ETR

Processing pair AME-EFX

Processing pair AME-EQIX

Processing pair AME-ERIE

Processing pair AME-EG

Processing pair AME-EXC

Processing pair AME-EXPD

Processing pair AME-EXR

Processing pair AME-FDS

Processing pair AME-FAST

Processing pair AME-FITB

Processing pair AME-FI

Processing pair AME-FTNT

Processing pair AME-GRMN

Processing pair AME-IT

Processing pair AME-GEN

Processing pair AME-GD

Processing pair AME-GPC

Processing pair AME-GL

Processing pair AME-GS

Processing pair AME-HIG

Processing pair AME-HCA
ADF test for AME-HCA failed with LinAlgError

Processing pair AME-HSY

Processing pair AME-HLT
ADF test for AME-HLT failed with LinAlgError

Processing pair AME-HOLX

Processing pair AME-HD

Processing pair AME-HON

Processing pair AME-HPQ

Processing pair AME-HUBB

Processing pair AME-IEX

Processing pair AME-IDXX

Processing pair AME-ITW

Processing pair AME-IR
ADF test for AME-IR failed with LinAlgError

Processing pair AME-ICE

Processing pair AME-IPG

Processing pair AME-INTU

Processing pair AME-ISRG

Processing pair AME-IQV
ADF test for AME-IQV failed with LinAlgError

Processing pair AME-JBHT

Processing pair AME-JBL

Processing pair AME-JKHY

Processing pair AME-J

Processing pair AME-JNJ

Processing pair AME-JCI

Processing pair AME-JPM

Processing pair AME-KDP

Processing pair AME-KEYS
ADF test for AME-KEYS failed with LinAlgError

Processing pair AME-KKR
ADF test for AME-KKR failed with LinAlgError

Processing pair AME-KLAC

Processing pair AME-LHX

Processing pair AME-LH

Processing pair AME-LRCX

Processing pair AME-LDOS

Processing pair AME-LEN

Processing pair AME-LII

Processing pair AME-LIN

Processing pair AME-LYV

Processing pair AME-LMT

Processing pair AME-LOW

Processing pair AME-LULU

Processing pair AME-MAR

Processing pair AME-MMC

Processing pair AME-MLM

Processing pair AME-MAS

Processing pair AME-MA

Processing pair AME-MCD

Processing pair AME-MRK

Processing pair AME-MET

Processing pair AME-MTD

Processing pair AME-MCHP

Processing pair AME-MU

Processing pair AME-MSFT

Processing pair AME-MAA

Processing pair AME-MOH

Processing pair AME-MDLZ

Processing pair AME-MPWR

Processing pair AME-MNST

Processing pair AME-MCO

Processing pair AME-MS

Processing pair AME-MSI

Processing pair AME-MSCI

Processing pair AME-NDAQ

Processing pair AME-NEE

Processing pair AME-NDSN

Processing pair AME-NSC

Processing pair AME-NOC

Processing pair AME-NUE

Processing pair AME-NVR

Processing pair AME-NXPI
ADF test for AME-NXPI failed with LinAlgError

Processing pair AME-ORLY

Processing pair AME-ODFL

Processing pair AME-ON

Processing pair AME-OKE

Processing pair AME-ORCL

Processing pair AME-OTIS
ADF test for AME-OTIS failed with LinAlgError

Processing pair AME-PCAR

Processing pair AME-PKG

Processing pair AME-PANW
ADF test for AME-PANW failed with LinAlgError

Processing pair AME-PH

Processing pair AME-PAYX

Processing pair AME-PNR

Processing pair AME-PEP

Processing pair AME-PNC

Processing pair AME-POOL

Processing pair AME-PFG

Processing pair AME-PG

Processing pair AME-PGR

Processing pair AME-PLD

Processing pair AME-PEG

Processing pair AME-PTC

Processing pair AME-PSA

Processing pair AME-PHM

Processing pair AME-QCOM

Processing pair AME-DGX

Processing pair AME-RJF

Processing pair AME-RTX

Processing pair AME-RF

Processing pair AME-RSG

Processing pair AME-RMD

Processing pair AME-ROK

Processing pair AME-ROL

Processing pair AME-ROP

Processing pair AME-ROST

Processing pair AME-SPGI

Processing pair AME-CRM

Processing pair AME-STX

Processing pair AME-SRE

Processing pair AME-NOW
ADF test for AME-NOW failed with LinAlgError

Processing pair AME-SHW

Processing pair AME-SW
ADF test for AME-SW failed with LinAlgError

Processing pair AME-SNA

Processing pair AME-SO

Processing pair AME-SBUX

Processing pair AME-STLD

Processing pair AME-STE

Processing pair AME-SYK

Processing pair AME-SNPS

Processing pair AME-SYY

Processing pair AME-TMUS

Processing pair AME-TEL

Processing pair AME-TDY

Processing pair AME-TER

Processing pair AME-TXN

Processing pair AME-TPL

Processing pair AME-TXT

Processing pair AME-TMO

Processing pair AME-TJX

Processing pair AME-TSCO

Processing pair AME-TT

Processing pair AME-TDG

Processing pair AME-TRV

Processing pair AME-TYL

Processing pair AME-ULTA

Processing pair AME-UNP

Processing pair AME-UPS

Processing pair AME-URI

Processing pair AME-UNH

Processing pair AME-VLO

Processing pair AME-VRSK

Processing pair AME-VRTX

Processing pair AME-VICI
ADF test for AME-VICI failed with LinAlgError

Processing pair AME-V

Processing pair AME-VMC

Processing pair AME-WRB

Processing pair AME-GWW

Processing pair AME-WMT

Processing pair AME-WM

Processing pair AME-WAT

Processing pair AME-WEC

Processing pair AME-WELL

Processing pair AME-WST

Processing pair AME-WTW

Processing pair AME-WDAY
ADF test for AME-WDAY failed with LinAlgError

Processing pair AME-XEL

Processing pair AME-XYL
ADF test for AME-XYL failed with LinAlgError

Processing pair AME-YUM

Processing pair AME-ZTS
ADF test for AME-ZTS failed with LinAlgError

Processing pair AMGN-APH

Processing pair AMGN-ADI

Processing pair AMGN-ANSS

Processing pair AMGN-AON

Processing pair AMGN-APO
ADF test for AMGN-APO failed with LinAlgError

Processing pair AMGN-AAPL

Processing pair AMGN-ACGL

Processing pair AMGN-AJG

Processing pair AMGN-AIZ

Processing pair AMGN-ATO

Processing pair AMGN-ADP

Processing pair AMGN-AZO

Processing pair AMGN-AVY

Processing pair AMGN-BDX

Processing pair AMGN-BLK

Processing pair AMGN-BKNG

Processing pair AMGN-BSX

Processing pair AMGN-BR

Processing pair AMGN-BRO

Processing pair AMGN-CBOE
ADF test for AMGN-CBOE failed with LinAlgError

Processing pair AMGN-CBRE

Processing pair AMGN-CDW
ADF test for AMGN-CDW failed with LinAlgError

Processing pair AMGN-COR

Processing pair AMGN-CNC

Processing pair AMGN-CB

Processing pair AMGN-CHD

Processing pair AMGN-CI

Processing pair AMGN-CINF

Processing pair AMGN-CTAS

Processing pair AMGN-CSCO

Processing pair AMGN-CME

Processing pair AMGN-CMS

Processing pair AMGN-KO

Processing pair AMGN-CL

Processing pair AMGN-ED

Processing pair AMGN-STZ

Processing pair AMGN-COO

Processing pair AMGN-CPRT

Processing pair AMGN-GLW

Processing pair AMGN-CSGP

Processing pair AMGN-COST

Processing pair AMGN-CSX

Processing pair AMGN-CMI

Processing pair AMGN-DHR

Processing pair AMGN-DRI

Processing pair AMGN-DLR

Processing pair AMGN-DFS

Processing pair AMGN-DPZ

Processing pair AMGN-DOV

Processing pair AMGN-DHI

Processing pair AMGN-DTE

Processing pair AMGN-DUK

Processing pair AMGN-ECL

Processing pair AMGN-EIX

Processing pair AMGN-EA

Processing pair AMGN-ELV

Processing pair AMGN-EMR

Processing pair AMGN-ETR

Processing pair AMGN-EFX

Processing pair AMGN-EQIX

Processing pair AMGN-ERIE

Processing pair AMGN-EG

Processing pair AMGN-EVRG

Processing pair AMGN-EXPD

Processing pair AMGN-EXR

Processing pair AMGN-FDS

Processing pair AMGN-FAST

Processing pair AMGN-FI

Processing pair AMGN-GRMN

Processing pair AMGN-IT

Processing pair AMGN-GEN

Processing pair AMGN-GD

Processing pair AMGN-GIS

Processing pair AMGN-GPC

Processing pair AMGN-GL

Processing pair AMGN-HIG

Processing pair AMGN-HCA
ADF test for AMGN-HCA failed with LinAlgError

Processing pair AMGN-HSY

Processing pair AMGN-HLT
ADF test for AMGN-HLT failed with LinAlgError

Processing pair AMGN-HOLX

Processing pair AMGN-HD

Processing pair AMGN-HON

Processing pair AMGN-HUM

Processing pair AMGN-IEX

Processing pair AMGN-ITW

Processing pair AMGN-ICE

Processing pair AMGN-INTU

Processing pair AMGN-ISRG

Processing pair AMGN-JBHT

Processing pair AMGN-JKHY

Processing pair AMGN-J

Processing pair AMGN-JNJ

Processing pair AMGN-JPM

Processing pair AMGN-KDP

Processing pair AMGN-KMB

Processing pair AMGN-KR

Processing pair AMGN-LHX

Processing pair AMGN-LH

Processing pair AMGN-LDOS

Processing pair AMGN-LEN

Processing pair AMGN-LII

Processing pair AMGN-LIN

Processing pair AMGN-LYV

Processing pair AMGN-LMT

Processing pair AMGN-LOW

Processing pair AMGN-MAR

Processing pair AMGN-MMC

Processing pair AMGN-MLM

Processing pair AMGN-MAS

Processing pair AMGN-MA

Processing pair AMGN-MCD

Processing pair AMGN-MRK

Processing pair AMGN-MET

Processing pair AMGN-MTD

Processing pair AMGN-MCHP

Processing pair AMGN-MU

Processing pair AMGN-MSFT

Processing pair AMGN-MOH

Processing pair AMGN-MDLZ

Processing pair AMGN-MNST

Processing pair AMGN-MCO

Processing pair AMGN-MS

Processing pair AMGN-MSI

Processing pair AMGN-MSCI

Processing pair AMGN-NDAQ

Processing pair AMGN-NEE

Processing pair AMGN-NI

Processing pair AMGN-NDSN

Processing pair AMGN-NSC

Processing pair AMGN-NOC

Processing pair AMGN-NVR

Processing pair AMGN-NXPI
ADF test for AMGN-NXPI failed with LinAlgError

Processing pair AMGN-ORLY

Processing pair AMGN-ODFL

Processing pair AMGN-PCAR

Processing pair AMGN-PKG

Processing pair AMGN-PANW
ADF test for AMGN-PANW failed with LinAlgError

Processing pair AMGN-PH

Processing pair AMGN-PAYX

Processing pair AMGN-PEP

Processing pair AMGN-PM

Processing pair AMGN-PNC

Processing pair AMGN-PFG

Processing pair AMGN-PG

Processing pair AMGN-PGR

Processing pair AMGN-PLD

Processing pair AMGN-PEG

Processing pair AMGN-PTC

Processing pair AMGN-PSA

Processing pair AMGN-DGX

Processing pair AMGN-RJF

Processing pair AMGN-RTX

Processing pair AMGN-O

Processing pair AMGN-REGN

Processing pair AMGN-RF

Processing pair AMGN-RSG

Processing pair AMGN-ROK

Processing pair AMGN-ROL

Processing pair AMGN-ROP

Processing pair AMGN-ROST

Processing pair AMGN-SPGI

Processing pair AMGN-CRM

Processing pair AMGN-STX

Processing pair AMGN-SRE

Processing pair AMGN-NOW
ADF test for AMGN-NOW failed with LinAlgError

Processing pair AMGN-SHW

Processing pair AMGN-SNA

Processing pair AMGN-SO

Processing pair AMGN-SBUX

Processing pair AMGN-STE

Processing pair AMGN-SYK

Processing pair AMGN-SYY

Processing pair AMGN-TMUS

Processing pair AMGN-TEL

Processing pair AMGN-TDY

Processing pair AMGN-TXN

Processing pair AMGN-TMO

Processing pair AMGN-TJX

Processing pair AMGN-TSCO

Processing pair AMGN-TT

Processing pair AMGN-TDG

Processing pair AMGN-TRV

Processing pair AMGN-TYL

Processing pair AMGN-UNP

Processing pair AMGN-UNH

Processing pair AMGN-VLO

Processing pair AMGN-VRSK

Processing pair AMGN-VRTX

Processing pair AMGN-V

Processing pair AMGN-VMC

Processing pair AMGN-WRB

Processing pair AMGN-WMT

Processing pair AMGN-WM

Processing pair AMGN-WAT

Processing pair AMGN-WEC

Processing pair AMGN-WELL

Processing pair AMGN-WTW

Processing pair AMGN-XEL

Processing pair AMGN-XYL
ADF test for AMGN-XYL failed with LinAlgError

Processing pair AMGN-YUM

Processing pair AMGN-ZTS
ADF test for AMGN-ZTS failed with LinAlgError

Processing pair APH-ADI

Processing pair APH-AON

Processing pair APH-APO
ADF test for APH-APO failed with LinAlgError

Processing pair APH-AAPL

Processing pair APH-AMAT

Processing pair APH-ACGL

Processing pair APH-ANET
ADF test for APH-ANET failed with LinAlgError

Processing pair APH-AJG

Processing pair APH-AIZ

Processing pair APH-ATO

Processing pair APH-ADP

Processing pair APH-AZO

Processing pair APH-AVY

Processing pair APH-AXON

Processing pair APH-BLK

Processing pair APH-BX

Processing pair APH-BKNG

Processing pair APH-BSX

Processing pair APH-AVGO

Processing pair APH-BR

Processing pair APH-BRO

Processing pair APH-BLDR

Processing pair APH-CDNS

Processing pair APH-COF

Processing pair APH-CARR
ADF test for APH-CARR failed with LinAlgError

Processing pair APH-CAT

Processing pair APH-CBOE
ADF test for APH-CBOE failed with LinAlgError

Processing pair APH-CBRE

Processing pair APH-CDW
ADF test for APH-CDW failed with LinAlgError

Processing pair APH-COR

Processing pair APH-CMG

Processing pair APH-CB

Processing pair APH-CHD

Processing pair APH-CI

Processing pair APH-CINF

Processing pair APH-CTAS

Processing pair APH-CME

Processing pair APH-KO

Processing pair APH-CL

Processing pair APH-ED

Processing pair APH-CEG
ADF test for APH-CEG failed with LinAlgError

Processing pair APH-CPRT

Processing pair APH-GLW

Processing pair APH-COST

Processing pair APH-CSX

Processing pair APH-CMI

Processing pair APH-DHR

Processing pair APH-DRI

Processing pair APH-DECK

Processing pair APH-DE

Processing pair APH-DELL
ADF test for APH-DELL failed with LinAlgError

Processing pair APH-DFS

Processing pair APH-DPZ

Processing pair APH-DOV

Processing pair APH-DHI

Processing pair APH-DTE

Processing pair APH-DUK

Processing pair APH-ETN

Processing pair APH-ELV

Processing pair APH-EMR

Processing pair APH-ETR

Processing pair APH-EFX

Processing pair APH-EQIX

Processing pair APH-ERIE

Processing pair APH-EG

Processing pair APH-EXPD

Processing pair APH-EXR

Processing pair APH-FDS

Processing pair APH-FICO

Processing pair APH-FAST

Processing pair APH-FITB

Processing pair APH-FI

Processing pair APH-FTNT

Processing pair APH-GRMN

Processing pair APH-IT

Processing pair APH-GEN

Processing pair APH-GD

Processing pair APH-GDDY
ADF test for APH-GDDY failed with LinAlgError

Processing pair APH-GS

Processing pair APH-HIG

Processing pair APH-HCA
ADF test for APH-HCA failed with LinAlgError

Processing pair APH-HLT
ADF test for APH-HLT failed with LinAlgError

Processing pair APH-HOLX

Processing pair APH-HD

Processing pair APH-HON

Processing pair APH-HWM
ADF test for APH-HWM failed with LinAlgError

Processing pair APH-HPQ

Processing pair APH-HUBB

Processing pair APH-IEX

Processing pair APH-ITW

Processing pair APH-IR
ADF test for APH-IR failed with LinAlgError

Processing pair APH-ICE

Processing pair APH-INTU

Processing pair APH-ISRG

Processing pair APH-IRM

Processing pair APH-JBHT

Processing pair APH-JBL

Processing pair APH-J

Processing pair APH-JCI

Processing pair APH-JPM

Processing pair APH-KKR
ADF test for APH-KKR failed with LinAlgError

Processing pair APH-KLAC

Processing pair APH-LH

Processing pair APH-LRCX

Processing pair APH-LDOS

Processing pair APH-LEN

Processing pair APH-LII

Processing pair APH-LLY

Processing pair APH-LIN

Processing pair APH-LYV

Processing pair APH-LMT

Processing pair APH-L

Processing pair APH-LOW

Processing pair APH-MPC
ADF test for APH-MPC failed with LinAlgError

Processing pair APH-MAR

Processing pair APH-MMC

Processing pair APH-MLM

Processing pair APH-MAS

Processing pair APH-MA

Processing pair APH-MCD

Processing pair APH-MCK

Processing pair APH-MRK

Processing pair APH-META
ADF test for APH-META failed with LinAlgError

Processing pair APH-MET

Processing pair APH-MTD

Processing pair APH-MCHP

Processing pair APH-MU

Processing pair APH-MSFT

Processing pair APH-MOH

Processing pair APH-MDLZ

Processing pair APH-MPWR

Processing pair APH-MNST

Processing pair APH-MCO

Processing pair APH-MS

Processing pair APH-MSI

Processing pair APH-MSCI

Processing pair APH-NDAQ

Processing pair APH-NTAP

Processing pair APH-NDSN

Processing pair APH-NSC

Processing pair APH-NOC

Processing pair APH-NRG

Processing pair APH-NUE

Processing pair APH-NVR

Processing pair APH-NXPI
ADF test for APH-NXPI failed with LinAlgError

Processing pair APH-ORLY

Processing pair APH-ODFL

Processing pair APH-ON

Processing pair APH-OKE

Processing pair APH-ORCL

Processing pair APH-OTIS
ADF test for APH-OTIS failed with LinAlgError

Processing pair APH-PCAR

Processing pair APH-PKG

Processing pair APH-PANW
ADF test for APH-PANW failed with LinAlgError

Processing pair APH-PH

Processing pair APH-PAYX

Processing pair APH-PNR

Processing pair APH-PEP

Processing pair APH-PM

Processing pair APH-PFG

Processing pair APH-PG

Processing pair APH-PGR

Processing pair APH-PLD

Processing pair APH-PRU

Processing pair APH-PEG

Processing pair APH-PTC

Processing pair APH-PSA

Processing pair APH-PHM

Processing pair APH-PWR

Processing pair APH-QCOM

Processing pair APH-DGX

Processing pair APH-RJF

Processing pair APH-RTX

Processing pair APH-REGN

Processing pair APH-RF

Processing pair APH-RSG

Processing pair APH-ROK

Processing pair APH-ROL

Processing pair APH-ROP

Processing pair APH-ROST

Processing pair APH-SPGI

Processing pair APH-CRM

Processing pair APH-STX

Processing pair APH-SRE

Processing pair APH-NOW
ADF test for APH-NOW failed with LinAlgError

Processing pair APH-SHW

Processing pair APH-SNA

Processing pair APH-SO

Processing pair APH-STLD

Processing pair APH-STE

Processing pair APH-SYK

Processing pair APH-SNPS

Processing pair APH-TMUS

Processing pair APH-TEL

Processing pair APH-TDY

Processing pair APH-TER

Processing pair APH-TXN

Processing pair APH-TPL

Processing pair APH-TXT

Processing pair APH-TMO

Processing pair APH-TJX

Processing pair APH-TSCO

Processing pair APH-TT

Processing pair APH-TDG

Processing pair APH-TRV

Processing pair APH-TYL

Processing pair APH-UNP

Processing pair APH-URI

Processing pair APH-UNH

Processing pair APH-VLO

Processing pair APH-VLTO
ADF test for APH-VLTO failed with LinAlgError

Processing pair APH-VRSK

Processing pair APH-VRTX

Processing pair APH-V

Processing pair APH-VMC

Processing pair APH-WRB

Processing pair APH-GWW

Processing pair APH-WMT

Processing pair APH-WM

Processing pair APH-WAT

Processing pair APH-WELL

Processing pair APH-WTW

Processing pair APH-XYL
ADF test for APH-XYL failed with LinAlgError

Processing pair APH-YUM

Processing pair ADI-ANSS

Processing pair ADI-AON

Processing pair ADI-APO
ADF test for ADI-APO failed with LinAlgError

Processing pair ADI-AAPL

Processing pair ADI-AMAT

Processing pair ADI-ACGL

Processing pair ADI-AJG

Processing pair ADI-AIZ

Processing pair ADI-ATO

Processing pair ADI-ADSK

Processing pair ADI-ADP

Processing pair ADI-AZO

Processing pair ADI-AVY

Processing pair ADI-AXON

Processing pair ADI-BAC

Processing pair ADI-BLK

Processing pair ADI-BX

Processing pair ADI-BKNG

Processing pair ADI-BSX

Processing pair ADI-AVGO

Processing pair ADI-BR

Processing pair ADI-BRO

Processing pair ADI-CDNS

Processing pair ADI-COF

Processing pair ADI-CARR
ADF test for ADI-CARR failed with LinAlgError

Processing pair ADI-CAT

Processing pair ADI-CBOE
ADF test for ADI-CBOE failed with LinAlgError

Processing pair ADI-CBRE

Processing pair ADI-CDW
ADF test for ADI-CDW failed with LinAlgError

Processing pair ADI-CE

Processing pair ADI-COR

Processing pair ADI-SCHW

Processing pair ADI-CMG

Processing pair ADI-CB

Processing pair ADI-CHD

Processing pair ADI-CI

Processing pair ADI-CINF

Processing pair ADI-CTAS

Processing pair ADI-CSCO

Processing pair ADI-CME

Processing pair ADI-CMS

Processing pair ADI-KO

Processing pair ADI-CL

Processing pair ADI-ED

Processing pair ADI-COO

Processing pair ADI-CPRT

Processing pair ADI-GLW

Processing pair ADI-CSGP

Processing pair ADI-COST

Processing pair ADI-CSX

Processing pair ADI-CMI

Processing pair ADI-DHR

Processing pair ADI-DRI

Processing pair ADI-DE

Processing pair ADI-DXCM

Processing pair ADI-DLR

Processing pair ADI-DFS

Processing pair ADI-DPZ

Processing pair ADI-DOV

Processing pair ADI-DHI

Processing pair ADI-DTE

Processing pair ADI-DUK

Processing pair ADI-ETN

Processing pair ADI-EBAY

Processing pair ADI-ECL

Processing pair ADI-ELV

Processing pair ADI-EMR

Processing pair ADI-ETR

Processing pair ADI-EFX

Processing pair ADI-EQIX

Processing pair ADI-ERIE

Processing pair ADI-EG

Processing pair ADI-EXC

Processing pair ADI-EXPD

Processing pair ADI-EXR

Processing pair ADI-FDS

Processing pair ADI-FAST

Processing pair ADI-FITB

Processing pair ADI-FI

Processing pair ADI-FTNT

Processing pair ADI-GRMN

Processing pair ADI-IT

Processing pair ADI-GEN

Processing pair ADI-GD

Processing pair ADI-GPC

Processing pair ADI-GS

Processing pair ADI-HIG

Processing pair ADI-HCA
ADF test for ADI-HCA failed with LinAlgError

Processing pair ADI-HSY

Processing pair ADI-HLT
ADF test for ADI-HLT failed with LinAlgError

Processing pair ADI-HOLX

Processing pair ADI-HD

Processing pair ADI-HON

Processing pair ADI-HPQ

Processing pair ADI-HUBB

Processing pair ADI-IEX

Processing pair ADI-IDXX

Processing pair ADI-ITW

Processing pair ADI-IR
ADF test for ADI-IR failed with LinAlgError

Processing pair ADI-ICE

Processing pair ADI-IPG

Processing pair ADI-INTU

Processing pair ADI-ISRG

Processing pair ADI-IQV
ADF test for ADI-IQV failed with LinAlgError

Processing pair ADI-JBHT

Processing pair ADI-JBL

Processing pair ADI-JKHY

Processing pair ADI-J

Processing pair ADI-JNJ

Processing pair ADI-JCI

Processing pair ADI-JPM

Processing pair ADI-KDP

Processing pair ADI-KEYS
ADF test for ADI-KEYS failed with LinAlgError

Processing pair ADI-KKR
ADF test for ADI-KKR failed with LinAlgError

Processing pair ADI-KLAC

Processing pair ADI-LHX

Processing pair ADI-LH

Processing pair ADI-LRCX

Processing pair ADI-LDOS

Processing pair ADI-LEN

Processing pair ADI-LII

Processing pair ADI-LIN

Processing pair ADI-LYV

Processing pair ADI-LMT

Processing pair ADI-LOW

Processing pair ADI-LULU

Processing pair ADI-MAR

Processing pair ADI-MMC

Processing pair ADI-MLM

Processing pair ADI-MAS

Processing pair ADI-MA

Processing pair ADI-MCD

Processing pair ADI-MRK

Processing pair ADI-MET

Processing pair ADI-MTD

Processing pair ADI-MCHP

Processing pair ADI-MU

Processing pair ADI-MSFT

Processing pair ADI-MAA

Processing pair ADI-MOH

Processing pair ADI-MDLZ

Processing pair ADI-MPWR

Processing pair ADI-MNST

Processing pair ADI-MCO

Processing pair ADI-MS

Processing pair ADI-MSI

Processing pair ADI-MSCI

Processing pair ADI-NDAQ

Processing pair ADI-NTAP

Processing pair ADI-NFLX

Processing pair ADI-NEE

Processing pair ADI-NDSN

Processing pair ADI-NSC

Processing pair ADI-NOC

Processing pair ADI-NUE

Processing pair ADI-NVR

Processing pair ADI-NXPI
ADF test for ADI-NXPI failed with LinAlgError

Processing pair ADI-ORLY

Processing pair ADI-ODFL

Processing pair ADI-ON

Processing pair ADI-OKE

Processing pair ADI-ORCL

Processing pair ADI-OTIS
ADF test for ADI-OTIS failed with LinAlgError

Processing pair ADI-PCAR

Processing pair ADI-PKG

Processing pair ADI-PANW
ADF test for ADI-PANW failed with LinAlgError

Processing pair ADI-PH

Processing pair ADI-PAYX

Processing pair ADI-PNR

Processing pair ADI-PEP

Processing pair ADI-PNC

Processing pair ADI-POOL

Processing pair ADI-PFG

Processing pair ADI-PG

Processing pair ADI-PGR

Processing pair ADI-PLD

Processing pair ADI-PEG

Processing pair ADI-PTC

Processing pair ADI-PSA

Processing pair ADI-PHM

Processing pair ADI-QCOM

Processing pair ADI-DGX

Processing pair ADI-RJF

Processing pair ADI-RTX

Processing pair ADI-RF

Processing pair ADI-RSG

Processing pair ADI-RMD

Processing pair ADI-ROK

Processing pair ADI-ROL

Processing pair ADI-ROP

Processing pair ADI-ROST

Processing pair ADI-SPGI

Processing pair ADI-CRM

Processing pair ADI-STX

Processing pair ADI-SRE

Processing pair ADI-NOW
ADF test for ADI-NOW failed with LinAlgError

Processing pair ADI-SHW

Processing pair ADI-SNA

Processing pair ADI-SO

Processing pair ADI-SBUX

Processing pair ADI-STLD

Processing pair ADI-STE

Processing pair ADI-SYK

Processing pair ADI-SNPS

Processing pair ADI-SYY

Processing pair ADI-TMUS

Processing pair ADI-TEL

Processing pair ADI-TDY

Processing pair ADI-TER

Processing pair ADI-TXN

Processing pair ADI-TPL

Processing pair ADI-TXT

Processing pair ADI-TMO

Processing pair ADI-TJX

Processing pair ADI-TSCO

Processing pair ADI-TT

Processing pair ADI-TDG

Processing pair ADI-TRV

Processing pair ADI-TYL

Processing pair ADI-ULTA

Processing pair ADI-UNP

Processing pair ADI-UPS

Processing pair ADI-URI

Processing pair ADI-UNH

Processing pair ADI-VLO

Processing pair ADI-VRSK

Processing pair ADI-VRTX

Processing pair ADI-VICI
ADF test for ADI-VICI failed with LinAlgError

Processing pair ADI-V

Processing pair ADI-VMC

Processing pair ADI-WRB

Processing pair ADI-GWW

Processing pair ADI-WMT

Processing pair ADI-WM

Processing pair ADI-WAT

Processing pair ADI-WEC

Processing pair ADI-WELL

Processing pair ADI-WST

Processing pair ADI-WTW

Processing pair ADI-XEL

Processing pair ADI-XYL
ADF test for ADI-XYL failed with LinAlgError

Processing pair ADI-YUM

Processing pair ADI-ZTS
ADF test for ADI-ZTS failed with LinAlgError

Processing pair ANSS-AON

Processing pair ANSS-AAPL

Processing pair ANSS-AIZ

Processing pair ANSS-ADSK

Processing pair ANSS-ADP

Processing pair ANSS-AVY

Processing pair ANSS-BALL

Processing pair ANSS-BAC

Processing pair ANSS-BBY

Processing pair ANSS-TECH

Processing pair ANSS-BLK

Processing pair ANSS-BR

Processing pair ANSS-CPT

Processing pair ANSS-CBRE

Processing pair ANSS-CDW
ADF test for ANSS-CDW failed with LinAlgError

Processing pair ANSS-CE

Processing pair ANSS-CRL

Processing pair ANSS-CHD

Processing pair ANSS-CINF

Processing pair ANSS-CSCO

Processing pair ANSS-CLX

Processing pair ANSS-CME

Processing pair ANSS-CMS

Processing pair ANSS-CMCSA

Processing pair ANSS-COO

Processing pair ANSS-CPRT

Processing pair ANSS-GLW

Processing pair ANSS-CSGP

Processing pair ANSS-CCI

Processing pair ANSS-CSX

Processing pair ANSS-CMI

Processing pair ANSS-DHR

Processing pair ANSS-DRI

Processing pair ANSS-DE

Processing pair ANSS-DXCM

Processing pair ANSS-DLR

Processing pair ANSS-DPZ

Processing pair ANSS-DOV

Processing pair ANSS-DTE

Processing pair ANSS-DUK

Processing pair ANSS-EBAY

Processing pair ANSS-ECL

Processing pair ANSS-EW

Processing pair ANSS-ELV

Processing pair ANSS-ETR

Processing pair ANSS-EFX

Processing pair ANSS-EQIX

Processing pair ANSS-ES

Processing pair ANSS-EXPD

Processing pair ANSS-EXR

Processing pair ANSS-FDS

Processing pair ANSS-FAST

Processing pair ANSS-FI

Processing pair ANSS-GRMN

Processing pair ANSS-GEN

Processing pair ANSS-HOLX

Processing pair ANSS-HD

Processing pair ANSS-HON

Processing pair ANSS-HUM

Processing pair ANSS-IEX

Processing pair ANSS-IDXX

Processing pair ANSS-ITW

Processing pair ANSS-PODD

Processing pair ANSS-ICE

Processing pair ANSS-INTU

Processing pair ANSS-ISRG

Processing pair ANSS-IQV
ADF test for ANSS-IQV failed with LinAlgError

Processing pair ANSS-JBHT

Processing pair ANSS-JKHY

Processing pair ANSS-J

Processing pair ANSS-JNJ

Processing pair ANSS-JPM

Processing pair ANSS-KDP

Processing pair ANSS-KEYS
ADF test for ANSS-KEYS failed with LinAlgError

Processing pair ANSS-LHX

Processing pair ANSS-LH

Processing pair ANSS-LDOS

Processing pair ANSS-LYV

Processing pair ANSS-LOW

Processing pair ANSS-LULU

Processing pair ANSS-MMC

Processing pair ANSS-MAS

Processing pair ANSS-MA

Processing pair ANSS-MKC

Processing pair ANSS-MCD

Processing pair ANSS-MTD

Processing pair ANSS-MCHP

Processing pair ANSS-MU

Processing pair ANSS-MSFT

Processing pair ANSS-MAA

Processing pair ANSS-MOH

Processing pair ANSS-MDLZ

Processing pair ANSS-MNST

Processing pair ANSS-MCO

Processing pair ANSS-MSCI

Processing pair ANSS-NDAQ

Processing pair ANSS-NFLX

Processing pair ANSS-NEE

Processing pair ANSS-NKE

Processing pair ANSS-NDSN

Processing pair ANSS-NSC

Processing pair ANSS-NVR

Processing pair ANSS-NXPI
ADF test for ANSS-NXPI failed with LinAlgError

Processing pair ANSS-ODFL

Processing pair ANSS-PAYX

Processing pair ANSS-PEP

Processing pair ANSS-POOL

Processing pair ANSS-PG

Processing pair ANSS-PLD

Processing pair ANSS-PEG

Processing pair ANSS-PTC

Processing pair ANSS-QCOM

Processing pair ANSS-DGX

Processing pair ANSS-RMD

Processing pair ANSS-RVTY

Processing pair ANSS-ROK

Processing pair ANSS-ROL

Processing pair ANSS-ROP

Processing pair ANSS-ROST

Processing pair ANSS-SPGI

Processing pair ANSS-CRM

Processing pair ANSS-SBAC

Processing pair ANSS-NOW
ADF test for ANSS-NOW failed with LinAlgError

Processing pair ANSS-SHW

Processing pair ANSS-SBUX

Processing pair ANSS-STE

Processing pair ANSS-SYK

Processing pair ANSS-SYY

Processing pair ANSS-TMUS

Processing pair ANSS-TROW

Processing pair ANSS-TTWO

Processing pair ANSS-TGT

Processing pair ANSS-TEL

Processing pair ANSS-TDY

Processing pair ANSS-TER

Processing pair ANSS-TXN

Processing pair ANSS-TMO

Processing pair ANSS-TRMB

Processing pair ANSS-TYL

Processing pair ANSS-UNP

Processing pair ANSS-UPS

Processing pair ANSS-UNH

Processing pair ANSS-VRSN

Processing pair ANSS-VRSK

Processing pair ANSS-V

Processing pair ANSS-WMT

Processing pair ANSS-WM

Processing pair ANSS-WAT

Processing pair ANSS-WEC

Processing pair ANSS-WST

Processing pair ANSS-WTW

Processing pair ANSS-WDAY
ADF test for ANSS-WDAY failed with LinAlgError

Processing pair ANSS-XEL

Processing pair ANSS-XYL
ADF test for ANSS-XYL failed with LinAlgError

Processing pair ANSS-YUM

Processing pair ANSS-ZBRA

Processing pair ANSS-ZTS
ADF test for ANSS-ZTS failed with LinAlgError

Processing pair AON-APO
ADF test for AON-APO failed with LinAlgError

Processing pair AON-AAPL

Processing pair AON-AMAT

Processing pair AON-ACGL

Processing pair AON-ADM

Processing pair AON-AJG

Processing pair AON-AIZ

Processing pair AON-ATO

Processing pair AON-ADSK

Processing pair AON-ADP

Processing pair AON-AZO

Processing pair AON-AVY

Processing pair AON-BAC

Processing pair AON-BDX

Processing pair AON-TECH

Processing pair AON-BLK

Processing pair AON-BX

Processing pair AON-BKNG

Processing pair AON-BSX

Processing pair AON-BR

Processing pair AON-BRO

Processing pair AON-CHRW

Processing pair AON-CDNS

Processing pair AON-CPT

Processing pair AON-CAT

Processing pair AON-CBOE
ADF test for AON-CBOE failed with LinAlgError

Processing pair AON-CBRE

Processing pair AON-CDW
ADF test for AON-CDW failed with LinAlgError

Processing pair AON-CE

Processing pair AON-COR

Processing pair AON-CNC

Processing pair AON-SCHW

Processing pair AON-CMG

Processing pair AON-CB

Processing pair AON-CHD

Processing pair AON-CI

Processing pair AON-CINF

Processing pair AON-CTAS

Processing pair AON-CSCO

Processing pair AON-CME

Processing pair AON-CMS

Processing pair AON-KO

Processing pair AON-ED

Processing pair AON-STZ

Processing pair AON-COO

Processing pair AON-CPRT

Processing pair AON-GLW

Processing pair AON-CSGP

Processing pair AON-COST

Processing pair AON-CSX

Processing pair AON-CMI

Processing pair AON-DHR

Processing pair AON-DRI

Processing pair AON-DE

Processing pair AON-DXCM

Processing pair AON-DLR

Processing pair AON-DFS

Processing pair AON-DPZ

Processing pair AON-DOV

Processing pair AON-DHI

Processing pair AON-DTE

Processing pair AON-DUK

Processing pair AON-EW

Processing pair AON-ELV

Processing pair AON-EMR

Processing pair AON-ETR

Processing pair AON-EFX

Processing pair AON-EQIX

Processing pair AON-EG

Processing pair AON-EVRG

Processing pair AON-EXC

Processing pair AON-EXPD

Processing pair AON-EXR

Processing pair AON-FDS

Processing pair AON-FAST

Processing pair AON-FITB

Processing pair AON-FI

Processing pair AON-FTNT

Processing pair AON-GRMN

Processing pair AON-IT

Processing pair AON-GEN

Processing pair AON-GD

Processing pair AON-GIS

Processing pair AON-GPC

Processing pair AON-GL

Processing pair AON-GS

Processing pair AON-HIG

Processing pair AON-HCA
ADF test for AON-HCA failed with LinAlgError

Processing pair AON-HSY

Processing pair AON-HLT
ADF test for AON-HLT failed with LinAlgError

Processing pair AON-HOLX

Processing pair AON-HD

Processing pair AON-HON

Processing pair AON-HPQ

Processing pair AON-HUBB

Processing pair AON-HUM

Processing pair AON-IEX

Processing pair AON-IDXX

Processing pair AON-ITW

Processing pair AON-PODD

Processing pair AON-ICE

Processing pair AON-IPG

Processing pair AON-INTU

Processing pair AON-ISRG

Processing pair AON-IQV
ADF test for AON-IQV failed with LinAlgError

Processing pair AON-JBHT

Processing pair AON-JKHY

Processing pair AON-J

Processing pair AON-JNJ

Processing pair AON-JCI

Processing pair AON-JPM

Processing pair AON-KDP

Processing pair AON-KEYS
ADF test for AON-KEYS failed with LinAlgError

Processing pair AON-KLAC

Processing pair AON-KR

Processing pair AON-LHX

Processing pair AON-LH

Processing pair AON-LRCX

Processing pair AON-LDOS

Processing pair AON-LEN

Processing pair AON-LII

Processing pair AON-LIN

Processing pair AON-LYV

Processing pair AON-LMT

Processing pair AON-LOW

Processing pair AON-LULU

Processing pair AON-MAR

Processing pair AON-MMC

Processing pair AON-MLM

Processing pair AON-MAS

Processing pair AON-MA

Processing pair AON-MKC

Processing pair AON-MCD

Processing pair AON-MRK

Processing pair AON-MET

Processing pair AON-MTD

Processing pair AON-MCHP

Processing pair AON-MU

Processing pair AON-MSFT

Processing pair AON-MAA

Processing pair AON-MOH

Processing pair AON-MDLZ

Processing pair AON-MPWR

Processing pair AON-MNST

Processing pair AON-MCO

Processing pair AON-MS

Processing pair AON-MSI

Processing pair AON-MSCI

Processing pair AON-NDAQ

Processing pair AON-NEE

Processing pair AON-NI

Processing pair AON-NDSN

Processing pair AON-NSC

Processing pair AON-NOC

Processing pair AON-NUE

Processing pair AON-NVR

Processing pair AON-NXPI
ADF test for AON-NXPI failed with LinAlgError

Processing pair AON-ORLY

Processing pair AON-ODFL

Processing pair AON-ON

Processing pair AON-ORCL

Processing pair AON-PCAR

Processing pair AON-PKG

Processing pair AON-PANW
ADF test for AON-PANW failed with LinAlgError

Processing pair AON-PH

Processing pair AON-PAYX

Processing pair AON-PEP

Processing pair AON-PNC

Processing pair AON-POOL

Processing pair AON-PFG

Processing pair AON-PG

Processing pair AON-PGR

Processing pair AON-PLD

Processing pair AON-PEG

Processing pair AON-PTC

Processing pair AON-PSA

Processing pair AON-DGX

Processing pair AON-RJF

Processing pair AON-RTX

Processing pair AON-O

Processing pair AON-RF

Processing pair AON-RSG

Processing pair AON-RMD

Processing pair AON-RVTY

Processing pair AON-ROK

Processing pair AON-ROL

Processing pair AON-ROP

Processing pair AON-ROST

Processing pair AON-SPGI

Processing pair AON-CRM

Processing pair AON-STX

Processing pair AON-SRE

Processing pair AON-NOW
ADF test for AON-NOW failed with LinAlgError

Processing pair AON-SHW

Processing pair AON-SNA

Processing pair AON-SO

Processing pair AON-SBUX

Processing pair AON-STLD

Processing pair AON-STE

Processing pair AON-SYK

Processing pair AON-SNPS

Processing pair AON-SYY

Processing pair AON-TMUS

Processing pair AON-TEL

Processing pair AON-TDY

Processing pair AON-TER

Processing pair AON-TXN

Processing pair AON-TPL

Processing pair AON-TMO

Processing pair AON-TJX

Processing pair AON-TSCO

Processing pair AON-TT

Processing pair AON-TDG

Processing pair AON-TRV

Processing pair AON-TYL

Processing pair AON-ULTA

Processing pair AON-UNP

Processing pair AON-UPS

Processing pair AON-UNH

Processing pair AON-VLO

Processing pair AON-VRSN

Processing pair AON-VRSK

Processing pair AON-VRTX

Processing pair AON-VICI
ADF test for AON-VICI failed with LinAlgError

Processing pair AON-V

Processing pair AON-VMC

Processing pair AON-WRB

Processing pair AON-WMT

Processing pair AON-WM

Processing pair AON-WAT

Processing pair AON-WEC

Processing pair AON-WELL

Processing pair AON-WST

Processing pair AON-WTW

Processing pair AON-XEL

Processing pair AON-XYL
ADF test for AON-XYL failed with LinAlgError

Processing pair AON-YUM

Processing pair AON-ZTS
ADF test for AON-ZTS failed with LinAlgError

Processing pair APO-AAPL
ADF test for APO-AAPL failed with LinAlgError

Processing pair APO-AMAT
ADF test for APO-AMAT failed with LinAlgError

Processing pair APO-ACGL
ADF test for APO-ACGL failed with LinAlgError

Processing pair APO-ANET
ADF test for APO-ANET failed with LinAlgError

Processing pair APO-AJG
ADF test for APO-AJG failed with LinAlgError

Processing pair APO-ADP
ADF test for APO-ADP failed with LinAlgError

Processing pair APO-AZO
ADF test for APO-AZO failed with LinAlgError

Processing pair APO-AVY
ADF test for APO-AVY failed with LinAlgError

Processing pair APO-AXON
ADF test for APO-AXON failed with LinAlgError

Processing pair APO-BLK
ADF test for APO-BLK failed with LinAlgError

Processing pair APO-BX
ADF test for APO-BX failed with LinAlgError

Processing pair APO-BKNG
ADF test for APO-BKNG failed with LinAlgError

Processing pair APO-BSX
ADF test for APO-BSX failed with LinAlgError

Processing pair APO-AVGO
ADF test for APO-AVGO failed with LinAlgError

Processing pair APO-BR
ADF test for APO-BR failed with LinAlgError

Processing pair APO-BRO
ADF test for APO-BRO failed with LinAlgError

Processing pair APO-BLDR
ADF test for APO-BLDR failed with LinAlgError

Processing pair APO-CDNS
ADF test for APO-CDNS failed with LinAlgError

Processing pair APO-CAT
ADF test for APO-CAT failed with LinAlgError

Processing pair APO-CBOE
ADF test for APO-CBOE failed with LinAlgError

Processing pair APO-CBRE
ADF test for APO-CBRE failed with LinAlgError

Processing pair APO-CDW
ADF test for APO-CDW failed with LinAlgError

Processing pair APO-COR
ADF test for APO-COR failed with LinAlgError

Processing pair APO-CMG
ADF test for APO-CMG failed with LinAlgError

Processing pair APO-CB
ADF test for APO-CB failed with LinAlgError

Processing pair APO-CTAS
ADF test for APO-CTAS failed with LinAlgError

Processing pair APO-KO
ADF test for APO-KO failed with LinAlgError

Processing pair APO-CEG
ADF test for APO-CEG failed with LinAlgError

Processing pair APO-CPRT
ADF test for APO-CPRT failed with LinAlgError

Processing pair APO-COST
ADF test for APO-COST failed with LinAlgError

Processing pair APO-CMI
ADF test for APO-CMI failed with LinAlgError

Processing pair APO-DECK
ADF test for APO-DECK failed with LinAlgError

Processing pair APO-DELL
ADF test for APO-DELL failed with LinAlgError

Processing pair APO-DFS
ADF test for APO-DFS failed with LinAlgError

Processing pair APO-DOV
ADF test for APO-DOV failed with LinAlgError

Processing pair APO-DHI
ADF test for APO-DHI failed with LinAlgError

Processing pair APO-ETN
ADF test for APO-ETN failed with LinAlgError

Processing pair APO-EMR
ADF test for APO-EMR failed with LinAlgError

Processing pair APO-ERIE
ADF test for APO-ERIE failed with LinAlgError

Processing pair APO-EG
ADF test for APO-EG failed with LinAlgError

Processing pair APO-EXPD
ADF test for APO-EXPD failed with LinAlgError

Processing pair APO-FDS
ADF test for APO-FDS failed with LinAlgError

Processing pair APO-FICO
ADF test for APO-FICO failed with LinAlgError

Processing pair APO-FAST
ADF test for APO-FAST failed with LinAlgError

Processing pair APO-FI
ADF test for APO-FI failed with LinAlgError

Processing pair APO-FTNT
ADF test for APO-FTNT failed with LinAlgError

Processing pair APO-GRMN
ADF test for APO-GRMN failed with LinAlgError

Processing pair APO-IT
ADF test for APO-IT failed with LinAlgError

Processing pair APO-GEV
ADF test for APO-GEV failed with LinAlgError

Processing pair APO-GS
ADF test for APO-GS failed with LinAlgError

Processing pair APO-HIG
ADF test for APO-HIG failed with LinAlgError

Processing pair APO-HCA
ADF test for APO-HCA failed with LinAlgError

Processing pair APO-HLT
ADF test for APO-HLT failed with LinAlgError

Processing pair APO-HD
ADF test for APO-HD failed with LinAlgError

Processing pair APO-HWM
ADF test for APO-HWM failed with LinAlgError

Processing pair APO-HUBB
ADF test for APO-HUBB failed with LinAlgError

Processing pair APO-ITW
ADF test for APO-ITW failed with LinAlgError

Processing pair APO-IR
ADF test for APO-IR failed with LinAlgError

Processing pair APO-ICE
ADF test for APO-ICE failed with LinAlgError

Processing pair APO-INTU
ADF test for APO-INTU failed with LinAlgError

Processing pair APO-ISRG
ADF test for APO-ISRG failed with LinAlgError

Processing pair APO-IRM
ADF test for APO-IRM failed with LinAlgError

Processing pair APO-JBL
ADF test for APO-JBL failed with LinAlgError

Processing pair APO-J
ADF test for APO-J failed with LinAlgError

Processing pair APO-JPM
ADF test for APO-JPM failed with LinAlgError

Processing pair APO-KKR
ADF test for APO-KKR failed with LinAlgError

Processing pair APO-KLAC
ADF test for APO-KLAC failed with LinAlgError

Processing pair APO-LRCX
ADF test for APO-LRCX failed with LinAlgError

Processing pair APO-LDOS
ADF test for APO-LDOS failed with LinAlgError

Processing pair APO-LEN
ADF test for APO-LEN failed with LinAlgError

Processing pair APO-LII
ADF test for APO-LII failed with LinAlgError

Processing pair APO-LLY
ADF test for APO-LLY failed with LinAlgError

Processing pair APO-LIN
ADF test for APO-LIN failed with LinAlgError

Processing pair APO-L
ADF test for APO-L failed with LinAlgError

Processing pair APO-LOW
ADF test for APO-LOW failed with LinAlgError

Processing pair APO-MPC
ADF test for APO-MPC failed with LinAlgError

Processing pair APO-MAR
ADF test for APO-MAR failed with LinAlgError

Processing pair APO-MMC
ADF test for APO-MMC failed with LinAlgError

Processing pair APO-MLM
ADF test for APO-MLM failed with LinAlgError

Processing pair APO-MAS
ADF test for APO-MAS failed with LinAlgError

Processing pair APO-MA
ADF test for APO-MA failed with LinAlgError

Processing pair APO-MCD
ADF test for APO-MCD failed with LinAlgError

Processing pair APO-MCK
ADF test for APO-MCK failed with LinAlgError

Processing pair APO-MRK
ADF test for APO-MRK failed with LinAlgError

Processing pair APO-META
ADF test for APO-META failed with LinAlgError

Processing pair APO-MET
ADF test for APO-MET failed with LinAlgError

Processing pair APO-MU
ADF test for APO-MU failed with LinAlgError

Processing pair APO-MSFT
ADF test for APO-MSFT failed with LinAlgError

Processing pair APO-MOH
ADF test for APO-MOH failed with LinAlgError

Processing pair APO-MPWR
ADF test for APO-MPWR failed with LinAlgError

Processing pair APO-MCO
ADF test for APO-MCO failed with LinAlgError

Processing pair APO-MS
ADF test for APO-MS failed with LinAlgError

Processing pair APO-MSI
ADF test for APO-MSI failed with LinAlgError

Processing pair APO-NDAQ
ADF test for APO-NDAQ failed with LinAlgError

Processing pair APO-NTAP
ADF test for APO-NTAP failed with LinAlgError

Processing pair APO-NDSN
ADF test for APO-NDSN failed with LinAlgError

Processing pair APO-NRG
ADF test for APO-NRG failed with LinAlgError

Processing pair APO-NUE
ADF test for APO-NUE failed with LinAlgError

Processing pair APO-NVDA
ADF test for APO-NVDA failed with LinAlgError

Processing pair APO-NVR
ADF test for APO-NVR failed with LinAlgError

Processing pair APO-NXPI
ADF test for APO-NXPI failed with LinAlgError

Processing pair APO-ORLY
ADF test for APO-ORLY failed with LinAlgError

Processing pair APO-ODFL
ADF test for APO-ODFL failed with LinAlgError

Processing pair APO-OKE
ADF test for APO-OKE failed with LinAlgError

Processing pair APO-ORCL
ADF test for APO-ORCL failed with LinAlgError

Processing pair APO-PCAR
ADF test for APO-PCAR failed with LinAlgError

Processing pair APO-PKG
ADF test for APO-PKG failed with LinAlgError

Processing pair APO-PANW
ADF test for APO-PANW failed with LinAlgError

Processing pair APO-PH
ADF test for APO-PH failed with LinAlgError

Processing pair APO-PAYX
ADF test for APO-PAYX failed with LinAlgError

Processing pair APO-PNR
ADF test for APO-PNR failed with LinAlgError

Processing pair APO-PG
ADF test for APO-PG failed with LinAlgError

Processing pair APO-PGR
ADF test for APO-PGR failed with LinAlgError

Processing pair APO-PEG
ADF test for APO-PEG failed with LinAlgError

Processing pair APO-PTC
ADF test for APO-PTC failed with LinAlgError

Processing pair APO-PHM
ADF test for APO-PHM failed with LinAlgError

Processing pair APO-PWR
ADF test for APO-PWR failed with LinAlgError

Processing pair APO-QCOM
ADF test for APO-QCOM failed with LinAlgError

Processing pair APO-RJF
ADF test for APO-RJF failed with LinAlgError

Processing pair APO-RSG
ADF test for APO-RSG failed with LinAlgError

Processing pair APO-ROL
ADF test for APO-ROL failed with LinAlgError

Processing pair APO-ROP
ADF test for APO-ROP failed with LinAlgError

Processing pair APO-SPGI
ADF test for APO-SPGI failed with LinAlgError

Processing pair APO-STX
ADF test for APO-STX failed with LinAlgError

Processing pair APO-NOW
ADF test for APO-NOW failed with LinAlgError

Processing pair APO-SHW
ADF test for APO-SHW failed with LinAlgError

Processing pair APO-SNA
ADF test for APO-SNA failed with LinAlgError

Processing pair APO-SO
ADF test for APO-SO failed with LinAlgError

Processing pair APO-STLD
ADF test for APO-STLD failed with LinAlgError

Processing pair APO-SYK
ADF test for APO-SYK failed with LinAlgError

Processing pair APO-SNPS
ADF test for APO-SNPS failed with LinAlgError

Processing pair APO-TMUS
ADF test for APO-TMUS failed with LinAlgError

Processing pair APO-TPL
ADF test for APO-TPL failed with LinAlgError

Processing pair APO-TJX
ADF test for APO-TJX failed with LinAlgError

Processing pair APO-TSCO
ADF test for APO-TSCO failed with LinAlgError

Processing pair APO-TT
ADF test for APO-TT failed with LinAlgError

Processing pair APO-TDG
ADF test for APO-TDG failed with LinAlgError

Processing pair APO-TRV
ADF test for APO-TRV failed with LinAlgError

Processing pair APO-URI
ADF test for APO-URI failed with LinAlgError

Processing pair APO-UNH
ADF test for APO-UNH failed with LinAlgError

Processing pair APO-VRSK
ADF test for APO-VRSK failed with LinAlgError

Processing pair APO-VRTX
ADF test for APO-VRTX failed with LinAlgError

Processing pair APO-V
ADF test for APO-V failed with LinAlgError

Processing pair APO-VMC
ADF test for APO-VMC failed with LinAlgError

Processing pair APO-WRB
ADF test for APO-WRB failed with LinAlgError

Processing pair APO-GWW
ADF test for APO-GWW failed with LinAlgError

Processing pair APO-WMT
ADF test for APO-WMT failed with LinAlgError

Processing pair APO-WM
ADF test for APO-WM failed with LinAlgError

Processing pair APO-WELL
ADF test for APO-WELL failed with LinAlgError

Processing pair APO-WTW
ADF test for APO-WTW failed with LinAlgError

Processing pair AAPL-AMAT

Processing pair AAPL-ACGL

Processing pair AAPL-AJG

Processing pair AAPL-AIZ

Processing pair AAPL-ADP

Processing pair AAPL-AZO

Processing pair AAPL-AVY

Processing pair AAPL-AXON

Processing pair AAPL-BLK

Processing pair AAPL-BX

Processing pair AAPL-BSX

Processing pair AAPL-AVGO

Processing pair AAPL-BR

Processing pair AAPL-BRO

Processing pair AAPL-BLDR

Processing pair AAPL-CDNS

Processing pair AAPL-CARR
ADF test for AAPL-CARR failed with LinAlgError

Processing pair AAPL-CAT

Processing pair AAPL-CBRE

Processing pair AAPL-CDW
ADF test for AAPL-CDW failed with LinAlgError

Processing pair AAPL-COR

Processing pair AAPL-CMG

Processing pair AAPL-CB

Processing pair AAPL-CHD

Processing pair AAPL-CI

Processing pair AAPL-CTAS

Processing pair AAPL-KO

Processing pair AAPL-CPRT

Processing pair AAPL-CSGP

Processing pair AAPL-COST

Processing pair AAPL-CSX

Processing pair AAPL-CMI

Processing pair AAPL-DHR

Processing pair AAPL-DRI

Processing pair AAPL-DECK

Processing pair AAPL-DE

Processing pair AAPL-DXCM

Processing pair AAPL-DFS

Processing pair AAPL-DPZ

Processing pair AAPL-DOV

Processing pair AAPL-DHI

Processing pair AAPL-DUK

Processing pair AAPL-ETN

Processing pair AAPL-ELV

Processing pair AAPL-EMR

Processing pair AAPL-ETR

Processing pair AAPL-EFX

Processing pair AAPL-EQIX

Processing pair AAPL-ERIE

Processing pair AAPL-EG

Processing pair AAPL-EXC

Processing pair AAPL-EXPD

Processing pair AAPL-EXR

Processing pair AAPL-FDS

Processing pair AAPL-FAST

Processing pair AAPL-FI

Processing pair AAPL-FTNT

Processing pair AAPL-GRMN

Processing pair AAPL-IT

Processing pair AAPL-GEN

Processing pair AAPL-GS

Processing pair AAPL-HIG

Processing pair AAPL-HCA
ADF test for AAPL-HCA failed with LinAlgError

Processing pair AAPL-HSY

Processing pair AAPL-HLT
ADF test for AAPL-HLT failed with LinAlgError

Processing pair AAPL-HOLX

Processing pair AAPL-HD

Processing pair AAPL-HON

Processing pair AAPL-HPQ

Processing pair AAPL-HUBB

Processing pair AAPL-IEX

Processing pair AAPL-IDXX

Processing pair AAPL-ITW

Processing pair AAPL-IR
ADF test for AAPL-IR failed with LinAlgError

Processing pair AAPL-ICE

Processing pair AAPL-IPG

Processing pair AAPL-INTU

Processing pair AAPL-ISRG

Processing pair AAPL-IQV
ADF test for AAPL-IQV failed with LinAlgError

Processing pair AAPL-JBHT

Processing pair AAPL-JBL

Processing pair AAPL-J

Processing pair AAPL-JCI

Processing pair AAPL-JPM

Processing pair AAPL-KDP

Processing pair AAPL-KEYS
ADF test for AAPL-KEYS failed with LinAlgError

Processing pair AAPL-KKR
ADF test for AAPL-KKR failed with LinAlgError

Processing pair AAPL-KLAC

Processing pair AAPL-LH

Processing pair AAPL-LRCX

Processing pair AAPL-LDOS

Processing pair AAPL-LEN

Processing pair AAPL-LII

Processing pair AAPL-LIN

Processing pair AAPL-LYV

Processing pair AAPL-LMT

Processing pair AAPL-LOW

Processing pair AAPL-LULU

Processing pair AAPL-MAR

Processing pair AAPL-MMC

Processing pair AAPL-MLM

Processing pair AAPL-MAS

Processing pair AAPL-MA

Processing pair AAPL-MCD

Processing pair AAPL-MRK

Processing pair AAPL-MET

Processing pair AAPL-MTD

Processing pair AAPL-MCHP

Processing pair AAPL-MU

Processing pair AAPL-MSFT

Processing pair AAPL-MAA

Processing pair AAPL-MOH

Processing pair AAPL-MDLZ

Processing pair AAPL-MPWR

Processing pair AAPL-MNST

Processing pair AAPL-MCO

Processing pair AAPL-MS

Processing pair AAPL-MSI

Processing pair AAPL-MSCI

Processing pair AAPL-NDAQ

Processing pair AAPL-NEE

Processing pair AAPL-NDSN

Processing pair AAPL-NSC

Processing pair AAPL-NUE

Processing pair AAPL-NVR

Processing pair AAPL-NXPI
ADF test for AAPL-NXPI failed with LinAlgError

Processing pair AAPL-ORLY

Processing pair AAPL-ODFL

Processing pair AAPL-ON

Processing pair AAPL-ORCL

Processing pair AAPL-OTIS
ADF test for AAPL-OTIS failed with LinAlgError

Processing pair AAPL-PCAR

Processing pair AAPL-PKG

Processing pair AAPL-PANW
ADF test for AAPL-PANW failed with LinAlgError

Processing pair AAPL-PH

Processing pair AAPL-PAYX

Processing pair AAPL-PEP

Processing pair AAPL-POOL

Processing pair AAPL-PG

Processing pair AAPL-PGR

Processing pair AAPL-PLD

Processing pair AAPL-PEG

Processing pair AAPL-PTC

Processing pair AAPL-PSA

Processing pair AAPL-PHM

Processing pair AAPL-PWR

Processing pair AAPL-QCOM

Processing pair AAPL-DGX

Processing pair AAPL-RJF

Processing pair AAPL-RSG

Processing pair AAPL-RMD

Processing pair AAPL-ROK

Processing pair AAPL-ROL

Processing pair AAPL-ROP

Processing pair AAPL-SPGI

Processing pair AAPL-CRM

Processing pair AAPL-STX

Processing pair AAPL-NOW
ADF test for AAPL-NOW failed with LinAlgError

Processing pair AAPL-SHW

Processing pair AAPL-SNA

Processing pair AAPL-SO

Processing pair AAPL-STLD

Processing pair AAPL-STE

Processing pair AAPL-SYK

Processing pair AAPL-SNPS

Processing pair AAPL-TMUS

Processing pair AAPL-TEL

Processing pair AAPL-TDY

Processing pair AAPL-TER

Processing pair AAPL-TSLA
ADF test for AAPL-TSLA failed with LinAlgError

Processing pair AAPL-TXN

Processing pair AAPL-TPL

Processing pair AAPL-TMO

Processing pair AAPL-TJX

Processing pair AAPL-TSCO

Processing pair AAPL-TT

Processing pair AAPL-TDG

Processing pair AAPL-TRV

Processing pair AAPL-TYL

Processing pair AAPL-UNP

Processing pair AAPL-URI

Processing pair AAPL-UNH

Processing pair AAPL-VRSK

Processing pair AAPL-VRTX

Processing pair AAPL-VICI
ADF test for AAPL-VICI failed with LinAlgError

Processing pair AAPL-V

Processing pair AAPL-VMC

Processing pair AAPL-WRB

Processing pair AAPL-GWW

Processing pair AAPL-WMT

Processing pair AAPL-WM

Processing pair AAPL-WAT

Processing pair AAPL-WST

Processing pair AAPL-WTW

Processing pair AAPL-XYL
ADF test for AAPL-XYL failed with LinAlgError

Processing pair AAPL-YUM

Processing pair AAPL-ZTS
ADF test for AAPL-ZTS failed with LinAlgError

Processing pair AMAT-ACGL

Processing pair AMAT-ANET
ADF test for AMAT-ANET failed with LinAlgError

Processing pair AMAT-AJG

Processing pair AMAT-AIZ

Processing pair AMAT-ADP

Processing pair AMAT-AZO

Processing pair AMAT-AVY

Processing pair AMAT-AXON

Processing pair AMAT-BLK

Processing pair AMAT-BX

Processing pair AMAT-BKNG

Processing pair AMAT-BSX

Processing pair AMAT-AVGO

Processing pair AMAT-BR

Processing pair AMAT-BRO

Processing pair AMAT-BLDR

Processing pair AMAT-CDNS

Processing pair AMAT-COF

Processing pair AMAT-CARR
ADF test for AMAT-CARR failed with LinAlgError

Processing pair AMAT-CAT

Processing pair AMAT-CBOE
ADF test for AMAT-CBOE failed with LinAlgError

Processing pair AMAT-CBRE

Processing pair AMAT-CDW
ADF test for AMAT-CDW failed with LinAlgError

Processing pair AMAT-COR

Processing pair AMAT-CMG

Processing pair AMAT-CB

Processing pair AMAT-CTAS

Processing pair AMAT-KO

Processing pair AMAT-CPRT

Processing pair AMAT-COST

Processing pair AMAT-CSX

Processing pair AMAT-CMI

Processing pair AMAT-DHR

Processing pair AMAT-DRI

Processing pair AMAT-DECK

Processing pair AMAT-DE

Processing pair AMAT-DELL
ADF test for AMAT-DELL failed with LinAlgError

Processing pair AMAT-DFS

Processing pair AMAT-DOV

Processing pair AMAT-DHI

Processing pair AMAT-ETN

Processing pair AMAT-ELV

Processing pair AMAT-EMR

Processing pair AMAT-EFX

Processing pair AMAT-EQIX

Processing pair AMAT-ERIE

Processing pair AMAT-EXPD

Processing pair AMAT-FDS

Processing pair AMAT-FICO

Processing pair AMAT-FAST

Processing pair AMAT-FTNT

Processing pair AMAT-GRMN

Processing pair AMAT-IT

Processing pair AMAT-GS

Processing pair AMAT-HIG

Processing pair AMAT-HCA
ADF test for AMAT-HCA failed with LinAlgError

Processing pair AMAT-HLT
ADF test for AMAT-HLT failed with LinAlgError

Processing pair AMAT-HD

Processing pair AMAT-HPQ

Processing pair AMAT-HUBB

Processing pair AMAT-IDXX

Processing pair AMAT-ITW

Processing pair AMAT-IR
ADF test for AMAT-IR failed with LinAlgError

Processing pair AMAT-ICE

Processing pair AMAT-INTU

Processing pair AMAT-ISRG

Processing pair AMAT-IRM

Processing pair AMAT-JBHT

Processing pair AMAT-JBL

Processing pair AMAT-J

Processing pair AMAT-JCI

Processing pair AMAT-JPM

Processing pair AMAT-KKR
ADF test for AMAT-KKR failed with LinAlgError

Processing pair AMAT-KLAC

Processing pair AMAT-LH

Processing pair AMAT-LRCX

Processing pair AMAT-LDOS

Processing pair AMAT-LEN

Processing pair AMAT-LII

Processing pair AMAT-LLY

Processing pair AMAT-LIN

Processing pair AMAT-LYV

Processing pair AMAT-L

Processing pair AMAT-LOW

Processing pair AMAT-MAR

Processing pair AMAT-MMC

Processing pair AMAT-MLM

Processing pair AMAT-MAS

Processing pair AMAT-MA

Processing pair AMAT-MCD

Processing pair AMAT-MRK

Processing pair AMAT-META
ADF test for AMAT-META failed with LinAlgError

Processing pair AMAT-MET

Processing pair AMAT-MTD

Processing pair AMAT-MCHP

Processing pair AMAT-MU

Processing pair AMAT-MSFT

Processing pair AMAT-MOH

Processing pair AMAT-MPWR

Processing pair AMAT-MCO

Processing pair AMAT-MS

Processing pair AMAT-MSI

Processing pair AMAT-MSCI

Processing pair AMAT-NDAQ

Processing pair AMAT-NTAP

Processing pair AMAT-NWS
ADF test for AMAT-NWS failed with LinAlgError

Processing pair AMAT-NDSN

Processing pair AMAT-NUE

Processing pair AMAT-NVR

Processing pair AMAT-NXPI
ADF test for AMAT-NXPI failed with LinAlgError

Processing pair AMAT-ORLY

Processing pair AMAT-ODFL

Processing pair AMAT-ON

Processing pair AMAT-ORCL

Processing pair AMAT-OTIS
ADF test for AMAT-OTIS failed with LinAlgError

Processing pair AMAT-PCAR

Processing pair AMAT-PKG

Processing pair AMAT-PANW
ADF test for AMAT-PANW failed with LinAlgError

Processing pair AMAT-PH

Processing pair AMAT-PAYX

Processing pair AMAT-PNR

Processing pair AMAT-PEP

Processing pair AMAT-POOL

Processing pair AMAT-PG

Processing pair AMAT-PGR

Processing pair AMAT-PLD

Processing pair AMAT-PEG

Processing pair AMAT-PTC

Processing pair AMAT-PHM

Processing pair AMAT-PWR

Processing pair AMAT-QCOM

Processing pair AMAT-DGX

Processing pair AMAT-RJF

Processing pair AMAT-RSG

Processing pair AMAT-ROK

Processing pair AMAT-ROL

Processing pair AMAT-ROP

Processing pair AMAT-SPGI

Processing pair AMAT-STX

Processing pair AMAT-NOW
ADF test for AMAT-NOW failed with LinAlgError

Processing pair AMAT-SHW

Processing pair AMAT-SNA

Processing pair AMAT-SO

Processing pair AMAT-STLD

Processing pair AMAT-STE

Processing pair AMAT-SYK

Processing pair AMAT-SNPS

Processing pair AMAT-TMUS

Processing pair AMAT-TEL

Processing pair AMAT-TER

Processing pair AMAT-TXN

Processing pair AMAT-TMO

Processing pair AMAT-TJX

Processing pair AMAT-TSCO

Processing pair AMAT-TT

Processing pair AMAT-TDG

Processing pair AMAT-TRV

Processing pair AMAT-TYL

Processing pair AMAT-UNP

Processing pair AMAT-URI

Processing pair AMAT-UNH

Processing pair AMAT-VRSK

Processing pair AMAT-VRTX

Processing pair AMAT-V

Processing pair AMAT-VMC

Processing pair AMAT-WRB

Processing pair AMAT-GWW

Processing pair AMAT-WMT

Processing pair AMAT-WM

Processing pair AMAT-WST

Processing pair AMAT-WTW

Processing pair AMAT-XYL
ADF test for AMAT-XYL failed with LinAlgError

Processing pair AMAT-YUM

Processing pair APTV-CZR
ADF test for APTV-CZR failed with LinAlgError

Processing pair APTV-KMX
ADF test for APTV-KMX failed with LinAlgError

Processing pair APTV-CRL
ADF test for APTV-CRL failed with LinAlgError

Processing pair APTV-EPAM
ADF test for APTV-EPAM failed with LinAlgError

Processing pair APTV-EL
ADF test for APTV-EL failed with LinAlgError

Processing pair APTV-NKE
ADF test for APTV-NKE failed with LinAlgError

Processing pair APTV-SWKS
ADF test for APTV-SWKS failed with LinAlgError

Processing pair APTV-TROW
ADF test for APTV-TROW failed with LinAlgError

Processing pair ACGL-ANET
ADF test for ACGL-ANET failed with LinAlgError

Processing pair ACGL-AJG

Processing pair ACGL-ADP

Processing pair ACGL-AZO

Processing pair ACGL-AXON

Processing pair ACGL-BKNG

Processing pair ACGL-BSX

Processing pair ACGL-AVGO

Processing pair ACGL-BRO

Processing pair ACGL-BLDR

Processing pair ACGL-CDNS

Processing pair ACGL-CAT

Processing pair ACGL-CBOE
ADF test for ACGL-CBOE failed with LinAlgError

Processing pair ACGL-COR

Processing pair ACGL-CMG

Processing pair ACGL-CB

Processing pair ACGL-CI

Processing pair ACGL-CTAS

Processing pair ACGL-KO

Processing pair ACGL-CEG
ADF test for ACGL-CEG failed with LinAlgError

Processing pair ACGL-CPRT

Processing pair ACGL-COST

Processing pair ACGL-CMI

Processing pair ACGL-DECK

Processing pair ACGL-DHI

Processing pair ACGL-ETN

Processing pair ACGL-EMR

Processing pair ACGL-ERIE

Processing pair ACGL-EG

Processing pair ACGL-FICO

Processing pair ACGL-FAST

Processing pair ACGL-IT

Processing pair ACGL-GD

Processing pair ACGL-GS

Processing pair ACGL-HIG

Processing pair ACGL-HCA
ADF test for ACGL-HCA failed with LinAlgError

Processing pair ACGL-HLT
ADF test for ACGL-HLT failed with LinAlgError

Processing pair ACGL-HWM
ADF test for ACGL-HWM failed with LinAlgError

Processing pair ACGL-HUBB

Processing pair ACGL-IR
ADF test for ACGL-IR failed with LinAlgError

Processing pair ACGL-ISRG

Processing pair ACGL-IRM

Processing pair ACGL-JBL

Processing pair ACGL-JPM

Processing pair ACGL-KKR
ADF test for ACGL-KKR failed with LinAlgError

Processing pair ACGL-KLAC

Processing pair ACGL-LRCX

Processing pair ACGL-LEN

Processing pair ACGL-LII

Processing pair ACGL-LLY

Processing pair ACGL-LIN

Processing pair ACGL-L

Processing pair ACGL-MPC
ADF test for ACGL-MPC failed with LinAlgError

Processing pair ACGL-MAR

Processing pair ACGL-MMC

Processing pair ACGL-MLM

Processing pair ACGL-MCK

Processing pair ACGL-MRK

Processing pair ACGL-MET

Processing pair ACGL-MSFT

Processing pair ACGL-MPWR

Processing pair ACGL-MSI

Processing pair ACGL-NUE

Processing pair ACGL-NVR

Processing pair ACGL-ORLY

Processing pair ACGL-ODFL

Processing pair ACGL-OKE

Processing pair ACGL-ORCL

Processing pair ACGL-PCAR

Processing pair ACGL-PKG

Processing pair ACGL-PANW
ADF test for ACGL-PANW failed with LinAlgError

Processing pair ACGL-PH

Processing pair ACGL-PSX
ADF test for ACGL-PSX failed with LinAlgError

Processing pair ACGL-PFG

Processing pair ACGL-PG

Processing pair ACGL-PGR

Processing pair ACGL-PEG

Processing pair ACGL-PTC

Processing pair ACGL-PHM

Processing pair ACGL-PWR

Processing pair ACGL-RJF

Processing pair ACGL-RSG

Processing pair ACGL-SNA

Processing pair ACGL-SO

Processing pair ACGL-STLD

Processing pair ACGL-SYK

Processing pair ACGL-SNPS

Processing pair ACGL-TMUS

Processing pair ACGL-TJX

Processing pair ACGL-TSCO

Processing pair ACGL-TT

Processing pair ACGL-TDG

Processing pair ACGL-TRV

Processing pair ACGL-URI

Processing pair ACGL-VLO

Processing pair ACGL-VLTO
ADF test for ACGL-VLTO failed with LinAlgError

Processing pair ACGL-VRSK

Processing pair ACGL-VRTX

Processing pair ACGL-VMC

Processing pair ACGL-WRB

Processing pair ACGL-GWW

Processing pair ACGL-WMT

Processing pair ACGL-WM

Processing pair ACGL-WELL

Processing pair ADM-CF

Processing pair ADM-CVX

Processing pair ADM-DE

Processing pair ADM-ELV

Processing pair ADM-EXC

Processing pair ADM-EXR

Processing pair ADM-GIS

Processing pair ADM-GPC

Processing pair ADM-HSY

Processing pair ADM-IPG

Processing pair ADM-JBHT

Processing pair ADM-LKQ

Processing pair ADM-MOH

Processing pair ADM-ON

Processing pair ADM-PAYX

Processing pair ADM-PEP

Processing pair ADM-PFG

Processing pair ADM-RJF

Processing pair ADM-TMO

Processing pair ADM-UPS

Processing pair ADM-UNH

Processing pair ANET-AJG
ADF test for ANET-AJG failed with LinAlgError

Processing pair ANET-AZO
ADF test for ANET-AZO failed with LinAlgError

Processing pair ANET-AXON
ADF test for ANET-AXON failed with LinAlgError

Processing pair ANET-BKNG
ADF test for ANET-BKNG failed with LinAlgError

Processing pair ANET-BSX
ADF test for ANET-BSX failed with LinAlgError

Processing pair ANET-AVGO
ADF test for ANET-AVGO failed with LinAlgError

Processing pair ANET-BRO
ADF test for ANET-BRO failed with LinAlgError

Processing pair ANET-BLDR
ADF test for ANET-BLDR failed with LinAlgError

Processing pair ANET-CDNS
ADF test for ANET-CDNS failed with LinAlgError

Processing pair ANET-CAT
ADF test for ANET-CAT failed with LinAlgError

Processing pair ANET-CBOE
ADF test for ANET-CBOE failed with LinAlgError

Processing pair ANET-COR
ADF test for ANET-COR failed with LinAlgError

Processing pair ANET-CMG
ADF test for ANET-CMG failed with LinAlgError

Processing pair ANET-CB
ADF test for ANET-CB failed with LinAlgError

Processing pair ANET-CTAS
ADF test for ANET-CTAS failed with LinAlgError

Processing pair ANET-CEG
ADF test for ANET-CEG failed with LinAlgError

Processing pair ANET-COST
ADF test for ANET-COST failed with LinAlgError

Processing pair ANET-DECK
ADF test for ANET-DECK failed with LinAlgError

Processing pair ANET-DELL
ADF test for ANET-DELL failed with LinAlgError

Processing pair ANET-DHI
ADF test for ANET-DHI failed with LinAlgError

Processing pair ANET-ETN
ADF test for ANET-ETN failed with LinAlgError

Processing pair ANET-ERIE
ADF test for ANET-ERIE failed with LinAlgError

Processing pair ANET-FICO
ADF test for ANET-FICO failed with LinAlgError

Processing pair ANET-IT
ADF test for ANET-IT failed with LinAlgError

Processing pair ANET-GD
ADF test for ANET-GD failed with LinAlgError

Processing pair ANET-GDDY
ADF test for ANET-GDDY failed with LinAlgError

Processing pair ANET-GS
ADF test for ANET-GS failed with LinAlgError

Processing pair ANET-HIG
ADF test for ANET-HIG failed with LinAlgError

Processing pair ANET-HCA
ADF test for ANET-HCA failed with LinAlgError

Processing pair ANET-HLT
ADF test for ANET-HLT failed with LinAlgError

Processing pair ANET-HWM
ADF test for ANET-HWM failed with LinAlgError

Processing pair ANET-HUBB
ADF test for ANET-HUBB failed with LinAlgError

Processing pair ANET-IBM
ADF test for ANET-IBM failed with LinAlgError

Processing pair ANET-IR
ADF test for ANET-IR failed with LinAlgError

Processing pair ANET-IRM
ADF test for ANET-IRM failed with LinAlgError

Processing pair ANET-JBL
ADF test for ANET-JBL failed with LinAlgError

Processing pair ANET-JPM
ADF test for ANET-JPM failed with LinAlgError

Processing pair ANET-KKR
ADF test for ANET-KKR failed with LinAlgError

Processing pair ANET-KLAC
ADF test for ANET-KLAC failed with LinAlgError

Processing pair ANET-LEN
ADF test for ANET-LEN failed with LinAlgError

Processing pair ANET-LII
ADF test for ANET-LII failed with LinAlgError

Processing pair ANET-LLY
ADF test for ANET-LLY failed with LinAlgError

Processing pair ANET-LIN
ADF test for ANET-LIN failed with LinAlgError

Processing pair ANET-L
ADF test for ANET-L failed with LinAlgError

Processing pair ANET-MPC
ADF test for ANET-MPC failed with LinAlgError

Processing pair ANET-MAR
ADF test for ANET-MAR failed with LinAlgError

Processing pair ANET-MMC
ADF test for ANET-MMC failed with LinAlgError

Processing pair ANET-MLM
ADF test for ANET-MLM failed with LinAlgError

Processing pair ANET-MCK
ADF test for ANET-MCK failed with LinAlgError

Processing pair ANET-MPWR
ADF test for ANET-MPWR failed with LinAlgError

Processing pair ANET-MSI
ADF test for ANET-MSI failed with LinAlgError

Processing pair ANET-NTAP
ADF test for ANET-NTAP failed with LinAlgError

Processing pair ANET-NRG
ADF test for ANET-NRG failed with LinAlgError

Processing pair ANET-NVDA
ADF test for ANET-NVDA failed with LinAlgError

Processing pair ANET-NVR
ADF test for ANET-NVR failed with LinAlgError

Processing pair ANET-ORLY
ADF test for ANET-ORLY failed with LinAlgError

Processing pair ANET-OKE
ADF test for ANET-OKE failed with LinAlgError

Processing pair ANET-ORCL
ADF test for ANET-ORCL failed with LinAlgError

Processing pair ANET-PCAR
ADF test for ANET-PCAR failed with LinAlgError

Processing pair ANET-PKG
ADF test for ANET-PKG failed with LinAlgError

Processing pair ANET-PANW
ADF test for ANET-PANW failed with LinAlgError

Processing pair ANET-PH
ADF test for ANET-PH failed with LinAlgError

Processing pair ANET-PGR
ADF test for ANET-PGR failed with LinAlgError

Processing pair ANET-PHM
ADF test for ANET-PHM failed with LinAlgError

Processing pair ANET-PWR
ADF test for ANET-PWR failed with LinAlgError

Processing pair ANET-RSG
ADF test for ANET-RSG failed with LinAlgError

Processing pair ANET-SNA
ADF test for ANET-SNA failed with LinAlgError

Processing pair ANET-STLD
ADF test for ANET-STLD failed with LinAlgError

Processing pair ANET-SNPS
ADF test for ANET-SNPS failed with LinAlgError

Processing pair ANET-TJX
ADF test for ANET-TJX failed with LinAlgError

Processing pair ANET-TT
ADF test for ANET-TT failed with LinAlgError

Processing pair ANET-TDG
ADF test for ANET-TDG failed with LinAlgError

Processing pair ANET-TRV
ADF test for ANET-TRV failed with LinAlgError

Processing pair ANET-URI
ADF test for ANET-URI failed with LinAlgError

Processing pair ANET-VLTO
ADF test for ANET-VLTO failed with LinAlgError

Processing pair ANET-VRTX
ADF test for ANET-VRTX failed with LinAlgError

Processing pair ANET-VMC
ADF test for ANET-VMC failed with LinAlgError

Processing pair ANET-WRB
ADF test for ANET-WRB failed with LinAlgError

Processing pair ANET-GWW
ADF test for ANET-GWW failed with LinAlgError

Processing pair ANET-WMT
ADF test for ANET-WMT failed with LinAlgError

Processing pair AJG-AIZ

Processing pair AJG-ADP

Processing pair AJG-AZO

Processing pair AJG-AVY

Processing pair AJG-AXON

Processing pair AJG-BLK

Processing pair AJG-BX

Processing pair AJG-BKNG

Processing pair AJG-BSX

Processing pair AJG-AVGO

Processing pair AJG-BR

Processing pair AJG-BRO

Processing pair AJG-BLDR

Processing pair AJG-CDNS

Processing pair AJG-CAT

Processing pair AJG-CBOE
ADF test for AJG-CBOE failed with LinAlgError

Processing pair AJG-CBRE

Processing pair AJG-CDW
ADF test for AJG-CDW failed with LinAlgError

Processing pair AJG-COR

Processing pair AJG-CVX

Processing pair AJG-CMG

Processing pair AJG-CB

Processing pair AJG-CHD

Processing pair AJG-CI

Processing pair AJG-CTAS

Processing pair AJG-KO

Processing pair AJG-CEG
ADF test for AJG-CEG failed with LinAlgError

Processing pair AJG-CPRT

Processing pair AJG-COST

Processing pair AJG-CSX

Processing pair AJG-CMI

Processing pair AJG-DHR

Processing pair AJG-DRI

Processing pair AJG-DECK

Processing pair AJG-DE

Processing pair AJG-DFS

Processing pair AJG-DOV

Processing pair AJG-DHI

Processing pair AJG-DUK

Processing pair AJG-ETN

Processing pair AJG-ELV

Processing pair AJG-EMR

Processing pair AJG-ETR

Processing pair AJG-EFX

Processing pair AJG-EQIX

Processing pair AJG-ERIE

Processing pair AJG-EG

Processing pair AJG-EXC

Processing pair AJG-EXPD

Processing pair AJG-FDS

Processing pair AJG-FICO

Processing pair AJG-FAST

Processing pair AJG-FI

Processing pair AJG-FTNT

Processing pair AJG-GRMN

Processing pair AJG-IT

Processing pair AJG-GPC

Processing pair AJG-GS

Processing pair AJG-HIG

Processing pair AJG-HCA
ADF test for AJG-HCA failed with LinAlgError

Processing pair AJG-HSY

Processing pair AJG-HLT
ADF test for AJG-HLT failed with LinAlgError

Processing pair AJG-HOLX

Processing pair AJG-HD

Processing pair AJG-HPQ

Processing pair AJG-HUBB

Processing pair AJG-ITW

Processing pair AJG-IR
ADF test for AJG-IR failed with LinAlgError

Processing pair AJG-ICE

Processing pair AJG-INTU

Processing pair AJG-ISRG

Processing pair AJG-IRM

Processing pair AJG-JBHT

Processing pair AJG-JBL

Processing pair AJG-J

Processing pair AJG-JCI

Processing pair AJG-JPM

Processing pair AJG-KKR
ADF test for AJG-KKR failed with LinAlgError

Processing pair AJG-KLAC

Processing pair AJG-LRCX

Processing pair AJG-LDOS

Processing pair AJG-LEN

Processing pair AJG-LII

Processing pair AJG-LLY

Processing pair AJG-LIN

Processing pair AJG-LMT

Processing pair AJG-L

Processing pair AJG-LOW

Processing pair AJG-MPC
ADF test for AJG-MPC failed with LinAlgError

Processing pair AJG-MAR

Processing pair AJG-MMC

Processing pair AJG-MLM

Processing pair AJG-MAS

Processing pair AJG-MA

Processing pair AJG-MCD

Processing pair AJG-MCK

Processing pair AJG-MRK

Processing pair AJG-MET

Processing pair AJG-MTD

Processing pair AJG-MCHP

Processing pair AJG-MSFT

Processing pair AJG-MOH

Processing pair AJG-MDLZ

Processing pair AJG-MPWR

Processing pair AJG-MNST

Processing pair AJG-MCO

Processing pair AJG-MS

Processing pair AJG-MSI

Processing pair AJG-MSCI

Processing pair AJG-NDAQ

Processing pair AJG-NTAP

Processing pair AJG-NDSN

Processing pair AJG-NOC

Processing pair AJG-NUE

Processing pair AJG-NVR

Processing pair AJG-NXPI
ADF test for AJG-NXPI failed with LinAlgError

Processing pair AJG-ORLY

Processing pair AJG-ODFL

Processing pair AJG-ON

Processing pair AJG-OKE

Processing pair AJG-ORCL

Processing pair AJG-PCAR

Processing pair AJG-PKG

Processing pair AJG-PANW
ADF test for AJG-PANW failed with LinAlgError

Processing pair AJG-PH

Processing pair AJG-PAYX

Processing pair AJG-PEP

Processing pair AJG-PFG

Processing pair AJG-PG

Processing pair AJG-PGR

Processing pair AJG-PLD

Processing pair AJG-PEG

Processing pair AJG-PTC

Processing pair AJG-PSA

Processing pair AJG-PHM

Processing pair AJG-PWR

Processing pair AJG-QCOM

Processing pair AJG-DGX

Processing pair AJG-RJF

Processing pair AJG-RSG

Processing pair AJG-ROK

Processing pair AJG-ROL

Processing pair AJG-ROP

Processing pair AJG-SPGI

Processing pair AJG-STX

Processing pair AJG-NOW
ADF test for AJG-NOW failed with LinAlgError

Processing pair AJG-SHW

Processing pair AJG-SNA

Processing pair AJG-SO

Processing pair AJG-STLD

Processing pair AJG-STE

Processing pair AJG-SYK

Processing pair AJG-SNPS

Processing pair AJG-TMUS

Processing pair AJG-TEL

Processing pair AJG-TXN

Processing pair AJG-TPL

Processing pair AJG-TMO

Processing pair AJG-TJX

Processing pair AJG-TSCO

Processing pair AJG-TT

Processing pair AJG-TDG

Processing pair AJG-TRV

Processing pair AJG-UNP

Processing pair AJG-URI

Processing pair AJG-UNH

Processing pair AJG-VLO

Processing pair AJG-VRSK

Processing pair AJG-VRTX

Processing pair AJG-VICI
ADF test for AJG-VICI failed with LinAlgError

Processing pair AJG-V

Processing pair AJG-VMC

Processing pair AJG-WRB

Processing pair AJG-GWW

Processing pair AJG-WMT

Processing pair AJG-WM

Processing pair AJG-WELL

Processing pair AJG-WTW

Processing pair AJG-XYL
ADF test for AJG-XYL failed with LinAlgError

Processing pair AJG-YUM

Processing pair AIZ-ATO

Processing pair AIZ-ADSK

Processing pair AIZ-ADP

Processing pair AIZ-AZO

Processing pair AIZ-AVB

Processing pair AIZ-AVY

Processing pair AIZ-BAC

Processing pair AIZ-BDX

Processing pair AIZ-BLK

Processing pair AIZ-BX

Processing pair AIZ-BKNG

Processing pair AIZ-BSX

Processing pair AIZ-BR

Processing pair AIZ-BRO

Processing pair AIZ-CPT

Processing pair AIZ-COF

Processing pair AIZ-CBOE
ADF test for AIZ-CBOE failed with LinAlgError

Processing pair AIZ-CBRE

Processing pair AIZ-CDW
ADF test for AIZ-CDW failed with LinAlgError

Processing pair AIZ-CE

Processing pair AIZ-CNC

Processing pair AIZ-SCHW

Processing pair AIZ-CB

Processing pair AIZ-CHD

Processing pair AIZ-CI

Processing pair AIZ-CINF

Processing pair AIZ-CTAS

Processing pair AIZ-CSCO

Processing pair AIZ-CME

Processing pair AIZ-CMS

Processing pair AIZ-KO

Processing pair AIZ-CL

Processing pair AIZ-ED

Processing pair AIZ-STZ

Processing pair AIZ-COO

Processing pair AIZ-CPRT

Processing pair AIZ-GLW

Processing pair AIZ-CSGP

Processing pair AIZ-COST

Processing pair AIZ-CSX

Processing pair AIZ-CMI

Processing pair AIZ-DHR

Processing pair AIZ-DRI

Processing pair AIZ-DE

Processing pair AIZ-DLR

Processing pair AIZ-DFS

Processing pair AIZ-DPZ

Processing pair AIZ-DOV

Processing pair AIZ-DHI

Processing pair AIZ-DTE

Processing pair AIZ-DUK

Processing pair AIZ-EBAY

Processing pair AIZ-ECL

Processing pair AIZ-EW

Processing pair AIZ-EA

Processing pair AIZ-ELV

Processing pair AIZ-EMR

Processing pair AIZ-ETR

Processing pair AIZ-EFX

Processing pair AIZ-EQIX

Processing pair AIZ-ESS

Processing pair AIZ-EG

Processing pair AIZ-EVRG

Processing pair AIZ-EXPD

Processing pair AIZ-EXR

Processing pair AIZ-FDS

Processing pair AIZ-FAST

Processing pair AIZ-FITB

Processing pair AIZ-FI

Processing pair AIZ-FTNT

Processing pair AIZ-GRMN

Processing pair AIZ-IT

Processing pair AIZ-GEN

Processing pair AIZ-GD

Processing pair AIZ-GL

Processing pair AIZ-GS

Processing pair AIZ-HIG

Processing pair AIZ-HCA
ADF test for AIZ-HCA failed with LinAlgError

Processing pair AIZ-HSY

Processing pair AIZ-HLT
ADF test for AIZ-HLT failed with LinAlgError

Processing pair AIZ-HOLX

Processing pair AIZ-HD

Processing pair AIZ-HON

Processing pair AIZ-HPQ

Processing pair AIZ-HBAN

Processing pair AIZ-IEX

Processing pair AIZ-IDXX

Processing pair AIZ-ITW

Processing pair AIZ-ICE

Processing pair AIZ-IPG

Processing pair AIZ-INTU

Processing pair AIZ-ISRG

Processing pair AIZ-INVH
ADF test for AIZ-INVH failed with LinAlgError

Processing pair AIZ-IQV
ADF test for AIZ-IQV failed with LinAlgError

Processing pair AIZ-JBHT

Processing pair AIZ-JKHY

Processing pair AIZ-J

Processing pair AIZ-JNJ

Processing pair AIZ-JCI

Processing pair AIZ-JPM

Processing pair AIZ-KDP

Processing pair AIZ-KMB

Processing pair AIZ-KR

Processing pair AIZ-LHX

Processing pair AIZ-LH

Processing pair AIZ-LRCX

Processing pair AIZ-LDOS

Processing pair AIZ-LII

Processing pair AIZ-LIN

Processing pair AIZ-LYV

Processing pair AIZ-LMT

Processing pair AIZ-LOW

Processing pair AIZ-MAR

Processing pair AIZ-MMC

Processing pair AIZ-MLM

Processing pair AIZ-MAS

Processing pair AIZ-MA

Processing pair AIZ-MKC

Processing pair AIZ-MCD

Processing pair AIZ-MRK

Processing pair AIZ-MET

Processing pair AIZ-MTD

Processing pair AIZ-MCHP

Processing pair AIZ-MU

Processing pair AIZ-MSFT

Processing pair AIZ-MAA

Processing pair AIZ-MOH

Processing pair AIZ-MDLZ

Processing pair AIZ-MPWR

Processing pair AIZ-MNST

Processing pair AIZ-MCO

Processing pair AIZ-MS

Processing pair AIZ-MSI

Processing pair AIZ-MSCI

Processing pair AIZ-NDAQ

Processing pair AIZ-NEE

Processing pair AIZ-NI

Processing pair AIZ-NDSN

Processing pair AIZ-NSC

Processing pair AIZ-NOC

Processing pair AIZ-NVR

Processing pair AIZ-NXPI
ADF test for AIZ-NXPI failed with LinAlgError

Processing pair AIZ-ORLY

Processing pair AIZ-ODFL

Processing pair AIZ-PKG

Processing pair AIZ-PH

Processing pair AIZ-PAYX

Processing pair AIZ-PEP

Processing pair AIZ-PM

Processing pair AIZ-PNC

Processing pair AIZ-POOL

Processing pair AIZ-PFG

Processing pair AIZ-PG

Processing pair AIZ-PGR

Processing pair AIZ-PLD

Processing pair AIZ-PRU

Processing pair AIZ-PEG

Processing pair AIZ-PTC

Processing pair AIZ-PSA

Processing pair AIZ-QCOM

Processing pair AIZ-DGX

Processing pair AIZ-RJF

Processing pair AIZ-RTX

Processing pair AIZ-O

Processing pair AIZ-RF

Processing pair AIZ-RSG

Processing pair AIZ-RMD

Processing pair AIZ-ROK

Processing pair AIZ-ROL

Processing pair AIZ-ROP

Processing pair AIZ-ROST

Processing pair AIZ-SPGI

Processing pair AIZ-CRM

Processing pair AIZ-STX

Processing pair AIZ-SRE

Processing pair AIZ-NOW
ADF test for AIZ-NOW failed with LinAlgError

Processing pair AIZ-SHW

Processing pair AIZ-SNA

Processing pair AIZ-SO

Processing pair AIZ-SBUX

Processing pair AIZ-STE

Processing pair AIZ-SYK

Processing pair AIZ-SYY

Processing pair AIZ-TMUS

Processing pair AIZ-TTWO

Processing pair AIZ-TEL

Processing pair AIZ-TDY

Processing pair AIZ-TER

Processing pair AIZ-TXN

Processing pair AIZ-TXT

Processing pair AIZ-TMO

Processing pair AIZ-TJX

Processing pair AIZ-TSCO

Processing pair AIZ-TT

Processing pair AIZ-TDG

Processing pair AIZ-TRV

Processing pair AIZ-TYL

Processing pair AIZ-UDR

Processing pair AIZ-UNP

Processing pair AIZ-UPS

Processing pair AIZ-UNH

Processing pair AIZ-VRSK

Processing pair AIZ-VRTX

Processing pair AIZ-V

Processing pair AIZ-VMC

Processing pair AIZ-WRB

Processing pair AIZ-WMT

Processing pair AIZ-WM

Processing pair AIZ-WAT

Processing pair AIZ-WEC

Processing pair AIZ-WELL

Processing pair AIZ-WST

Processing pair AIZ-WTW

Processing pair AIZ-XEL

Processing pair AIZ-XYL
ADF test for AIZ-XYL failed with LinAlgError

Processing pair AIZ-YUM

Processing pair AIZ-ZTS
ADF test for AIZ-ZTS failed with LinAlgError

Processing pair T-GEV
ADF test for T-GEV failed with LinAlgError

Processing pair T-KMB

Processing pair T-PNW

Processing pair T-PPL

Processing pair ATO-ADP

Processing pair ATO-AVB

Processing pair ATO-AVY

Processing pair ATO-BAC

Processing pair ATO-BDX

Processing pair ATO-BLK

Processing pair ATO-BKNG

Processing pair ATO-BSX

Processing pair ATO-BR

Processing pair ATO-BRO

Processing pair ATO-CHRW

Processing pair ATO-CBOE
ADF test for ATO-CBOE failed with LinAlgError

Processing pair ATO-CDW
ADF test for ATO-CDW failed with LinAlgError

Processing pair ATO-CNC

Processing pair ATO-CNP

Processing pair ATO-CB

Processing pair ATO-CHD

Processing pair ATO-CI

Processing pair ATO-CINF

Processing pair ATO-CSCO

Processing pair ATO-CLX

Processing pair ATO-CME

Processing pair ATO-CMS

Processing pair ATO-KO

Processing pair ATO-CL

Processing pair ATO-ED

Processing pair ATO-STZ

Processing pair ATO-COO

Processing pair ATO-GLW

Processing pair ATO-CPAY
ADF test for ATO-CPAY failed with LinAlgError

Processing pair ATO-CSGP

Processing pair ATO-CSX

Processing pair ATO-DHR

Processing pair ATO-DRI

Processing pair ATO-DLR

Processing pair ATO-DPZ

Processing pair ATO-DOV

Processing pair ATO-DTE

Processing pair ATO-DUK

Processing pair ATO-ECL

Processing pair ATO-EIX

Processing pair ATO-EA

Processing pair ATO-ELV

Processing pair ATO-ETR

Processing pair ATO-EFX

Processing pair ATO-EQIX

Processing pair ATO-EQR

Processing pair ATO-ESS

Processing pair ATO-EG

Processing pair ATO-EVRG

Processing pair ATO-ES

Processing pair ATO-EXR

Processing pair ATO-FDS

Processing pair ATO-FI

Processing pair ATO-GEV
ADF test for ATO-GEV failed with LinAlgError

Processing pair ATO-GD

Processing pair ATO-GL

Processing pair ATO-HIG

Processing pair ATO-HSY

Processing pair ATO-HOLX

Processing pair ATO-HD

Processing pair ATO-HON

Processing pair ATO-HUM

Processing pair ATO-HBAN

Processing pair ATO-HII
ADF test for ATO-HII failed with LinAlgError

Processing pair ATO-IEX

Processing pair ATO-ITW

Processing pair ATO-ICE

Processing pair ATO-JBHT

Processing pair ATO-JKHY

Processing pair ATO-JNJ

Processing pair ATO-JPM

Processing pair ATO-KDP

Processing pair ATO-KMB

Processing pair ATO-LHX

Processing pair ATO-LH

Processing pair ATO-LDOS

Processing pair ATO-LII

Processing pair ATO-LYV

Processing pair ATO-LMT

Processing pair ATO-LOW

Processing pair ATO-MAR

Processing pair ATO-MMC

Processing pair ATO-MLM

Processing pair ATO-MAS

Processing pair ATO-MA

Processing pair ATO-MKC

Processing pair ATO-MCD

Processing pair ATO-MRK

Processing pair ATO-MTD

Processing pair ATO-MCHP

Processing pair ATO-MAA

Processing pair ATO-MDLZ

Processing pair ATO-MNST

Processing pair ATO-MCO

Processing pair ATO-NDAQ

Processing pair ATO-NEE

Processing pair ATO-NI

Processing pair ATO-NDSN

Processing pair ATO-NSC

Processing pair ATO-NOC

Processing pair ATO-NVR

Processing pair ATO-ORLY

Processing pair ATO-PKG

Processing pair ATO-PAYX

Processing pair ATO-PEP

Processing pair ATO-PNW

Processing pair ATO-PNC

Processing pair ATO-PFG

Processing pair ATO-PG

Processing pair ATO-PLD

Processing pair ATO-PEG

Processing pair ATO-PTC

Processing pair ATO-PSA

Processing pair ATO-DGX

Processing pair ATO-RJF

Processing pair ATO-RTX

Processing pair ATO-O

Processing pair ATO-RF

Processing pair ATO-RSG

Processing pair ATO-ROK

Processing pair ATO-ROL

Processing pair ATO-ROP

Processing pair ATO-ROST

Processing pair ATO-SPGI

Processing pair ATO-CRM

Processing pair ATO-SRE

Processing pair ATO-SHW

Processing pair ATO-SNA

Processing pair ATO-SO

Processing pair ATO-SBUX

Processing pair ATO-STE

Processing pair ATO-SYK

Processing pair ATO-SYY

Processing pair ATO-TMUS

Processing pair ATO-TTWO

Processing pair ATO-TEL

Processing pair ATO-TDY

Processing pair ATO-TXN

Processing pair ATO-TMO

Processing pair ATO-TJX

Processing pair ATO-TRV

Processing pair ATO-TYL

Processing pair ATO-UDR

Processing pair ATO-ULTA

Processing pair ATO-UNP

Processing pair ATO-UNH

Processing pair ATO-VRSN

Processing pair ATO-VRSK

Processing pair ATO-VRTX

Processing pair ATO-V

Processing pair ATO-VMC

Processing pair ATO-WRB

Processing pair ATO-WMT

Processing pair ATO-WM

Processing pair ATO-WAT

Processing pair ATO-WEC

Processing pair ATO-WELL

Processing pair ATO-WTW

Processing pair ATO-XEL

Processing pair ATO-XYL
ADF test for ATO-XYL failed with LinAlgError

Processing pair ATO-YUM

Processing pair ADSK-ADP

Processing pair ADSK-AVY

Processing pair ADSK-BALL

Processing pair ADSK-BAC

Processing pair ADSK-BBY

Processing pair ADSK-TECH

Processing pair ADSK-BLK

Processing pair ADSK-BR

Processing pair ADSK-CBRE

Processing pair ADSK-CE

Processing pair ADSK-CRL

Processing pair ADSK-CHD

Processing pair ADSK-CSCO

Processing pair ADSK-CLX

Processing pair ADSK-CME

Processing pair ADSK-CMS

Processing pair ADSK-CMCSA

Processing pair ADSK-COO

Processing pair ADSK-GLW

Processing pair ADSK-CSGP

Processing pair ADSK-CCI

Processing pair ADSK-CSX

Processing pair ADSK-CMI

Processing pair ADSK-DHR

Processing pair ADSK-DRI

Processing pair ADSK-DXCM

Processing pair ADSK-DLR

Processing pair ADSK-DPZ

Processing pair ADSK-DOV

Processing pair ADSK-DTE

Processing pair ADSK-DUK

Processing pair ADSK-EBAY

Processing pair ADSK-ECL

Processing pair ADSK-EW

Processing pair ADSK-EA

Processing pair ADSK-ETR

Processing pair ADSK-EFX

Processing pair ADSK-EQIX

Processing pair ADSK-ES

Processing pair ADSK-EXPD

Processing pair ADSK-FDS

Processing pair ADSK-FAST

Processing pair ADSK-FI

Processing pair ADSK-GRMN

Processing pair ADSK-GEV
ADF test for ADSK-GEV failed with LinAlgError

Processing pair ADSK-GEN

Processing pair ADSK-HOLX

Processing pair ADSK-HD

Processing pair ADSK-HON

Processing pair ADSK-IEX

Processing pair ADSK-IDXX

Processing pair ADSK-ITW

Processing pair ADSK-PODD

Processing pair ADSK-ICE

Processing pair ADSK-INTU

Processing pair ADSK-ISRG

Processing pair ADSK-IQV
ADF test for ADSK-IQV failed with LinAlgError

Processing pair ADSK-JBHT

Processing pair ADSK-JKHY

Processing pair ADSK-J

Processing pair ADSK-JNJ

Processing pair ADSK-JPM

Processing pair ADSK-KDP

Processing pair ADSK-LHX

Processing pair ADSK-LH

Processing pair ADSK-LDOS

Processing pair ADSK-LYV

Processing pair ADSK-LOW

Processing pair ADSK-LULU

Processing pair ADSK-MKTX

Processing pair ADSK-MAS

Processing pair ADSK-MA

Processing pair ADSK-MKC

Processing pair ADSK-MCD

Processing pair ADSK-MTD

Processing pair ADSK-MCHP

Processing pair ADSK-MU

Processing pair ADSK-MSFT

Processing pair ADSK-MAA

Processing pair ADSK-MNST

Processing pair ADSK-MCO

Processing pair ADSK-MSCI

Processing pair ADSK-NDAQ

Processing pair ADSK-NFLX

Processing pair ADSK-NEE

Processing pair ADSK-NKE

Processing pair ADSK-NDSN

Processing pair ADSK-NSC

Processing pair ADSK-PAYX

Processing pair ADSK-PNC

Processing pair ADSK-POOL

Processing pair ADSK-PG

Processing pair ADSK-PLD

Processing pair ADSK-PEG

Processing pair ADSK-PTC

Processing pair ADSK-DGX

Processing pair ADSK-RMD

Processing pair ADSK-RVTY

Processing pair ADSK-ROK

Processing pair ADSK-ROL

Processing pair ADSK-ROP

Processing pair ADSK-ROST

Processing pair ADSK-SPGI

Processing pair ADSK-CRM

Processing pair ADSK-SBAC

Processing pair ADSK-NOW
ADF test for ADSK-NOW failed with LinAlgError

Processing pair ADSK-SHW

Processing pair ADSK-SBUX

Processing pair ADSK-STE

Processing pair ADSK-SYK

Processing pair ADSK-SYY

Processing pair ADSK-TMUS

Processing pair ADSK-TROW

Processing pair ADSK-TTWO

Processing pair ADSK-TGT

Processing pair ADSK-TEL

Processing pair ADSK-TDY

Processing pair ADSK-TER

Processing pair ADSK-TXN

Processing pair ADSK-TMO

Processing pair ADSK-TRMB

Processing pair ADSK-TYL

Processing pair ADSK-UNP

Processing pair ADSK-UNH

Processing pair ADSK-VRSN

Processing pair ADSK-VRSK

Processing pair ADSK-V

Processing pair ADSK-WM

Processing pair ADSK-WAT

Processing pair ADSK-WEC

Processing pair ADSK-WST

Processing pair ADSK-WTW

Processing pair ADSK-WDAY
ADF test for ADSK-WDAY failed with LinAlgError

Processing pair ADSK-XEL

Processing pair ADSK-XYL
ADF test for ADSK-XYL failed with LinAlgError

Processing pair ADSK-YUM

Processing pair ADSK-ZBRA

Processing pair ADSK-ZTS
ADF test for ADSK-ZTS failed with LinAlgError

Processing pair ADP-AZO

Processing pair ADP-AVB

Processing pair ADP-AVY

Processing pair ADP-BAC

Processing pair ADP-BDX

Processing pair ADP-BLK

Processing pair ADP-BX

Processing pair ADP-BKNG

Processing pair ADP-BSX

Processing pair ADP-BR

Processing pair ADP-BRO

Processing pair ADP-CHRW

Processing pair ADP-CDNS

Processing pair ADP-CPT

Processing pair ADP-CAT

Processing pair ADP-CBOE
ADF test for ADP-CBOE failed with LinAlgError

Processing pair ADP-CBRE

Processing pair ADP-CDW
ADF test for ADP-CDW failed with LinAlgError

Processing pair ADP-CE

Processing pair ADP-COR

Processing pair ADP-CNC

Processing pair ADP-CNP

Processing pair ADP-SCHW

Processing pair ADP-CMG

Processing pair ADP-CB

Processing pair ADP-CHD

Processing pair ADP-CI

Processing pair ADP-CINF

Processing pair ADP-CTAS

Processing pair ADP-CSCO

Processing pair ADP-CME

Processing pair ADP-CMS

Processing pair ADP-KO

Processing pair ADP-CL

Processing pair ADP-ED

Processing pair ADP-STZ

Processing pair ADP-COO

Processing pair ADP-CPRT

Processing pair ADP-GLW

Processing pair ADP-CSGP

Processing pair ADP-COST

Processing pair ADP-CSX

Processing pair ADP-CMI

Processing pair ADP-DHR

Processing pair ADP-DRI

Processing pair ADP-DE

Processing pair ADP-DLR

Processing pair ADP-DFS

Processing pair ADP-DPZ

Processing pair ADP-DOV

Processing pair ADP-DHI

Processing pair ADP-DTE

Processing pair ADP-DUK

Processing pair ADP-ECL

Processing pair ADP-ELV

Processing pair ADP-EMR

Processing pair ADP-ETR

Processing pair ADP-EFX

Processing pair ADP-EQIX

Processing pair ADP-ERIE

Processing pair ADP-EG

Processing pair ADP-EVRG

Processing pair ADP-EXC

Processing pair ADP-EXPD

Processing pair ADP-EXR

Processing pair ADP-FDS

Processing pair ADP-FAST

Processing pair ADP-FITB

Processing pair ADP-FI

Processing pair ADP-FTNT

Processing pair ADP-GRMN

Processing pair ADP-IT

Processing pair ADP-GEV
ADF test for ADP-GEV failed with LinAlgError

Processing pair ADP-GEN

Processing pair ADP-GD

Processing pair ADP-GIS

Processing pair ADP-GPC

Processing pair ADP-GL

Processing pair ADP-GS

Processing pair ADP-HIG

Processing pair ADP-HCA
ADF test for ADP-HCA failed with LinAlgError

Processing pair ADP-HSY

Processing pair ADP-HLT
ADF test for ADP-HLT failed with LinAlgError

Processing pair ADP-HOLX

Processing pair ADP-HD

Processing pair ADP-HON

Processing pair ADP-HPQ

Processing pair ADP-HUBB

Processing pair ADP-HUM

Processing pair ADP-IEX

Processing pair ADP-IDXX

Processing pair ADP-ITW

Processing pair ADP-ICE

Processing pair ADP-IPG

Processing pair ADP-INTU

Processing pair ADP-ISRG

Processing pair ADP-IQV
ADF test for ADP-IQV failed with LinAlgError

Processing pair ADP-JBHT

Processing pair ADP-JKHY

Processing pair ADP-J

Processing pair ADP-JNJ

Processing pair ADP-JCI

Processing pair ADP-JPM

Processing pair ADP-KDP

Processing pair ADP-KEYS
ADF test for ADP-KEYS failed with LinAlgError

Processing pair ADP-KLAC

Processing pair ADP-KR

Processing pair ADP-LHX

Processing pair ADP-LH

Processing pair ADP-LRCX

Processing pair ADP-LDOS

Processing pair ADP-LEN

Processing pair ADP-LII

Processing pair ADP-LIN

Processing pair ADP-LYV

Processing pair ADP-LMT

Processing pair ADP-LOW

Processing pair ADP-LULU

Processing pair ADP-MAR

Processing pair ADP-MMC

Processing pair ADP-MLM

Processing pair ADP-MAS

Processing pair ADP-MA

Processing pair ADP-MCD

Processing pair ADP-MRK

Processing pair ADP-MET

Processing pair ADP-MTD

Processing pair ADP-MCHP

Processing pair ADP-MU

Processing pair ADP-MSFT

Processing pair ADP-MAA

Processing pair ADP-MOH

Processing pair ADP-MDLZ

Processing pair ADP-MPWR

Processing pair ADP-MNST

Processing pair ADP-MCO

Processing pair ADP-MS

Processing pair ADP-MSI

Processing pair ADP-MSCI

Processing pair ADP-NDAQ

Processing pair ADP-NEE

Processing pair ADP-NI

Processing pair ADP-NDSN

Processing pair ADP-NSC

Processing pair ADP-NOC

Processing pair ADP-NUE

Processing pair ADP-NVR

Processing pair ADP-NXPI
ADF test for ADP-NXPI failed with LinAlgError

Processing pair ADP-ORLY

Processing pair ADP-ODFL

Processing pair ADP-ON

Processing pair ADP-OKE

Processing pair ADP-ORCL

Processing pair ADP-PCAR

Processing pair ADP-PKG

Processing pair ADP-PANW
ADF test for ADP-PANW failed with LinAlgError

Processing pair ADP-PH

Processing pair ADP-PAYX

Processing pair ADP-PEP

Processing pair ADP-PNC

Processing pair ADP-POOL

Processing pair ADP-PFG

Processing pair ADP-PG

Processing pair ADP-PGR

Processing pair ADP-PLD

Processing pair ADP-PRU

Processing pair ADP-PEG

Processing pair ADP-PTC

Processing pair ADP-PSA

Processing pair ADP-QCOM

Processing pair ADP-DGX

Processing pair ADP-RJF

Processing pair ADP-RTX

Processing pair ADP-O

Processing pair ADP-RF

Processing pair ADP-RSG

Processing pair ADP-RMD

Processing pair ADP-ROK

Processing pair ADP-ROL

Processing pair ADP-ROP

Processing pair ADP-ROST

Processing pair ADP-SPGI

Processing pair ADP-CRM

Processing pair ADP-STX

Processing pair ADP-SRE

Processing pair ADP-NOW
ADF test for ADP-NOW failed with LinAlgError

Processing pair ADP-SHW

Processing pair ADP-SNA

Processing pair ADP-SO

Processing pair ADP-SBUX

Processing pair ADP-STLD

Processing pair ADP-STE

Processing pair ADP-SYK

Processing pair ADP-SNPS

Processing pair ADP-SYY

Processing pair ADP-TMUS

Processing pair ADP-TEL

Processing pair ADP-TDY

Processing pair ADP-TER

Processing pair ADP-TXN

Processing pair ADP-TPL

Processing pair ADP-TXT

Processing pair ADP-TMO

Processing pair ADP-TJX

Processing pair ADP-TSCO

Processing pair ADP-TT

Processing pair ADP-TDG

Processing pair ADP-TRV

Processing pair ADP-TYL

Processing pair ADP-ULTA

Processing pair ADP-UNP

Processing pair ADP-UPS

Processing pair ADP-URI

Processing pair ADP-UNH

Processing pair ADP-VLO

Processing pair ADP-VRSN

Processing pair ADP-VRSK

Processing pair ADP-VRTX

Processing pair ADP-VICI
ADF test for ADP-VICI failed with LinAlgError

Processing pair ADP-V

Processing pair ADP-VMC

Processing pair ADP-WRB

Processing pair ADP-GWW

Processing pair ADP-WMT

Processing pair ADP-WM

Processing pair ADP-WAT

Processing pair ADP-WEC

Processing pair ADP-WELL

Processing pair ADP-WST

Processing pair ADP-WTW

Processing pair ADP-XEL

Processing pair ADP-XYL
ADF test for ADP-XYL failed with LinAlgError

Processing pair ADP-YUM

Processing pair ADP-ZTS
ADF test for ADP-ZTS failed with LinAlgError

Processing pair AZO-AVY

Processing pair AZO-AXON

Processing pair AZO-BLK

Processing pair AZO-BX

Processing pair AZO-BSX

Processing pair AZO-AVGO

Processing pair AZO-BR

Processing pair AZO-BRO

Processing pair AZO-BLDR

Processing pair AZO-CDNS

Processing pair AZO-CAT

Processing pair AZO-CBOE
ADF test for AZO-CBOE failed with LinAlgError

Processing pair AZO-CBRE

Processing pair AZO-CDW
ADF test for AZO-CDW failed with LinAlgError

Processing pair AZO-COR

Processing pair AZO-CVX

Processing pair AZO-CMG

Processing pair AZO-CB

Processing pair AZO-CHD

Processing pair AZO-CI

Processing pair AZO-CTAS

Processing pair AZO-KO

Processing pair AZO-COP

Processing pair AZO-ED

Processing pair AZO-CPRT

Processing pair AZO-COST

Processing pair AZO-CMI

Processing pair AZO-DHR

Processing pair AZO-DRI

Processing pair AZO-DECK

Processing pair AZO-DE

Processing pair AZO-DFS

Processing pair AZO-DOV

Processing pair AZO-DHI

Processing pair AZO-DUK

Processing pair AZO-ETN

Processing pair AZO-ELV

Processing pair AZO-EMR

Processing pair AZO-ETR

Processing pair AZO-EFX

Processing pair AZO-ERIE

Processing pair AZO-EG

Processing pair AZO-EXC

Processing pair AZO-EXPD

Processing pair AZO-EXR

Processing pair AZO-FDS

Processing pair AZO-FICO

Processing pair AZO-FAST

Processing pair AZO-FTNT

Processing pair AZO-IT

Processing pair AZO-GD

Processing pair AZO-GIS

Processing pair AZO-GPC

Processing pair AZO-GS

Processing pair AZO-HIG

Processing pair AZO-HCA
ADF test for AZO-HCA failed with LinAlgError

Processing pair AZO-HSY

Processing pair AZO-HLT
ADF test for AZO-HLT failed with LinAlgError

Processing pair AZO-HOLX

Processing pair AZO-HD

Processing pair AZO-HUBB

Processing pair AZO-ITW

Processing pair AZO-IR
ADF test for AZO-IR failed with LinAlgError

Processing pair AZO-ICE

Processing pair AZO-IPG

Processing pair AZO-INTU

Processing pair AZO-ISRG

Processing pair AZO-IRM

Processing pair AZO-JBHT

Processing pair AZO-JBL

Processing pair AZO-J

Processing pair AZO-JCI

Processing pair AZO-JPM

Processing pair AZO-KKR
ADF test for AZO-KKR failed with LinAlgError

Processing pair AZO-KLAC

Processing pair AZO-KR

Processing pair AZO-LRCX

Processing pair AZO-LEN

Processing pair AZO-LII

Processing pair AZO-LLY

Processing pair AZO-LIN

Processing pair AZO-LMT

Processing pair AZO-LOW

Processing pair AZO-MPC
ADF test for AZO-MPC failed with LinAlgError

Processing pair AZO-MAR

Processing pair AZO-MMC

Processing pair AZO-MLM

Processing pair AZO-MAS

Processing pair AZO-MA

Processing pair AZO-MCD

Processing pair AZO-MCK

Processing pair AZO-MRK

Processing pair AZO-MET

Processing pair AZO-MTD

Processing pair AZO-MCHP

Processing pair AZO-MSFT

Processing pair AZO-MOH

Processing pair AZO-MDLZ

Processing pair AZO-MPWR

Processing pair AZO-MNST

Processing pair AZO-MCO

Processing pair AZO-MS

Processing pair AZO-MSI

Processing pair AZO-MSCI

Processing pair AZO-NDAQ

Processing pair AZO-NDSN

Processing pair AZO-NOC

Processing pair AZO-NUE

Processing pair AZO-NVR

Processing pair AZO-NXPI
ADF test for AZO-NXPI failed with LinAlgError

Processing pair AZO-ORLY

Processing pair AZO-ODFL

Processing pair AZO-ON

Processing pair AZO-ORCL

Processing pair AZO-PCAR

Processing pair AZO-PKG

Processing pair AZO-PANW
ADF test for AZO-PANW failed with LinAlgError

Processing pair AZO-PH

Processing pair AZO-PAYX

Processing pair AZO-PEP

Processing pair AZO-PFG

Processing pair AZO-PG

Processing pair AZO-PGR

Processing pair AZO-PLD

Processing pair AZO-PEG

Processing pair AZO-PTC

Processing pair AZO-PSA

Processing pair AZO-PHM

Processing pair AZO-PWR

Processing pair AZO-QCOM

Processing pair AZO-DGX

Processing pair AZO-RJF

Processing pair AZO-REGN

Processing pair AZO-RSG

Processing pair AZO-ROL

Processing pair AZO-ROP

Processing pair AZO-SPGI

Processing pair AZO-SRE

Processing pair AZO-NOW
ADF test for AZO-NOW failed with LinAlgError

Processing pair AZO-SHW

Processing pair AZO-SNA

Processing pair AZO-SO

Processing pair AZO-STLD

Processing pair AZO-STE

Processing pair AZO-SYK

Processing pair AZO-SNPS

Processing pair AZO-TMUS

Processing pair AZO-TEL

Processing pair AZO-TXN

Processing pair AZO-TPL

Processing pair AZO-TMO

Processing pair AZO-TJX

Processing pair AZO-TSCO

Processing pair AZO-TT

Processing pair AZO-TDG

Processing pair AZO-TRV

Processing pair AZO-UNP

Processing pair AZO-URI

Processing pair AZO-UNH

Processing pair AZO-VLO

Processing pair AZO-VRSK

Processing pair AZO-VRTX

Processing pair AZO-VICI
ADF test for AZO-VICI failed with LinAlgError

Processing pair AZO-V

Processing pair AZO-VMC

Processing pair AZO-WRB

Processing pair AZO-GWW

Processing pair AZO-WMT

Processing pair AZO-WM

Processing pair AZO-WTW

Processing pair AZO-YUM

Processing pair AVB-CPT

Processing pair AVB-COF

Processing pair AVB-CBRE

Processing pair AVB-CE

Processing pair AVB-CHD

Processing pair AVB-CINF

Processing pair AVB-CSCO

Processing pair AVB-CME

Processing pair AVB-CMS

Processing pair AVB-KO

Processing pair AVB-CL

Processing pair AVB-CMCSA

Processing pair AVB-ED

Processing pair AVB-STZ

Processing pair AVB-COO

Processing pair AVB-DLR

Processing pair AVB-DFS

Processing pair AVB-DTE

Processing pair AVB-DUK

Processing pair AVB-ECL

Processing pair AVB-EIX

Processing pair AVB-ETR

Processing pair AVB-EFX

Processing pair AVB-EQR

Processing pair AVB-ESS

Processing pair AVB-EVRG

Processing pair AVB-EXR

Processing pair AVB-FITB

Processing pair AVB-HSIC

Processing pair AVB-HD

Processing pair AVB-HON

Processing pair AVB-HBAN

Processing pair AVB-ICE

Processing pair AVB-JNJ

Processing pair AVB-KDP

Processing pair AVB-KMB

Processing pair AVB-LHX

Processing pair AVB-LH

Processing pair AVB-LYV

Processing pair AVB-MAS

Processing pair AVB-MAA

Processing pair AVB-MDLZ

Processing pair AVB-NI

Processing pair AVB-NTRS

Processing pair AVB-PAYX

Processing pair AVB-PNW

Processing pair AVB-PNC

Processing pair AVB-PPL

Processing pair AVB-PEG

Processing pair AVB-PSA

Processing pair AVB-DGX

Processing pair AVB-RTX

Processing pair AVB-O

Processing pair AVB-REG

Processing pair AVB-ROP

Processing pair AVB-ROST

Processing pair AVB-SRE

Processing pair AVB-SHW

Processing pair AVB-SBUX

Processing pair AVB-SYY

Processing pair AVB-TEL

Processing pair AVB-TRV

Processing pair AVB-TYL

Processing pair AVB-UDR

Processing pair AVB-UNP

Processing pair AVB-VLTO
ADF test for AVB-VLTO failed with LinAlgError

Processing pair AVB-WAT

Processing pair AVB-WEC

Processing pair AVB-WELL

Processing pair AVB-XEL

Processing pair AVB-YUM

Processing pair AVY-BAC

Processing pair AVY-BBY

Processing pair AVY-TECH

Processing pair AVY-BLK

Processing pair AVY-BX

Processing pair AVY-BSX

Processing pair AVY-BR

Processing pair AVY-BRO

Processing pair AVY-CDNS

Processing pair AVY-CPT

Processing pair AVY-COF

Processing pair AVY-CAT

Processing pair AVY-CBOE
ADF test for AVY-CBOE failed with LinAlgError

Processing pair AVY-CBRE

Processing pair AVY-CDW
ADF test for AVY-CDW failed with LinAlgError

Processing pair AVY-CE

Processing pair AVY-CNC

Processing pair AVY-CRL

Processing pair AVY-SCHW

Processing pair AVY-CB

Processing pair AVY-CHD

Processing pair AVY-CI

Processing pair AVY-CINF

Processing pair AVY-CTAS

Processing pair AVY-CSCO

Processing pair AVY-CME

Processing pair AVY-CMS

Processing pair AVY-KO

Processing pair AVY-CL

Processing pair AVY-ED

Processing pair AVY-STZ

Processing pair AVY-COO

Processing pair AVY-CPRT

Processing pair AVY-GLW

Processing pair AVY-CSGP

Processing pair AVY-COST

Processing pair AVY-CSX

Processing pair AVY-CMI

Processing pair AVY-DHR

Processing pair AVY-DRI

Processing pair AVY-DE

Processing pair AVY-DXCM

Processing pair AVY-DLR

Processing pair AVY-DFS

Processing pair AVY-DPZ

Processing pair AVY-DOV

Processing pair AVY-DHI

Processing pair AVY-DTE

Processing pair AVY-DUK

Processing pair AVY-EBAY

Processing pair AVY-ECL

Processing pair AVY-EW

Processing pair AVY-ELV

Processing pair AVY-EMR

Processing pair AVY-ETR

Processing pair AVY-EFX

Processing pair AVY-EQIX

Processing pair AVY-EG

Processing pair AVY-EXC

Processing pair AVY-EXPD

Processing pair AVY-EXR

Processing pair AVY-FDS

Processing pair AVY-FAST

Processing pair AVY-FITB

Processing pair AVY-FI

Processing pair AVY-FTNT

Processing pair AVY-GRMN

Processing pair AVY-IT

Processing pair AVY-GEN

Processing pair AVY-GD

Processing pair AVY-GPC

Processing pair AVY-GL

Processing pair AVY-GS

Processing pair AVY-HIG

Processing pair AVY-HCA
ADF test for AVY-HCA failed with LinAlgError

Processing pair AVY-HSY

Processing pair AVY-HLT
ADF test for AVY-HLT failed with LinAlgError

Processing pair AVY-HOLX

Processing pair AVY-HD

Processing pair AVY-HON

Processing pair AVY-HPQ

Processing pair AVY-HUM

Processing pair AVY-IEX

Processing pair AVY-IDXX

Processing pair AVY-ITW

Processing pair AVY-PODD

Processing pair AVY-ICE

Processing pair AVY-IPG

Processing pair AVY-INTU

Processing pair AVY-ISRG

Processing pair AVY-INVH
ADF test for AVY-INVH failed with LinAlgError

Processing pair AVY-IQV
ADF test for AVY-IQV failed with LinAlgError

Processing pair AVY-JBHT

Processing pair AVY-JKHY

Processing pair AVY-J

Processing pair AVY-JNJ

Processing pair AVY-JCI

Processing pair AVY-JPM

Processing pair AVY-KDP

Processing pair AVY-KEYS
ADF test for AVY-KEYS failed with LinAlgError

Processing pair AVY-KLAC

Processing pair AVY-LHX

Processing pair AVY-LH

Processing pair AVY-LRCX

Processing pair AVY-LDOS

Processing pair AVY-LEN

Processing pair AVY-LII

Processing pair AVY-LIN

Processing pair AVY-LYV

Processing pair AVY-LMT

Processing pair AVY-LOW

Processing pair AVY-LULU

Processing pair AVY-MAR

Processing pair AVY-MMC

Processing pair AVY-MLM

Processing pair AVY-MAS

Processing pair AVY-MA

Processing pair AVY-MCD

Processing pair AVY-MRK

Processing pair AVY-MET

Processing pair AVY-MTD

Processing pair AVY-MGM

Processing pair AVY-MCHP

Processing pair AVY-MU

Processing pair AVY-MSFT

Processing pair AVY-MAA

Processing pair AVY-MOH

Processing pair AVY-MDLZ

Processing pair AVY-MPWR

Processing pair AVY-MNST

Processing pair AVY-MCO

Processing pair AVY-MS

Processing pair AVY-MSI

Processing pair AVY-MSCI

Processing pair AVY-NDAQ

Processing pair AVY-NFLX

Processing pair AVY-NEE

Processing pair AVY-NKE

Processing pair AVY-NDSN

Processing pair AVY-NSC

Processing pair AVY-NOC

Processing pair AVY-NVR

Processing pair AVY-NXPI
ADF test for AVY-NXPI failed with LinAlgError

Processing pair AVY-ORLY

Processing pair AVY-ODFL

Processing pair AVY-ORCL

Processing pair AVY-PKG

Processing pair AVY-PH

Processing pair AVY-PAYX

Processing pair AVY-PEP

Processing pair AVY-PNC

Processing pair AVY-POOL

Processing pair AVY-PFG

Processing pair AVY-PG

Processing pair AVY-PGR

Processing pair AVY-PLD

Processing pair AVY-PEG

Processing pair AVY-PTC

Processing pair AVY-PSA

Processing pair AVY-QCOM

Processing pair AVY-DGX

Processing pair AVY-RJF

Processing pair AVY-RTX

Processing pair AVY-RF

Processing pair AVY-RSG

Processing pair AVY-RMD

Processing pair AVY-RVTY

Processing pair AVY-ROK

Processing pair AVY-ROL

Processing pair AVY-ROP

Processing pair AVY-ROST

Processing pair AVY-SPGI

Processing pair AVY-CRM

Processing pair AVY-STX

Processing pair AVY-SRE

Processing pair AVY-NOW
ADF test for AVY-NOW failed with LinAlgError

Processing pair AVY-SHW

Processing pair AVY-SNA

Processing pair AVY-SO

Processing pair AVY-SBUX

Processing pair AVY-STE

Processing pair AVY-SYK

Processing pair AVY-SNPS

Processing pair AVY-SYY

Processing pair AVY-TMUS

Processing pair AVY-TROW

Processing pair AVY-TTWO

Processing pair AVY-TGT

Processing pair AVY-TEL

Processing pair AVY-TDY

Processing pair AVY-TER

Processing pair AVY-TXN

Processing pair AVY-TXT

Processing pair AVY-TMO

Processing pair AVY-TJX

Processing pair AVY-TSCO

Processing pair AVY-TT

Processing pair AVY-TDG

Processing pair AVY-TRV

Processing pair AVY-TYL

Processing pair AVY-UDR

Processing pair AVY-ULTA

Processing pair AVY-UNP

Processing pair AVY-UPS

Processing pair AVY-UNH

Processing pair AVY-VRSN

Processing pair AVY-VRSK

Processing pair AVY-VRTX

Processing pair AVY-VICI
ADF test for AVY-VICI failed with LinAlgError

Processing pair AVY-V

Processing pair AVY-VMC

Processing pair AVY-WRB

Processing pair AVY-WMT

Processing pair AVY-WM

Processing pair AVY-WAT

Processing pair AVY-WEC

Processing pair AVY-WST

Processing pair AVY-WTW

Processing pair AVY-WDAY
ADF test for AVY-WDAY failed with LinAlgError

Processing pair AVY-XEL

Processing pair AVY-XYL
ADF test for AVY-XYL failed with LinAlgError

Processing pair AVY-YUM

Processing pair AVY-ZBRA

Processing pair AVY-ZTS
ADF test for AVY-ZTS failed with LinAlgError

Processing pair AXON-BX

Processing pair AXON-BSX

Processing pair AXON-AVGO

Processing pair AXON-BRO

Processing pair AXON-BLDR

Processing pair AXON-CDNS

Processing pair AXON-CAT

Processing pair AXON-CBRE

Processing pair AXON-COR

Processing pair AXON-CMG

Processing pair AXON-CB

Processing pair AXON-CTAS

Processing pair AXON-CPRT

Processing pair AXON-COST

Processing pair AXON-CMI

Processing pair AXON-DECK

Processing pair AXON-DELL
ADF test for AXON-DELL failed with LinAlgError

Processing pair AXON-DOV

Processing pair AXON-DHI

Processing pair AXON-ETN

Processing pair AXON-EMR

Processing pair AXON-ERIE

Processing pair AXON-FICO

Processing pair AXON-FAST

Processing pair AXON-FTNT

Processing pair AXON-GRMN

Processing pair AXON-IT

Processing pair AXON-GEV
ADF test for AXON-GEV failed with LinAlgError

Processing pair AXON-GS

Processing pair AXON-HIG

Processing pair AXON-HCA
ADF test for AXON-HCA failed with LinAlgError

Processing pair AXON-HLT
ADF test for AXON-HLT failed with LinAlgError

Processing pair AXON-HWM
ADF test for AXON-HWM failed with LinAlgError

Processing pair AXON-HUBB

Processing pair AXON-IR
ADF test for AXON-IR failed with LinAlgError

Processing pair AXON-INTU

Processing pair AXON-ISRG

Processing pair AXON-IRM

Processing pair AXON-JBL

Processing pair AXON-JPM

Processing pair AXON-KKR
ADF test for AXON-KKR failed with LinAlgError

Processing pair AXON-KLAC

Processing pair AXON-LRCX

Processing pair AXON-LDOS

Processing pair AXON-LEN

Processing pair AXON-LII

Processing pair AXON-LLY

Processing pair AXON-LIN

Processing pair AXON-LOW

Processing pair AXON-MMC

Processing pair AXON-MLM

Processing pair AXON-MSFT

Processing pair AXON-MPWR

Processing pair AXON-MCO

Processing pair AXON-MS

Processing pair AXON-MSI

Processing pair AXON-NTAP

Processing pair AXON-NRG

Processing pair AXON-NVDA

Processing pair AXON-NVR

Processing pair AXON-ORLY

Processing pair AXON-ODFL

Processing pair AXON-ORCL

Processing pair AXON-PCAR

Processing pair AXON-PKG

Processing pair AXON-PANW
ADF test for AXON-PANW failed with LinAlgError

Processing pair AXON-PH

Processing pair AXON-PNR

Processing pair AXON-PGR

Processing pair AXON-PTC

Processing pair AXON-PHM

Processing pair AXON-PWR

Processing pair AXON-RJF

Processing pair AXON-RSG

Processing pair AXON-NOW
ADF test for AXON-NOW failed with LinAlgError

Processing pair AXON-SHW

Processing pair AXON-SO

Processing pair AXON-STLD

Processing pair AXON-SYK

Processing pair AXON-SNPS

Processing pair AXON-TMUS

Processing pair AXON-TPL

Processing pair AXON-TJX

Processing pair AXON-TSCO

Processing pair AXON-TT

Processing pair AXON-TDG

Processing pair AXON-URI

Processing pair AXON-VRSK

Processing pair AXON-VRTX

Processing pair AXON-VMC

Processing pair AXON-WRB

Processing pair AXON-GWW

Processing pair AXON-WMT

Processing pair AXON-WM

Processing pair BALL-BBY

Processing pair BALL-TECH

Processing pair BALL-CPT

Processing pair BALL-KMX

Processing pair BALL-CE

Processing pair BALL-CRL

Processing pair BALL-CHTR
ADF test for BALL-CHTR failed with LinAlgError

Processing pair BALL-CHD

Processing pair BALL-CLX

Processing pair BALL-CMS

Processing pair BALL-CMCSA

Processing pair BALL-COO

Processing pair BALL-CSGP

Processing pair BALL-CCI

Processing pair BALL-DLR

Processing pair BALL-DPZ

Processing pair BALL-EBAY

Processing pair BALL-ECL

Processing pair BALL-EW

Processing pair BALL-EQIX

Processing pair BALL-ESS

Processing pair BALL-EL

Processing pair BALL-ES

Processing pair BALL-GPN

Processing pair BALL-HON

Processing pair BALL-IDXX

Processing pair BALL-KDP

Processing pair BALL-LHX

Processing pair BALL-MKTX

Processing pair BALL-MKC

Processing pair BALL-MDT

Processing pair BALL-NEE

Processing pair BALL-NKE

Processing pair BALL-NSC

Processing pair BALL-POOL

Processing pair BALL-RMD

Processing pair BALL-RVTY

Processing pair BALL-CRM

Processing pair BALL-SBAC

Processing pair BALL-SWKS

Processing pair BALL-SBUX

Processing pair BALL-STE

Processing pair BALL-TROW

Processing pair BALL-TTWO

Processing pair BALL-TDY

Processing pair BALL-TFX

Processing pair BALL-TYL

Processing pair BALL-UDR

Processing pair BALL-VRSN

Processing pair BALL-VZ

Processing pair BALL-WEC

Processing pair BALL-XEL

Processing pair BALL-ZBRA

Processing pair BAC-BBY

Processing pair BAC-TECH

Processing pair BAC-BLK

Processing pair BAC-BK

Processing pair BAC-BR

Processing pair BAC-CPT

Processing pair BAC-COF

Processing pair BAC-CBRE

Processing pair BAC-CE

Processing pair BAC-CNC

Processing pair BAC-SCHW

Processing pair BAC-CHD

Processing pair BAC-CINF

Processing pair BAC-CSCO

Processing pair BAC-CFG
ADF test for BAC-CFG failed with LinAlgError

Processing pair BAC-CME

Processing pair BAC-CMS

Processing pair BAC-COO

Processing pair BAC-GLW

Processing pair BAC-CSX

Processing pair BAC-DHR

Processing pair BAC-DRI

Processing pair BAC-DLR

Processing pair BAC-DFS

Processing pair BAC-DPZ

Processing pair BAC-DOV

Processing pair BAC-DTE

Processing pair BAC-DUK

Processing pair BAC-EBAY

Processing pair BAC-ECL

Processing pair BAC-EW

Processing pair BAC-ELV

Processing pair BAC-EMR

Processing pair BAC-ETR

Processing pair BAC-EFX

Processing pair BAC-EQIX

Processing pair BAC-ESS

Processing pair BAC-EXPD

Processing pair BAC-EXR

Processing pair BAC-FDS

Processing pair BAC-FITB

Processing pair BAC-FI

Processing pair BAC-GRMN

Processing pair BAC-GEN

Processing pair BAC-GM
ADF test for BAC-GM failed with LinAlgError

Processing pair BAC-GS

Processing pair BAC-HOLX

Processing pair BAC-HD

Processing pair BAC-HON

Processing pair BAC-HPQ

Processing pair BAC-HBAN

Processing pair BAC-IEX

Processing pair BAC-IDXX

Processing pair BAC-ITW

Processing pair BAC-ICE

Processing pair BAC-INTU

Processing pair BAC-ISRG

Processing pair BAC-IQV
ADF test for BAC-IQV failed with LinAlgError

Processing pair BAC-JBHT

Processing pair BAC-JKHY

Processing pair BAC-J

Processing pair BAC-JNJ

Processing pair BAC-JCI

Processing pair BAC-JPM

Processing pair BAC-KDP

Processing pair BAC-KEY

Processing pair BAC-LHX

Processing pair BAC-LH

Processing pair BAC-LDOS

Processing pair BAC-LYV

Processing pair BAC-LMT

Processing pair BAC-LOW

Processing pair BAC-MAR

Processing pair BAC-MMC

Processing pair BAC-MAS

Processing pair BAC-MA

Processing pair BAC-MCD

Processing pair BAC-MET

Processing pair BAC-MTD

Processing pair BAC-MGM

Processing pair BAC-MCHP

Processing pair BAC-MU

Processing pair BAC-MAA

Processing pair BAC-MCO

Processing pair BAC-MS

Processing pair BAC-MSCI

Processing pair BAC-NDAQ

Processing pair BAC-NEE

Processing pair BAC-NDSN

Processing pair BAC-NSC

Processing pair BAC-NTRS

Processing pair BAC-NOC

Processing pair BAC-NVR

Processing pair BAC-NXPI
ADF test for BAC-NXPI failed with LinAlgError

Processing pair BAC-PKG

Processing pair BAC-PAYX

Processing pair BAC-PEP

Processing pair BAC-PNC

Processing pair BAC-POOL

Processing pair BAC-PG

Processing pair BAC-PLD

Processing pair BAC-PRU

Processing pair BAC-PEG

Processing pair BAC-PTC

Processing pair BAC-DGX

Processing pair BAC-RJF

Processing pair BAC-RTX

Processing pair BAC-RF

Processing pair BAC-RMD

Processing pair BAC-RVTY

Processing pair BAC-ROK

Processing pair BAC-ROL

Processing pair BAC-ROP

Processing pair BAC-ROST

Processing pair BAC-SPGI

Processing pair BAC-CRM

Processing pair BAC-STX

Processing pair BAC-SHW

Processing pair BAC-STE

Processing pair BAC-SYK

Processing pair BAC-SYY

Processing pair BAC-TMUS

Processing pair BAC-TROW

Processing pair BAC-TTWO

Processing pair BAC-TEL

Processing pair BAC-TDY

Processing pair BAC-TER

Processing pair BAC-TXN

Processing pair BAC-TMO

Processing pair BAC-TRV

Processing pair BAC-TFC

Processing pair BAC-TYL

Processing pair BAC-UDR

Processing pair BAC-UNP

Processing pair BAC-UNH

Processing pair BAC-VRSK

Processing pair BAC-V

Processing pair BAC-VMC

Processing pair BAC-WM

Processing pair BAC-WAT

Processing pair BAC-WTW

Processing pair BAC-XYL
ADF test for BAC-XYL failed with LinAlgError

Processing pair BAC-YUM

Processing pair BAC-ZBRA

Processing pair BAC-ZTS
ADF test for BAC-ZTS failed with LinAlgError

Processing pair BAX-FIS

Processing pair BAX-GPN

Processing pair BAX-INTC

Processing pair BAX-TFX

Processing pair BDX-BR

Processing pair BDX-CE

Processing pair BDX-CNC

Processing pair BDX-CHD

Processing pair BDX-CINF

Processing pair BDX-CSCO

Processing pair BDX-CLX

Processing pair BDX-CME

Processing pair BDX-CMS

Processing pair BDX-KO

Processing pair BDX-CMCSA

Processing pair BDX-ED

Processing pair BDX-STZ

Processing pair BDX-COO

Processing pair BDX-GLW

Processing pair BDX-CPAY
ADF test for BDX-CPAY failed with LinAlgError

Processing pair BDX-CSGP

Processing pair BDX-CSX

Processing pair BDX-DRI

Processing pair BDX-DLR

Processing pair BDX-DPZ

Processing pair BDX-DTE

Processing pair BDX-DUK

Processing pair BDX-ECL

Processing pair BDX-EW

Processing pair BDX-EA

Processing pair BDX-ETR

Processing pair BDX-EQIX

Processing pair BDX-ESS

Processing pair BDX-EVRG

Processing pair BDX-ES

Processing pair BDX-FI

Processing pair BDX-GPN

Processing pair BDX-GL

Processing pair BDX-HSIC

Processing pair BDX-HOLX

Processing pair BDX-HD

Processing pair BDX-HON

Processing pair BDX-HRL

Processing pair BDX-HUM

Processing pair BDX-HBAN

Processing pair BDX-HII
ADF test for BDX-HII failed with LinAlgError

Processing pair BDX-IEX

Processing pair BDX-ITW

Processing pair BDX-ICE

Processing pair BDX-JKHY

Processing pair BDX-JNJ

Processing pair BDX-KDP

Processing pair BDX-KMB

Processing pair BDX-LHX

Processing pair BDX-LMT

Processing pair BDX-MAS

Processing pair BDX-MA

Processing pair BDX-MKC

Processing pair BDX-MCD

Processing pair BDX-MDT

Processing pair BDX-MDLZ

Processing pair BDX-MNST

Processing pair BDX-NEE

Processing pair BDX-NI

Processing pair BDX-NDSN

Processing pair BDX-NSC

Processing pair BDX-NTRS

Processing pair BDX-NOC

Processing pair BDX-PEP

Processing pair BDX-PNW

Processing pair BDX-PEG

Processing pair BDX-DGX

Processing pair BDX-O

Processing pair BDX-ROK

Processing pair BDX-ROL

Processing pair BDX-ROP

Processing pair BDX-ROST

Processing pair BDX-SBAC

Processing pair BDX-SRE

Processing pair BDX-SBUX

Processing pair BDX-STE

Processing pair BDX-SYK

Processing pair BDX-SYY

Processing pair BDX-TTWO

Processing pair BDX-TEL

Processing pair BDX-TDY

Processing pair BDX-TFX

Processing pair BDX-TXN

Processing pair BDX-TSN

Processing pair BDX-UDR

Processing pair BDX-ULTA

Processing pair BDX-UNP

Processing pair BDX-VRSN

Processing pair BDX-V

Processing pair BDX-WAT

Processing pair BDX-WEC

Processing pair BDX-WTW

Processing pair BDX-XEL

Processing pair BDX-YUM

Processing pair BBY-TECH

Processing pair BBY-BLK

Processing pair BBY-BR

Processing pair BBY-CE

Processing pair BBY-CRL

Processing pair BBY-CHTR
ADF test for BBY-CHTR failed with LinAlgError

Processing pair BBY-CHD

Processing pair BBY-CSCO

Processing pair BBY-CME

Processing pair BBY-CMS

Processing pair BBY-COO

Processing pair BBY-GLW

Processing pair BBY-CSGP

Processing pair BBY-CCI

Processing pair BBY-CSX

Processing pair BBY-DHR

Processing pair BBY-DLR

Processing pair BBY-DPZ

Processing pair BBY-DOV

Processing pair BBY-EBAY

Processing pair BBY-ECL

Processing pair BBY-EW

Processing pair BBY-EA

Processing pair BBY-EQIX

Processing pair BBY-ES

Processing pair BBY-EXPD

Processing pair BBY-GRMN

Processing pair BBY-GEN

Processing pair BBY-HOLX

Processing pair BBY-HD

Processing pair BBY-HON

Processing pair BBY-IEX

Processing pair BBY-IDXX

Processing pair BBY-ITW

Processing pair BBY-PODD

Processing pair BBY-ICE

Processing pair BBY-IQV
ADF test for BBY-IQV failed with LinAlgError

Processing pair BBY-JKHY

Processing pair BBY-JNJ

Processing pair BBY-KDP

Processing pair BBY-LHX

Processing pair BBY-LH

Processing pair BBY-LDOS

Processing pair BBY-LYV

Processing pair BBY-MKTX

Processing pair BBY-MAS

Processing pair BBY-MA

Processing pair BBY-MKC

Processing pair BBY-MTD

Processing pair BBY-MCHP

Processing pair BBY-MCO

Processing pair BBY-MSCI

Processing pair BBY-NDAQ

Processing pair BBY-NFLX

Processing pair BBY-NEE

Processing pair BBY-NKE

Processing pair BBY-NDSN

Processing pair BBY-NSC

Processing pair BBY-PNC

Processing pair BBY-POOL

Processing pair BBY-PLD

Processing pair BBY-DGX

Processing pair BBY-RMD

Processing pair BBY-RVTY

Processing pair BBY-ROK

Processing pair BBY-ROL

Processing pair BBY-ROP

Processing pair BBY-ROST

Processing pair BBY-SPGI

Processing pair BBY-CRM

Processing pair BBY-SBAC

Processing pair BBY-SHW

Processing pair BBY-SWKS

Processing pair BBY-SBUX

Processing pair BBY-STE

Processing pair BBY-SYK

Processing pair BBY-SYY

Processing pair BBY-TROW

Processing pair BBY-TTWO

Processing pair BBY-TEL

Processing pair BBY-TDY

Processing pair BBY-TER

Processing pair BBY-TXN

Processing pair BBY-TMO

Processing pair BBY-TYL

Processing pair BBY-UNP

Processing pair BBY-VRSN

Processing pair BBY-V

Processing pair BBY-WAT

Processing pair BBY-WEC

Processing pair BBY-WST

Processing pair BBY-WTW

Processing pair BBY-WDAY
ADF test for BBY-WDAY failed with LinAlgError

Processing pair BBY-XEL

Processing pair BBY-XYL
ADF test for BBY-XYL failed with LinAlgError

Processing pair BBY-ZBRA

Processing pair BBY-ZTS
ADF test for BBY-ZTS failed with LinAlgError

Processing pair TECH-BLK

Processing pair TECH-CPT

Processing pair TECH-CBRE

Processing pair TECH-CE

Processing pair TECH-CRL

Processing pair TECH-SCHW

Processing pair TECH-COO

Processing pair TECH-CSGP

Processing pair TECH-CCI

Processing pair TECH-CSX

Processing pair TECH-DHR

Processing pair TECH-DE

Processing pair TECH-DXCM

Processing pair TECH-DG

Processing pair TECH-DPZ

Processing pair TECH-DOV

Processing pair TECH-EBAY

Processing pair TECH-EW

Processing pair TECH-EPAM
ADF test for TECH-EPAM failed with LinAlgError

Processing pair TECH-EFX

Processing pair TECH-EQIX

Processing pair TECH-EL

Processing pair TECH-EXPD

Processing pair TECH-EXR

Processing pair TECH-FDS

Processing pair TECH-GEN

Processing pair TECH-GNRC
ADF test for TECH-GNRC failed with LinAlgError

Processing pair TECH-HOLX

Processing pair TECH-HD

Processing pair TECH-HON

Processing pair TECH-IEX

Processing pair TECH-IDXX

Processing pair TECH-PODD

Processing pair TECH-ICE

Processing pair TECH-INTU

Processing pair TECH-IQV
ADF test for TECH-IQV failed with LinAlgError

Processing pair TECH-JBHT

Processing pair TECH-J

Processing pair TECH-KDP

Processing pair TECH-KEYS
ADF test for TECH-KEYS failed with LinAlgError

Processing pair TECH-LHX

Processing pair TECH-LH

Processing pair TECH-LYV

Processing pair TECH-LOW

Processing pair TECH-LULU

Processing pair TECH-MKC

Processing pair TECH-MTD

Processing pair TECH-MCHP

Processing pair TECH-MAA

Processing pair TECH-MRNA
ADF test for TECH-MRNA failed with LinAlgError

Processing pair TECH-MOH

Processing pair TECH-MCO

Processing pair TECH-MSCI

Processing pair TECH-NDAQ

Processing pair TECH-NEE

Processing pair TECH-NKE

Processing pair TECH-NDSN

Processing pair TECH-NSC

Processing pair TECH-PAYX

Processing pair TECH-PAYC
ADF test for TECH-PAYC failed with LinAlgError

Processing pair TECH-PNC

Processing pair TECH-POOL

Processing pair TECH-PLD

Processing pair TECH-DGX

Processing pair TECH-RMD

Processing pair TECH-RVTY

Processing pair TECH-ROK

Processing pair TECH-ROP

Processing pair TECH-SPGI

Processing pair TECH-CRM

Processing pair TECH-SBAC

Processing pair TECH-SHW

Processing pair TECH-SBUX

Processing pair TECH-STE

Processing pair TECH-TROW

Processing pair TECH-TGT

Processing pair TECH-TEL

Processing pair TECH-TDY

Processing pair TECH-TER

Processing pair TECH-TSLA
ADF test for TECH-TSLA failed with LinAlgError

Processing pair TECH-TXN

Processing pair TECH-TMO

Processing pair TECH-TRMB

Processing pair TECH-TYL

Processing pair TECH-UNP

Processing pair TECH-UPS

Processing pair TECH-VRSN

Processing pair TECH-WAT

Processing pair TECH-WST

Processing pair TECH-XEL

Processing pair TECH-YUM

Processing pair TECH-ZBRA

Processing pair TECH-ZTS
ADF test for TECH-ZTS failed with LinAlgError

Processing pair BLK-BX

Processing pair BLK-BKNG

Processing pair BLK-BSX

Processing pair BLK-BR

Processing pair BLK-BRO

Processing pair BLK-CDNS

Processing pair BLK-CPT

Processing pair BLK-COF

Processing pair BLK-CAT

Processing pair BLK-CBOE
ADF test for BLK-CBOE failed with LinAlgError

Processing pair BLK-CBRE

Processing pair BLK-CDW
ADF test for BLK-CDW failed with LinAlgError

Processing pair BLK-CE

Processing pair BLK-CRL

Processing pair BLK-SCHW

Processing pair BLK-CB

Processing pair BLK-CHD

Processing pair BLK-CI

Processing pair BLK-CINF

Processing pair BLK-CTAS

Processing pair BLK-CSCO

Processing pair BLK-CME

Processing pair BLK-CMS

Processing pair BLK-KO

Processing pair BLK-CL

Processing pair BLK-STZ

Processing pair BLK-COO

Processing pair BLK-CPRT

Processing pair BLK-GLW

Processing pair BLK-CSGP

Processing pair BLK-COST

Processing pair BLK-CSX

Processing pair BLK-CMI

Processing pair BLK-DHR

Processing pair BLK-DRI

Processing pair BLK-DE

Processing pair BLK-DXCM

Processing pair BLK-DLR

Processing pair BLK-DFS

Processing pair BLK-DPZ

Processing pair BLK-DOV

Processing pair BLK-DHI

Processing pair BLK-DTE

Processing pair BLK-DUK

Processing pair BLK-EMN

Processing pair BLK-EBAY

Processing pair BLK-ECL

Processing pair BLK-EW

Processing pair BLK-EA

Processing pair BLK-ELV

Processing pair BLK-EMR

Processing pair BLK-ETR

Processing pair BLK-EFX

Processing pair BLK-EQIX

Processing pair BLK-EG

Processing pair BLK-EXPD

Processing pair BLK-EXR

Processing pair BLK-FDS

Processing pair BLK-FAST

Processing pair BLK-FDX

Processing pair BLK-FITB

Processing pair BLK-FI

Processing pair BLK-FTNT

Processing pair BLK-GRMN

Processing pair BLK-IT

Processing pair BLK-GEV
ADF test for BLK-GEV failed with LinAlgError

Processing pair BLK-GEN

Processing pair BLK-GD

Processing pair BLK-GS

Processing pair BLK-HIG

Processing pair BLK-HCA
ADF test for BLK-HCA failed with LinAlgError

Processing pair BLK-HLT
ADF test for BLK-HLT failed with LinAlgError

Processing pair BLK-HOLX

Processing pair BLK-HD

Processing pair BLK-HON

Processing pair BLK-HPQ

Processing pair BLK-HBAN

Processing pair BLK-IEX

Processing pair BLK-IDXX

Processing pair BLK-ITW

Processing pair BLK-PODD

Processing pair BLK-ICE

Processing pair BLK-IPG

Processing pair BLK-INTU

Processing pair BLK-ISRG

Processing pair BLK-IQV
ADF test for BLK-IQV failed with LinAlgError

Processing pair BLK-JBHT

Processing pair BLK-JKHY

Processing pair BLK-J

Processing pair BLK-JNJ

Processing pair BLK-JCI

Processing pair BLK-JPM

Processing pair BLK-KDP

Processing pair BLK-KEYS
ADF test for BLK-KEYS failed with LinAlgError

Processing pair BLK-KKR
ADF test for BLK-KKR failed with LinAlgError

Processing pair BLK-LHX

Processing pair BLK-LH

Processing pair BLK-LRCX

Processing pair BLK-LDOS

Processing pair BLK-LEN

Processing pair BLK-LII

Processing pair BLK-LIN

Processing pair BLK-LYV

Processing pair BLK-LMT

Processing pair BLK-LOW

Processing pair BLK-LULU

Processing pair BLK-MAR

Processing pair BLK-MMC

Processing pair BLK-MLM

Processing pair BLK-MAS

Processing pair BLK-MA

Processing pair BLK-MCD

Processing pair BLK-META
ADF test for BLK-META failed with LinAlgError

Processing pair BLK-MET

Processing pair BLK-MTD

Processing pair BLK-MGM

Processing pair BLK-MCHP

Processing pair BLK-MU

Processing pair BLK-MSFT

Processing pair BLK-MAA

Processing pair BLK-MOH

Processing pair BLK-MDLZ

Processing pair BLK-MPWR

Processing pair BLK-MNST

Processing pair BLK-MCO

Processing pair BLK-MS

Processing pair BLK-MSI

Processing pair BLK-MSCI

Processing pair BLK-NDAQ

Processing pair BLK-NFLX

Processing pair BLK-NEE

Processing pair BLK-NDSN

Processing pair BLK-NSC

Processing pair BLK-NOC

Processing pair BLK-NVR

Processing pair BLK-NXPI
ADF test for BLK-NXPI failed with LinAlgError

Processing pair BLK-ORLY

Processing pair BLK-ODFL

Processing pair BLK-ORCL

Processing pair BLK-PKG

Processing pair BLK-PH

Processing pair BLK-PAYX

Processing pair BLK-PNR

Processing pair BLK-PEP

Processing pair BLK-PNC

Processing pair BLK-POOL

Processing pair BLK-PPG

Processing pair BLK-PFG

Processing pair BLK-PG

Processing pair BLK-PGR

Processing pair BLK-PLD

Processing pair BLK-PRU

Processing pair BLK-PEG

Processing pair BLK-PTC

Processing pair BLK-PSA

Processing pair BLK-QCOM

Processing pair BLK-DGX

Processing pair BLK-RJF

Processing pair BLK-RTX

Processing pair BLK-RF

Processing pair BLK-RSG

Processing pair BLK-RMD

Processing pair BLK-RVTY

Processing pair BLK-ROK

Processing pair BLK-ROL

Processing pair BLK-ROP

Processing pair BLK-ROST

Processing pair BLK-SPGI

Processing pair BLK-CRM

Processing pair BLK-STX

Processing pair BLK-SRE

Processing pair BLK-NOW
ADF test for BLK-NOW failed with LinAlgError

Processing pair BLK-SHW

Processing pair BLK-SNA

Processing pair BLK-SO

Processing pair BLK-SBUX

Processing pair BLK-STE

Processing pair BLK-SYK

Processing pair BLK-SNPS

Processing pair BLK-SYY

Processing pair BLK-TMUS

Processing pair BLK-TROW

Processing pair BLK-TTWO

Processing pair BLK-TGT

Processing pair BLK-TEL

Processing pair BLK-TDY

Processing pair BLK-TER

Processing pair BLK-TXN

Processing pair BLK-TXT

Processing pair BLK-TMO

Processing pair BLK-TJX

Processing pair BLK-TSCO

Processing pair BLK-TT

Processing pair BLK-TDG

Processing pair BLK-TRV

Processing pair BLK-TRMB

Processing pair BLK-TYL

Processing pair BLK-UNP

Processing pair BLK-UPS

Processing pair BLK-URI

Processing pair BLK-UNH

Processing pair BLK-VRSK

Processing pair BLK-V

Processing pair BLK-VMC

Processing pair BLK-WRB

Processing pair BLK-WMT

Processing pair BLK-WM

Processing pair BLK-WAT

Processing pair BLK-WEC

Processing pair BLK-WST

Processing pair BLK-WTW

Processing pair BLK-WDAY
ADF test for BLK-WDAY failed with LinAlgError

Processing pair BLK-XEL

Processing pair BLK-XYL
ADF test for BLK-XYL failed with LinAlgError

Processing pair BLK-YUM

Processing pair BLK-ZBRA

Processing pair BLK-ZTS
ADF test for BLK-ZTS failed with LinAlgError

Processing pair BX-BSX

Processing pair BX-AVGO

Processing pair BX-BR

Processing pair BX-BRO

Processing pair BX-BLDR

Processing pair BX-CDNS

Processing pair BX-COF

Processing pair BX-CARR
ADF test for BX-CARR failed with LinAlgError

Processing pair BX-CAT

Processing pair BX-CBRE

Processing pair BX-CDW
ADF test for BX-CDW failed with LinAlgError

Processing pair BX-COR

Processing pair BX-CMG

Processing pair BX-CB

Processing pair BX-CHD

Processing pair BX-CINF

Processing pair BX-CTAS

Processing pair BX-KO

Processing pair BX-CPRT

Processing pair BX-COST

Processing pair BX-CSX

Processing pair BX-CMI

Processing pair BX-DHR

Processing pair BX-DRI

Processing pair BX-DECK

Processing pair BX-DE

Processing pair BX-DFS

Processing pair BX-DOV

Processing pair BX-DHI

Processing pair BX-DUK

Processing pair BX-ETN

Processing pair BX-ELV

Processing pair BX-EMR

Processing pair BX-ETR

Processing pair BX-EFX

Processing pair BX-EQIX

Processing pair BX-EXPD

Processing pair BX-EXR

Processing pair BX-FDS

Processing pair BX-FAST

Processing pair BX-FITB

Processing pair BX-FTNT

Processing pair BX-GRMN

Processing pair BX-IT

Processing pair BX-GEV
ADF test for BX-GEV failed with LinAlgError

Processing pair BX-GEN

Processing pair BX-GS

Processing pair BX-HIG

Processing pair BX-HCA
ADF test for BX-HCA failed with LinAlgError

Processing pair BX-HLT
ADF test for BX-HLT failed with LinAlgError

Processing pair BX-HOLX

Processing pair BX-HD

Processing pair BX-HPQ

Processing pair BX-HUBB

Processing pair BX-IDXX

Processing pair BX-ITW

Processing pair BX-IR
ADF test for BX-IR failed with LinAlgError

Processing pair BX-ICE

Processing pair BX-IPG

Processing pair BX-INTU

Processing pair BX-ISRG

Processing pair BX-INVH
ADF test for BX-INVH failed with LinAlgError

Processing pair BX-IQV
ADF test for BX-IQV failed with LinAlgError

Processing pair BX-IRM

Processing pair BX-JBHT

Processing pair BX-JBL

Processing pair BX-J

Processing pair BX-JCI

Processing pair BX-JPM

Processing pair BX-KKR
ADF test for BX-KKR failed with LinAlgError

Processing pair BX-KLAC

Processing pair BX-LH

Processing pair BX-LRCX

Processing pair BX-LDOS

Processing pair BX-LEN

Processing pair BX-LII

Processing pair BX-LIN

Processing pair BX-LYV

Processing pair BX-LOW

Processing pair BX-MAR

Processing pair BX-MMC

Processing pair BX-MLM

Processing pair BX-MAS

Processing pair BX-MA

Processing pair BX-MCD

Processing pair BX-MET

Processing pair BX-MTD

Processing pair BX-MCHP

Processing pair BX-MU

Processing pair BX-MSFT

Processing pair BX-MAA

Processing pair BX-MOH

Processing pair BX-MDLZ

Processing pair BX-MPWR

Processing pair BX-MCO

Processing pair BX-MS

Processing pair BX-MSI

Processing pair BX-MSCI

Processing pair BX-NDAQ

Processing pair BX-NTAP

Processing pair BX-NDSN

Processing pair BX-NSC

Processing pair BX-NUE

Processing pair BX-NVR

Processing pair BX-NXPI
ADF test for BX-NXPI failed with LinAlgError

Processing pair BX-ORLY

Processing pair BX-ODFL

Processing pair BX-ON

Processing pair BX-ORCL

Processing pair BX-PCAR

Processing pair BX-PKG

Processing pair BX-PANW
ADF test for BX-PANW failed with LinAlgError

Processing pair BX-PH

Processing pair BX-PAYX

Processing pair BX-PNR

Processing pair BX-PEP

Processing pair BX-POOL

Processing pair BX-PG

Processing pair BX-PGR

Processing pair BX-PLD

Processing pair BX-PEG

Processing pair BX-PTC

Processing pair BX-PSA

Processing pair BX-PHM

Processing pair BX-PWR

Processing pair BX-QCOM

Processing pair BX-DGX

Processing pair BX-RJF

Processing pair BX-RSG

Processing pair BX-RMD

Processing pair BX-ROK

Processing pair BX-ROL

Processing pair BX-ROP

Processing pair BX-SPGI

Processing pair BX-STX

Processing pair BX-NOW
ADF test for BX-NOW failed with LinAlgError

Processing pair BX-SHW

Processing pair BX-SNA

Processing pair BX-SO

Processing pair BX-STLD

Processing pair BX-STE

Processing pair BX-SYK

Processing pair BX-SNPS

Processing pair BX-TMUS

Processing pair BX-TEL

Processing pair BX-TDY

Processing pair BX-TER

Processing pair BX-TSLA
ADF test for BX-TSLA failed with LinAlgError

Processing pair BX-TXN

Processing pair BX-TPL

Processing pair BX-TMO

Processing pair BX-TJX

Processing pair BX-TSCO

Processing pair BX-TT

Processing pair BX-TDG

Processing pair BX-TRV

Processing pair BX-TYL

Processing pair BX-UNP

Processing pair BX-URI

Processing pair BX-UNH

Processing pair BX-VRSK

Processing pair BX-V

Processing pair BX-VMC

Processing pair BX-WRB

Processing pair BX-GWW

Processing pair BX-WMT

Processing pair BX-WM

Processing pair BX-WAT

Processing pair BX-WELL

Processing pair BX-WST

Processing pair BX-WTW

Processing pair BX-XYL
ADF test for BX-XYL failed with LinAlgError

Processing pair BX-YUM

Processing pair BX-ZTS
ADF test for BX-ZTS failed with LinAlgError

Processing pair BK-BKNG

Processing pair BK-BSX

Processing pair BK-COF

Processing pair BK-CARR
ADF test for BK-CARR failed with LinAlgError

Processing pair BK-CBOE
ADF test for BK-CBOE failed with LinAlgError

Processing pair BK-CB

Processing pair BK-GLW

Processing pair BK-DFS

Processing pair BK-FITB

Processing pair BK-GEV
ADF test for BK-GEV failed with LinAlgError

Processing pair BK-GD

Processing pair BK-HIG

Processing pair BK-HBAN

Processing pair BK-JPM

Processing pair BK-LII

Processing pair BK-MTB

Processing pair BK-MAR

Processing pair BK-MAS

Processing pair BK-NI

Processing pair BK-OMC

Processing pair BK-PKG

Processing pair BK-PNC

Processing pair BK-PRU

Processing pair BK-PEG

Processing pair BK-RTX

Processing pair BK-RF

Processing pair BK-STT

Processing pair BK-TXT

Processing pair BK-TRV

Processing pair BK-UHS

Processing pair BK-VMC

Processing pair BKNG-BSX

Processing pair BKNG-AVGO

Processing pair BKNG-BR

Processing pair BKNG-BRO

Processing pair BKNG-CARR
ADF test for BKNG-CARR failed with LinAlgError

Processing pair BKNG-CAT

Processing pair BKNG-CBOE
ADF test for BKNG-CBOE failed with LinAlgError

Processing pair BKNG-COR

Processing pair BKNG-CB

Processing pair BKNG-CHD

Processing pair BKNG-CI

Processing pair BKNG-CINF

Processing pair BKNG-CTAS

Processing pair BKNG-KO

Processing pair BKNG-CL

Processing pair BKNG-ED

Processing pair BKNG-STZ

Processing pair BKNG-CPRT

Processing pair BKNG-COST

Processing pair BKNG-CMI

Processing pair BKNG-DRI

Processing pair BKNG-DELL
ADF test for BKNG-DELL failed with LinAlgError

Processing pair BKNG-DFS

Processing pair BKNG-DOV

Processing pair BKNG-DHI

Processing pair BKNG-DUK

Processing pair BKNG-ETN

Processing pair BKNG-ECL

Processing pair BKNG-EIX

Processing pair BKNG-EMR

Processing pair BKNG-EFX

Processing pair BKNG-ERIE

Processing pair BKNG-EG

Processing pair BKNG-FI

Processing pair BKNG-IT

Processing pair BKNG-GEV
ADF test for BKNG-GEV failed with LinAlgError

Processing pair BKNG-GD

Processing pair BKNG-GS

Processing pair BKNG-HIG

Processing pair BKNG-HCA
ADF test for BKNG-HCA failed with LinAlgError

Processing pair BKNG-HLT
ADF test for BKNG-HLT failed with LinAlgError

Processing pair BKNG-HD

Processing pair BKNG-HON

Processing pair BKNG-HWM
ADF test for BKNG-HWM failed with LinAlgError

Processing pair BKNG-HUBB

Processing pair BKNG-ITW

Processing pair BKNG-IR
ADF test for BKNG-IR failed with LinAlgError

Processing pair BKNG-ICE

Processing pair BKNG-ISRG

Processing pair BKNG-JPM

Processing pair BKNG-KKR
ADF test for BKNG-KKR failed with LinAlgError

Processing pair BKNG-LDOS

Processing pair BKNG-LEN

Processing pair BKNG-LII

Processing pair BKNG-LIN

Processing pair BKNG-LMT

Processing pair BKNG-L

Processing pair BKNG-LOW

Processing pair BKNG-MAR

Processing pair BKNG-MMC

Processing pair BKNG-MLM

Processing pair BKNG-MAS

Processing pair BKNG-MA

Processing pair BKNG-MCD

Processing pair BKNG-MRK

Processing pair BKNG-META
ADF test for BKNG-META failed with LinAlgError

Processing pair BKNG-MET

Processing pair BKNG-MCHP

Processing pair BKNG-MU

Processing pair BKNG-MDLZ

Processing pair BKNG-MNST

Processing pair BKNG-MCO

Processing pair BKNG-MSI

Processing pair BKNG-NI

Processing pair BKNG-NOC

Processing pair BKNG-NVR

Processing pair BKNG-NXPI
ADF test for BKNG-NXPI failed with LinAlgError

Processing pair BKNG-ORLY

Processing pair BKNG-OMC

Processing pair BKNG-OKE

Processing pair BKNG-ORCL

Processing pair BKNG-PCAR

Processing pair BKNG-PKG

Processing pair BKNG-PANW
ADF test for BKNG-PANW failed with LinAlgError

Processing pair BKNG-PH

Processing pair BKNG-PAYX

Processing pair BKNG-PNR

Processing pair BKNG-PM

Processing pair BKNG-PSX
ADF test for BKNG-PSX failed with LinAlgError

Processing pair BKNG-PFG

Processing pair BKNG-PGR

Processing pair BKNG-PRU

Processing pair BKNG-PEG

Processing pair BKNG-PTC

Processing pair BKNG-PHM

Processing pair BKNG-RJF

Processing pair BKNG-RTX

Processing pair BKNG-RSG

Processing pair BKNG-ROL

Processing pair BKNG-ROP

Processing pair BKNG-ROST

Processing pair BKNG-SRE

Processing pair BKNG-SHW

Processing pair BKNG-SNA

Processing pair BKNG-SO

Processing pair BKNG-SYK

Processing pair BKNG-TMUS

Processing pair BKNG-TEL

Processing pair BKNG-TXT

Processing pair BKNG-TJX

Processing pair BKNG-TT

Processing pair BKNG-TDG

Processing pair BKNG-TRV

Processing pair BKNG-URI

Processing pair BKNG-VLO

Processing pair BKNG-VRSK

Processing pair BKNG-VRTX

Processing pair BKNG-V

Processing pair BKNG-VMC

Processing pair BKNG-WRB

Processing pair BKNG-GWW

Processing pair BKNG-WAB

Processing pair BKNG-WMT

Processing pair BKNG-WM

Processing pair BKNG-WELL

Processing pair BKNG-WTW

Processing pair BKNG-XYL
ADF test for BKNG-XYL failed with LinAlgError

Processing pair BKNG-YUM

Processing pair BSX-AVGO

Processing pair BSX-BR

Processing pair BSX-BRO

Processing pair BSX-CDNS

Processing pair BSX-CAT

Processing pair BSX-CBOE
ADF test for BSX-CBOE failed with LinAlgError

Processing pair BSX-CBRE

Processing pair BSX-CDW
ADF test for BSX-CDW failed with LinAlgError

Processing pair BSX-COR

Processing pair BSX-CB

Processing pair BSX-CHD

Processing pair BSX-CI

Processing pair BSX-CINF

Processing pair BSX-CTAS

Processing pair BSX-CSCO

Processing pair BSX-CME

Processing pair BSX-CMS

Processing pair BSX-KO

Processing pair BSX-CL

Processing pair BSX-ED

Processing pair BSX-STZ

Processing pair BSX-CEG
ADF test for BSX-CEG failed with LinAlgError

Processing pair BSX-COO

Processing pair BSX-CPRT

Processing pair BSX-GLW

Processing pair BSX-COST

Processing pair BSX-CSX

Processing pair BSX-CMI

Processing pair BSX-DRI

Processing pair BSX-DELL
ADF test for BSX-DELL failed with LinAlgError

Processing pair BSX-DLR

Processing pair BSX-DFS

Processing pair BSX-DPZ

Processing pair BSX-DOV

Processing pair BSX-DHI

Processing pair BSX-DTE

Processing pair BSX-DUK

Processing pair BSX-ETN

Processing pair BSX-ECL

Processing pair BSX-EIX

Processing pair BSX-ELV

Processing pair BSX-EMR

Processing pair BSX-ETR

Processing pair BSX-EFX

Processing pair BSX-EQIX

Processing pair BSX-ERIE

Processing pair BSX-EG

Processing pair BSX-EXPD

Processing pair BSX-FDS

Processing pair BSX-FICO

Processing pair BSX-FAST

Processing pair BSX-FI

Processing pair BSX-GRMN

Processing pair BSX-IT

Processing pair BSX-GEV
ADF test for BSX-GEV failed with LinAlgError

Processing pair BSX-GD

Processing pair BSX-GDDY
ADF test for BSX-GDDY failed with LinAlgError

Processing pair BSX-GS

Processing pair BSX-HIG

Processing pair BSX-HCA
ADF test for BSX-HCA failed with LinAlgError

Processing pair BSX-HLT
ADF test for BSX-HLT failed with LinAlgError

Processing pair BSX-HOLX

Processing pair BSX-HD

Processing pair BSX-HON

Processing pair BSX-HWM
ADF test for BSX-HWM failed with LinAlgError

Processing pair BSX-HUBB

Processing pair BSX-IEX

Processing pair BSX-ITW

Processing pair BSX-IR
ADF test for BSX-IR failed with LinAlgError

Processing pair BSX-ICE

Processing pair BSX-INTU

Processing pair BSX-ISRG

Processing pair BSX-JKHY

Processing pair BSX-J

Processing pair BSX-JNJ

Processing pair BSX-JPM

Processing pair BSX-KDP

Processing pair BSX-KKR
ADF test for BSX-KKR failed with LinAlgError

Processing pair BSX-KLAC

Processing pair BSX-LHX

Processing pair BSX-LDOS

Processing pair BSX-LEN

Processing pair BSX-LII

Processing pair BSX-LIN

Processing pair BSX-LYV

Processing pair BSX-LMT

Processing pair BSX-LOW

Processing pair BSX-MAR

Processing pair BSX-MMC

Processing pair BSX-MLM

Processing pair BSX-MAS

Processing pair BSX-MA

Processing pair BSX-MCD

Processing pair BSX-MRK

Processing pair BSX-META
ADF test for BSX-META failed with LinAlgError

Processing pair BSX-MET

Processing pair BSX-MCHP

Processing pair BSX-MU

Processing pair BSX-MSFT

Processing pair BSX-MDLZ

Processing pair BSX-MPWR

Processing pair BSX-MNST

Processing pair BSX-MCO

Processing pair BSX-MS

Processing pair BSX-MSI

Processing pair BSX-NDAQ

Processing pair BSX-NFLX

Processing pair BSX-NI

Processing pair BSX-NDSN

Processing pair BSX-NOC

Processing pair BSX-NVR

Processing pair BSX-NXPI
ADF test for BSX-NXPI failed with LinAlgError

Processing pair BSX-ORLY

Processing pair BSX-ODFL

Processing pair BSX-OKE

Processing pair BSX-ORCL

Processing pair BSX-PCAR

Processing pair BSX-PKG

Processing pair BSX-PANW
ADF test for BSX-PANW failed with LinAlgError

Processing pair BSX-PH

Processing pair BSX-PAYX

Processing pair BSX-PEP

Processing pair BSX-PFG

Processing pair BSX-PG

Processing pair BSX-PGR

Processing pair BSX-PRU

Processing pair BSX-PEG

Processing pair BSX-PTC

Processing pair BSX-PHM

Processing pair BSX-DGX

Processing pair BSX-RJF

Processing pair BSX-RTX

Processing pair BSX-RSG

Processing pair BSX-ROL

Processing pair BSX-ROP

Processing pair BSX-ROST

Processing pair BSX-SPGI

Processing pair BSX-CRM

Processing pair BSX-SRE

Processing pair BSX-NOW
ADF test for BSX-NOW failed with LinAlgError

Processing pair BSX-SHW

Processing pair BSX-SNA

Processing pair BSX-SO

Processing pair BSX-STE

Processing pair BSX-SYK

Processing pair BSX-SNPS

Processing pair BSX-SYY

Processing pair BSX-TMUS

Processing pair BSX-TEL

Processing pair BSX-TDY

Processing pair BSX-TXN

Processing pair BSX-TJX

Processing pair BSX-TSCO

Processing pair BSX-TT

Processing pair BSX-TDG

Processing pair BSX-TRV

Processing pair BSX-TYL

Processing pair BSX-UNP

Processing pair BSX-URI

Processing pair BSX-UNH

Processing pair BSX-VLO

Processing pair BSX-VLTO
ADF test for BSX-VLTO failed with LinAlgError

Processing pair BSX-VRSK

Processing pair BSX-VRTX

Processing pair BSX-V

Processing pair BSX-VMC

Processing pair BSX-WRB

Processing pair BSX-GWW

Processing pair BSX-WMT

Processing pair BSX-WM

Processing pair BSX-WAT

Processing pair BSX-WEC

Processing pair BSX-WELL

Processing pair BSX-WTW

Processing pair BSX-XYL
ADF test for BSX-XYL failed with LinAlgError

Processing pair BSX-YUM

Processing pair BMY-CAG

Processing pair BMY-CVS

Processing pair BMY-HSIC

Processing pair BMY-SJM

Processing pair AVGO-BRO

Processing pair AVGO-BLDR

Processing pair AVGO-CDNS

Processing pair AVGO-CAT

Processing pair AVGO-COR

Processing pair AVGO-CMG

Processing pair AVGO-CB

Processing pair AVGO-CTAS

Processing pair AVGO-CEG
ADF test for AVGO-CEG failed with LinAlgError

Processing pair AVGO-CPRT

Processing pair AVGO-COST

Processing pair AVGO-DECK

Processing pair AVGO-DELL
ADF test for AVGO-DELL failed with LinAlgError

Processing pair AVGO-DHI

Processing pair AVGO-ETN

Processing pair AVGO-ERIE

Processing pair AVGO-FICO

Processing pair AVGO-FAST

Processing pair AVGO-IT

Processing pair AVGO-GS

Processing pair AVGO-HIG

Processing pair AVGO-HCA
ADF test for AVGO-HCA failed with LinAlgError

Processing pair AVGO-HLT
ADF test for AVGO-HLT failed with LinAlgError

Processing pair AVGO-HWM
ADF test for AVGO-HWM failed with LinAlgError

Processing pair AVGO-HUBB

Processing pair AVGO-IR
ADF test for AVGO-IR failed with LinAlgError

Processing pair AVGO-ISRG

Processing pair AVGO-IRM

Processing pair AVGO-JBL

Processing pair AVGO-JPM

Processing pair AVGO-KKR
ADF test for AVGO-KKR failed with LinAlgError

Processing pair AVGO-KLAC

Processing pair AVGO-LRCX

Processing pair AVGO-LEN

Processing pair AVGO-LII

Processing pair AVGO-LLY

Processing pair AVGO-LIN

Processing pair AVGO-L

Processing pair AVGO-MPC
ADF test for AVGO-MPC failed with LinAlgError

Processing pair AVGO-MAR

Processing pair AVGO-MMC

Processing pair AVGO-MLM

Processing pair AVGO-MCK

Processing pair AVGO-META
ADF test for AVGO-META failed with LinAlgError

Processing pair AVGO-MSFT

Processing pair AVGO-MPWR

Processing pair AVGO-MSI

Processing pair AVGO-NTAP

Processing pair AVGO-NRG

Processing pair AVGO-NVDA

Processing pair AVGO-NVR

Processing pair AVGO-ORLY

Processing pair AVGO-ODFL

Processing pair AVGO-ORCL

Processing pair AVGO-PCAR

Processing pair AVGO-PKG

Processing pair AVGO-PANW
ADF test for AVGO-PANW failed with LinAlgError

Processing pair AVGO-PH

Processing pair AVGO-PGR

Processing pair AVGO-PHM

Processing pair AVGO-PWR

Processing pair AVGO-RSG

Processing pair AVGO-STLD

Processing pair AVGO-SNPS

Processing pair AVGO-TJX

Processing pair AVGO-TSCO

Processing pair AVGO-TT

Processing pair AVGO-TDG

Processing pair AVGO-URI

Processing pair AVGO-VLTO
ADF test for AVGO-VLTO failed with LinAlgError

Processing pair AVGO-VRTX

Processing pair AVGO-VMC

Processing pair AVGO-WRB

Processing pair AVGO-GWW

Processing pair AVGO-WMT

Processing pair AVGO-WM

Processing pair BR-BRO

Processing pair BR-CHRW

Processing pair BR-CDNS

Processing pair BR-CPT

Processing pair BR-COF

Processing pair BR-CARR
ADF test for BR-CARR failed with LinAlgError

Processing pair BR-CAT

Processing pair BR-CBOE
ADF test for BR-CBOE failed with LinAlgError

Processing pair BR-CBRE

Processing pair BR-CDW
ADF test for BR-CDW failed with LinAlgError

Processing pair BR-CE

Processing pair BR-COR

Processing pair BR-CNC

Processing pair BR-SCHW

Processing pair BR-CB

Processing pair BR-CHD

Processing pair BR-CI

Processing pair BR-CINF

Processing pair BR-CTAS

Processing pair BR-CSCO

Processing pair BR-CME

Processing pair BR-CMS

Processing pair BR-KO

Processing pair BR-CL

Processing pair BR-ED

Processing pair BR-STZ

Processing pair BR-COO

Processing pair BR-CPRT

Processing pair BR-GLW

Processing pair BR-CSGP

Processing pair BR-COST

Processing pair BR-CSX

Processing pair BR-CMI

Processing pair BR-DHR

Processing pair BR-DRI

Processing pair BR-DE

Processing pair BR-DLR

Processing pair BR-DFS

Processing pair BR-DPZ

Processing pair BR-DOV

Processing pair BR-DHI

Processing pair BR-DTE

Processing pair BR-DUK

Processing pair BR-EBAY

Processing pair BR-ECL

Processing pair BR-EW

Processing pair BR-EA

Processing pair BR-ELV

Processing pair BR-EMR

Processing pair BR-ETR

Processing pair BR-EFX

Processing pair BR-EQIX

Processing pair BR-ERIE

Processing pair BR-EG

Processing pair BR-EVRG

Processing pair BR-EXC

Processing pair BR-EXPD

Processing pair BR-EXR

Processing pair BR-FDS

Processing pair BR-FAST

Processing pair BR-FITB

Processing pair BR-FI

Processing pair BR-FTNT

Processing pair BR-GRMN

Processing pair BR-IT

Processing pair BR-GEN

Processing pair BR-GD

Processing pair BR-GL

Processing pair BR-GDDY
ADF test for BR-GDDY failed with LinAlgError

Processing pair BR-GS

Processing pair BR-HIG

Processing pair BR-HCA
ADF test for BR-HCA failed with LinAlgError

Processing pair BR-HSY

Processing pair BR-HLT
ADF test for BR-HLT failed with LinAlgError

Processing pair BR-HOLX

Processing pair BR-HD

Processing pair BR-HON

Processing pair BR-HPQ

Processing pair BR-HUM

Processing pair BR-IEX

Processing pair BR-IDXX

Processing pair BR-ITW

Processing pair BR-IR
ADF test for BR-IR failed with LinAlgError

Processing pair BR-ICE

Processing pair BR-IPG

Processing pair BR-INTU

Processing pair BR-ISRG

Processing pair BR-IQV
ADF test for BR-IQV failed with LinAlgError

Processing pair BR-JBHT

Processing pair BR-JKHY

Processing pair BR-J

Processing pair BR-JNJ

Processing pair BR-JCI

Processing pair BR-JPM

Processing pair BR-KDP

Processing pair BR-KLAC

Processing pair BR-LHX

Processing pair BR-LH

Processing pair BR-LRCX

Processing pair BR-LDOS

Processing pair BR-LEN

Processing pair BR-LII

Processing pair BR-LIN

Processing pair BR-LYV

Processing pair BR-LMT

Processing pair BR-LOW

Processing pair BR-LULU

Processing pair BR-MAR

Processing pair BR-MMC

Processing pair BR-MLM

Processing pair BR-MAS

Processing pair BR-MA

Processing pair BR-MKC

Processing pair BR-MCD

Processing pair BR-MRK

Processing pair BR-META
ADF test for BR-META failed with LinAlgError

Processing pair BR-MET

Processing pair BR-MTD

Processing pair BR-MCHP

Processing pair BR-MU

Processing pair BR-MSFT

Processing pair BR-MAA

Processing pair BR-MOH

Processing pair BR-MDLZ

Processing pair BR-MPWR

Processing pair BR-MNST

Processing pair BR-MCO

Processing pair BR-MS

Processing pair BR-MSI

Processing pair BR-MSCI

Processing pair BR-NDAQ

Processing pair BR-NFLX

Processing pair BR-NEE

Processing pair BR-NI

Processing pair BR-NDSN

Processing pair BR-NSC

Processing pair BR-NOC

Processing pair BR-NVR

Processing pair BR-NXPI
ADF test for BR-NXPI failed with LinAlgError

Processing pair BR-ORLY

Processing pair BR-ODFL

Processing pair BR-ORCL

Processing pair BR-PCAR

Processing pair BR-PKG

Processing pair BR-PANW
ADF test for BR-PANW failed with LinAlgError

Processing pair BR-PH

Processing pair BR-PAYX

Processing pair BR-PEP

Processing pair BR-PNC

Processing pair BR-POOL

Processing pair BR-PFG

Processing pair BR-PG

Processing pair BR-PGR

Processing pair BR-PLD

Processing pair BR-PEG

Processing pair BR-PTC

Processing pair BR-PSA

Processing pair BR-QCOM

Processing pair BR-DGX

Processing pair BR-RJF

Processing pair BR-RTX

Processing pair BR-RF

Processing pair BR-RSG

Processing pair BR-RMD

Processing pair BR-ROK

Processing pair BR-ROL

Processing pair BR-ROP

Processing pair BR-ROST

Processing pair BR-SPGI

Processing pair BR-CRM

Processing pair BR-STX

Processing pair BR-SRE

Processing pair BR-NOW
ADF test for BR-NOW failed with LinAlgError

Processing pair BR-SHW

Processing pair BR-SNA

Processing pair BR-SO

Processing pair BR-SBUX

Processing pair BR-STE

Processing pair BR-SYK

Processing pair BR-SNPS

Processing pair BR-SYY

Processing pair BR-TMUS

Processing pair BR-TTWO

Processing pair BR-TEL

Processing pair BR-TDY

Processing pair BR-TER

Processing pair BR-TXN

Processing pair BR-TXT

Processing pair BR-TMO

Processing pair BR-TJX

Processing pair BR-TSCO

Processing pair BR-TT

Processing pair BR-TDG

Processing pair BR-TRV

Processing pair BR-TYL

Processing pair BR-ULTA

Processing pair BR-UNP

Processing pair BR-URI

Processing pair BR-UNH

Processing pair BR-VRSN

Processing pair BR-VRSK

Processing pair BR-VRTX

Processing pair BR-V

Processing pair BR-VMC

Processing pair BR-WRB

Processing pair BR-WMT

Processing pair BR-WM

Processing pair BR-WAT

Processing pair BR-WEC

Processing pair BR-WELL

Processing pair BR-WST

Processing pair BR-WTW

Processing pair BR-WDAY
ADF test for BR-WDAY failed with LinAlgError

Processing pair BR-XEL

Processing pair BR-XYL
ADF test for BR-XYL failed with LinAlgError

Processing pair BR-YUM

Processing pair BR-ZTS
ADF test for BR-ZTS failed with LinAlgError

Processing pair BRO-BLDR

Processing pair BRO-CDNS

Processing pair BRO-CARR
ADF test for BRO-CARR failed with LinAlgError

Processing pair BRO-CAT

Processing pair BRO-CBOE
ADF test for BRO-CBOE failed with LinAlgError

Processing pair BRO-CBRE

Processing pair BRO-CDW
ADF test for BRO-CDW failed with LinAlgError

Processing pair BRO-COR

Processing pair BRO-CMG

Processing pair BRO-CB

Processing pair BRO-CHD

Processing pair BRO-CI

Processing pair BRO-CINF

Processing pair BRO-CTAS

Processing pair BRO-CME

Processing pair BRO-KO

Processing pair BRO-ED

Processing pair BRO-CEG
ADF test for BRO-CEG failed with LinAlgError

Processing pair BRO-CPRT

Processing pair BRO-COST

Processing pair BRO-CSX

Processing pair BRO-CMI

Processing pair BRO-DHR

Processing pair BRO-DRI

Processing pair BRO-DECK

Processing pair BRO-DE

Processing pair BRO-DELL
ADF test for BRO-DELL failed with LinAlgError

Processing pair BRO-DFS

Processing pair BRO-DPZ

Processing pair BRO-DOV

Processing pair BRO-DHI

Processing pair BRO-DUK

Processing pair BRO-ETN

Processing pair BRO-ELV

Processing pair BRO-EMR

Processing pair BRO-ETR

Processing pair BRO-EFX

Processing pair BRO-EQIX

Processing pair BRO-ERIE

Processing pair BRO-EG

Processing pair BRO-EXC

Processing pair BRO-EXPD

Processing pair BRO-EXR

Processing pair BRO-FDS

Processing pair BRO-FICO

Processing pair BRO-FAST

Processing pair BRO-FI

Processing pair BRO-FTNT

Processing pair BRO-GRMN

Processing pair BRO-IT

Processing pair BRO-GEN

Processing pair BRO-GS

Processing pair BRO-HIG

Processing pair BRO-HCA
ADF test for BRO-HCA failed with LinAlgError

Processing pair BRO-HSY

Processing pair BRO-HLT
ADF test for BRO-HLT failed with LinAlgError

Processing pair BRO-HOLX

Processing pair BRO-HD

Processing pair BRO-HON

Processing pair BRO-HPQ

Processing pair BRO-HUBB

Processing pair BRO-IEX

Processing pair BRO-IDXX

Processing pair BRO-ITW

Processing pair BRO-IR
ADF test for BRO-IR failed with LinAlgError

Processing pair BRO-ICE

Processing pair BRO-INTU

Processing pair BRO-ISRG

Processing pair BRO-IQV
ADF test for BRO-IQV failed with LinAlgError

Processing pair BRO-IRM

Processing pair BRO-JBHT

Processing pair BRO-JBL

Processing pair BRO-J

Processing pair BRO-JCI

Processing pair BRO-JPM

Processing pair BRO-KDP

Processing pair BRO-KKR
ADF test for BRO-KKR failed with LinAlgError

Processing pair BRO-KLAC

Processing pair BRO-LHX

Processing pair BRO-LH

Processing pair BRO-LRCX

Processing pair BRO-LDOS

Processing pair BRO-LEN

Processing pair BRO-LII

Processing pair BRO-LLY

Processing pair BRO-LIN

Processing pair BRO-LYV

Processing pair BRO-LMT

Processing pair BRO-L

Processing pair BRO-LOW

Processing pair BRO-MAR

Processing pair BRO-MMC

Processing pair BRO-MLM

Processing pair BRO-MAS

Processing pair BRO-MA

Processing pair BRO-MCD

Processing pair BRO-MRK

Processing pair BRO-MET

Processing pair BRO-MTD

Processing pair BRO-MCHP

Processing pair BRO-MU

Processing pair BRO-MSFT

Processing pair BRO-MOH

Processing pair BRO-MDLZ

Processing pair BRO-MPWR

Processing pair BRO-MNST

Processing pair BRO-MCO

Processing pair BRO-MS

Processing pair BRO-MSI

Processing pair BRO-MSCI

Processing pair BRO-NDAQ

Processing pair BRO-NTAP

Processing pair BRO-NEE

Processing pair BRO-NDSN

Processing pair BRO-NSC

Processing pair BRO-NOC

Processing pair BRO-NUE

Processing pair BRO-NVR

Processing pair BRO-NXPI
ADF test for BRO-NXPI failed with LinAlgError

Processing pair BRO-ORLY

Processing pair BRO-ODFL

Processing pair BRO-ON

Processing pair BRO-OKE

Processing pair BRO-ORCL

Processing pair BRO-PCAR

Processing pair BRO-PKG

Processing pair BRO-PANW
ADF test for BRO-PANW failed with LinAlgError

Processing pair BRO-PH

Processing pair BRO-PAYX

Processing pair BRO-PNR

Processing pair BRO-PEP

Processing pair BRO-POOL

Processing pair BRO-PG

Processing pair BRO-PGR

Processing pair BRO-PLD

Processing pair BRO-PEG

Processing pair BRO-PTC

Processing pair BRO-PSA

Processing pair BRO-PHM

Processing pair BRO-PWR

Processing pair BRO-QCOM

Processing pair BRO-DGX

Processing pair BRO-RJF

Processing pair BRO-RTX

Processing pair BRO-RF

Processing pair BRO-RSG

Processing pair BRO-RMD

Processing pair BRO-ROK

Processing pair BRO-ROL

Processing pair BRO-ROP

Processing pair BRO-SPGI

Processing pair BRO-CRM

Processing pair BRO-STX

Processing pair BRO-SRE

Processing pair BRO-NOW
ADF test for BRO-NOW failed with LinAlgError

Processing pair BRO-SHW

Processing pair BRO-SNA

Processing pair BRO-SO

Processing pair BRO-STLD

Processing pair BRO-STE

Processing pair BRO-SYK

Processing pair BRO-SNPS

Processing pair BRO-TMUS

Processing pair BRO-TEL

Processing pair BRO-TDY

Processing pair BRO-TER

Processing pair BRO-TXN

Processing pair BRO-TPL

Processing pair BRO-TMO

Processing pair BRO-TJX

Processing pair BRO-TSCO

Processing pair BRO-TT

Processing pair BRO-TDG

Processing pair BRO-TRV

Processing pair BRO-TYL

Processing pair BRO-UNP

Processing pair BRO-URI

Processing pair BRO-UNH

Processing pair BRO-VLTO
ADF test for BRO-VLTO failed with LinAlgError

Processing pair BRO-VRSK

Processing pair BRO-VRTX

Processing pair BRO-V

Processing pair BRO-VMC

Processing pair BRO-WRB

Processing pair BRO-GWW

Processing pair BRO-WMT

Processing pair BRO-WM

Processing pair BRO-WAT

Processing pair BRO-WELL

Processing pair BRO-WST

Processing pair BRO-WTW

Processing pair BRO-XYL
ADF test for BRO-XYL failed with LinAlgError

Processing pair BRO-YUM

Processing pair BRO-ZTS
ADF test for BRO-ZTS failed with LinAlgError

Processing pair BLDR-CDNS

Processing pair BLDR-CAT

Processing pair BLDR-COR

Processing pair BLDR-CMG

Processing pair BLDR-CTAS

Processing pair BLDR-CPRT

Processing pair BLDR-COST

Processing pair BLDR-DECK

Processing pair BLDR-DELL
ADF test for BLDR-DELL failed with LinAlgError

Processing pair BLDR-DHI

Processing pair BLDR-ETN

Processing pair BLDR-ERIE

Processing pair BLDR-FICO

Processing pair BLDR-FAST

Processing pair BLDR-IT

Processing pair BLDR-HIG

Processing pair BLDR-HCA
ADF test for BLDR-HCA failed with LinAlgError

Processing pair BLDR-HLT
ADF test for BLDR-HLT failed with LinAlgError

Processing pair BLDR-HWM
ADF test for BLDR-HWM failed with LinAlgError

Processing pair BLDR-HUBB

Processing pair BLDR-IR
ADF test for BLDR-IR failed with LinAlgError

Processing pair BLDR-IRM

Processing pair BLDR-JBL

Processing pair BLDR-KKR
ADF test for BLDR-KKR failed with LinAlgError

Processing pair BLDR-KLAC

Processing pair BLDR-LRCX

Processing pair BLDR-LEN

Processing pair BLDR-LLY

Processing pair BLDR-LIN

Processing pair BLDR-L

Processing pair BLDR-MPC
ADF test for BLDR-MPC failed with LinAlgError

Processing pair BLDR-MMC

Processing pair BLDR-MLM

Processing pair BLDR-MCK

Processing pair BLDR-MSFT

Processing pair BLDR-MPWR

Processing pair BLDR-MSI

Processing pair BLDR-NUE

Processing pair BLDR-NVDA

Processing pair BLDR-NVR

Processing pair BLDR-ORLY

Processing pair BLDR-ODFL

Processing pair BLDR-ON

Processing pair BLDR-ORCL

Processing pair BLDR-PCAR

Processing pair BLDR-PANW
ADF test for BLDR-PANW failed with LinAlgError

Processing pair BLDR-PH

Processing pair BLDR-PGR

Processing pair BLDR-PHM

Processing pair BLDR-PWR

Processing pair BLDR-RSG

Processing pair BLDR-STLD

Processing pair BLDR-SNPS

Processing pair BLDR-TJX

Processing pair BLDR-TSCO

Processing pair BLDR-TT

Processing pair BLDR-TDG

Processing pair BLDR-URI

Processing pair BLDR-GWW

Processing pair BG-COP

Processing pair BG-CTVA
ADF test for BG-CTVA failed with LinAlgError

Processing pair BG-NUE

Processing pair CHRW-CNC

Processing pair CHRW-CSCO

Processing pair CHRW-CME

Processing pair CHRW-CMS

Processing pair CHRW-GLW

Processing pair CHRW-CSX

Processing pair CHRW-DHR

Processing pair CHRW-DTE

Processing pair CHRW-DUK

Processing pair CHRW-ELV

Processing pair CHRW-ETR

Processing pair CHRW-EXPD

Processing pair CHRW-EXR

Processing pair CHRW-FDS

Processing pair CHRW-HOLX

Processing pair CHRW-HD

Processing pair CHRW-HON

Processing pair CHRW-HUM

Processing pair CHRW-IEX

Processing pair CHRW-ITW

Processing pair CHRW-JBHT

Processing pair CHRW-JKHY

Processing pair CHRW-JNJ

Processing pair CHRW-KDP

Processing pair CHRW-LHX

Processing pair CHRW-LH

Processing pair CHRW-LYV

Processing pair CHRW-LMT

Processing pair CHRW-LOW

Processing pair CHRW-MCD

Processing pair CHRW-MTD

Processing pair CHRW-MAA

Processing pair CHRW-NDAQ

Processing pair CHRW-NEE

Processing pair CHRW-NDSN

Processing pair CHRW-NSC

Processing pair CHRW-NOC

Processing pair CHRW-PAYX

Processing pair CHRW-PEP

Processing pair CHRW-PLD

Processing pair CHRW-PEG

Processing pair CHRW-DGX

Processing pair CHRW-RF

Processing pair CHRW-RMD

Processing pair CHRW-RVTY

Processing pair CHRW-ROL

Processing pair CHRW-SPGI

Processing pair CHRW-STE

Processing pair CHRW-SYY

Processing pair CHRW-TEL

Processing pair CHRW-TDY

Processing pair CHRW-TXN

Processing pair CHRW-TMO

Processing pair CHRW-UNP

Processing pair CHRW-UNH

Processing pair CHRW-WAT

Processing pair CHRW-WEC

Processing pair CHRW-XEL

Processing pair CHRW-YUM

Processing pair CDNS-CAT

Processing pair CDNS-CBOE
ADF test for CDNS-CBOE failed with LinAlgError

Processing pair CDNS-CBRE

Processing pair CDNS-CDW
ADF test for CDNS-CDW failed with LinAlgError

Processing pair CDNS-COR

Processing pair CDNS-CMG

Processing pair CDNS-CB

Processing pair CDNS-CHD

Processing pair CDNS-CI

Processing pair CDNS-CTAS

Processing pair CDNS-KO

Processing pair CDNS-CPRT

Processing pair CDNS-COST

Processing pair CDNS-CMI

Processing pair CDNS-DHR

Processing pair CDNS-DRI

Processing pair CDNS-DECK

Processing pair CDNS-DE

Processing pair CDNS-DOV

Processing pair CDNS-DHI

Processing pair CDNS-ETN

Processing pair CDNS-ELV

Processing pair CDNS-EMR

Processing pair CDNS-ERIE

Processing pair CDNS-EG

Processing pair CDNS-EXPD

Processing pair CDNS-FDS

Processing pair CDNS-FICO

Processing pair CDNS-FAST

Processing pair CDNS-FTNT

Processing pair CDNS-GRMN

Processing pair CDNS-IT

Processing pair CDNS-GS

Processing pair CDNS-HIG

Processing pair CDNS-HCA
ADF test for CDNS-HCA failed with LinAlgError

Processing pair CDNS-HLT
ADF test for CDNS-HLT failed with LinAlgError

Processing pair CDNS-HD

Processing pair CDNS-HUBB

Processing pair CDNS-ITW

Processing pair CDNS-IR
ADF test for CDNS-IR failed with LinAlgError

Processing pair CDNS-ICE

Processing pair CDNS-INTU

Processing pair CDNS-ISRG

Processing pair CDNS-IRM

Processing pair CDNS-JBHT

Processing pair CDNS-JBL

Processing pair CDNS-J

Processing pair CDNS-JPM

Processing pair CDNS-KKR
ADF test for CDNS-KKR failed with LinAlgError

Processing pair CDNS-KLAC

Processing pair CDNS-LRCX

Processing pair CDNS-LDOS

Processing pair CDNS-LEN

Processing pair CDNS-LII

Processing pair CDNS-LLY

Processing pair CDNS-LIN

Processing pair CDNS-LOW

Processing pair CDNS-MPC
ADF test for CDNS-MPC failed with LinAlgError

Processing pair CDNS-MAR

Processing pair CDNS-MMC

Processing pair CDNS-MLM

Processing pair CDNS-MAS

Processing pair CDNS-MA

Processing pair CDNS-MCD

Processing pair CDNS-MCK

Processing pair CDNS-MRK

Processing pair CDNS-MET

Processing pair CDNS-MCHP

Processing pair CDNS-MSFT

Processing pair CDNS-MOH

Processing pair CDNS-MDLZ

Processing pair CDNS-MPWR

Processing pair CDNS-MCO

Processing pair CDNS-MS

Processing pair CDNS-MSI

Processing pair CDNS-MSCI

Processing pair CDNS-NDAQ

Processing pair CDNS-NDSN

Processing pair CDNS-NUE

Processing pair CDNS-NVR

Processing pair CDNS-NXPI
ADF test for CDNS-NXPI failed with LinAlgError

Processing pair CDNS-ORLY

Processing pair CDNS-ODFL

Processing pair CDNS-ON

Processing pair CDNS-ORCL

Processing pair CDNS-PCAR

Processing pair CDNS-PKG

Processing pair CDNS-PANW
ADF test for CDNS-PANW failed with LinAlgError

Processing pair CDNS-PH

Processing pair CDNS-PAYX

Processing pair CDNS-PEP

Processing pair CDNS-PG

Processing pair CDNS-PGR

Processing pair CDNS-PLD

Processing pair CDNS-PTC

Processing pair CDNS-PHM

Processing pair CDNS-PWR

Processing pair CDNS-QCOM

Processing pair CDNS-RJF

Processing pair CDNS-RSG

Processing pair CDNS-ROK

Processing pair CDNS-ROL

Processing pair CDNS-ROP

Processing pair CDNS-SPGI

Processing pair CDNS-NOW
ADF test for CDNS-NOW failed with LinAlgError

Processing pair CDNS-SHW

Processing pair CDNS-SNA

Processing pair CDNS-SO

Processing pair CDNS-STLD

Processing pair CDNS-STE

Processing pair CDNS-SYK

Processing pair CDNS-SNPS

Processing pair CDNS-TMUS

Processing pair CDNS-TEL

Processing pair CDNS-TXN

Processing pair CDNS-TPL

Processing pair CDNS-TMO

Processing pair CDNS-TJX

Processing pair CDNS-TSCO

Processing pair CDNS-TT

Processing pair CDNS-TDG

Processing pair CDNS-TRV

Processing pair CDNS-UNP

Processing pair CDNS-URI

Processing pair CDNS-UNH

Processing pair CDNS-VRSK

Processing pair CDNS-VRTX

Processing pair CDNS-V

Processing pair CDNS-VMC

Processing pair CDNS-WRB

Processing pair CDNS-GWW

Processing pair CDNS-WMT

Processing pair CDNS-WM

Processing pair CDNS-WST

Processing pair CDNS-WTW

Processing pair CDNS-XYL
ADF test for CDNS-XYL failed with LinAlgError

Processing pair CDNS-YUM

Processing pair CZR-CRL
ADF test for CZR-CRL failed with LinAlgError

Processing pair CZR-MDT
ADF test for CZR-MDT failed with LinAlgError

Processing pair CZR-NKE
ADF test for CZR-NKE failed with LinAlgError

Processing pair CZR-TROW
ADF test for CZR-TROW failed with LinAlgError

Processing pair CZR-ZBRA
ADF test for CZR-ZBRA failed with LinAlgError

Processing pair CPT-COF

Processing pair CPT-CBRE

Processing pair CPT-CE

Processing pair CPT-CNC

Processing pair CPT-CRL

Processing pair CPT-SCHW

Processing pair CPT-CHD

Processing pair CPT-CINF

Processing pair CPT-CSCO

Processing pair CPT-CME

Processing pair CPT-CMS

Processing pair CPT-KO

Processing pair CPT-COO

Processing pair CPT-GLW

Processing pair CPT-CCI

Processing pair CPT-CSX

Processing pair CPT-DHR

Processing pair CPT-DLR

Processing pair CPT-DFS

Processing pair CPT-DPZ

Processing pair CPT-DOV

Processing pair CPT-DTE

Processing pair CPT-DUK

Processing pair CPT-EBAY

Processing pair CPT-EW

Processing pair CPT-ELV

Processing pair CPT-ETR

Processing pair CPT-EFX

Processing pair CPT-EQIX

Processing pair CPT-EQR

Processing pair CPT-ESS

Processing pair CPT-EVRG

Processing pair CPT-ES

Processing pair CPT-EXPD

Processing pair CPT-EXR

Processing pair CPT-FDS

Processing pair CPT-FITB

Processing pair CPT-GEN

Processing pair CPT-HOLX

Processing pair CPT-HD

Processing pair CPT-HON

Processing pair CPT-IEX

Processing pair CPT-IDXX

Processing pair CPT-ITW

Processing pair CPT-ICE

Processing pair CPT-IPG

Processing pair CPT-INVH
ADF test for CPT-INVH failed with LinAlgError

Processing pair CPT-IQV
ADF test for CPT-IQV failed with LinAlgError

Processing pair CPT-JBHT

Processing pair CPT-JKHY

Processing pair CPT-JNJ

Processing pair CPT-JCI

Processing pair CPT-KDP

Processing pair CPT-KEYS
ADF test for CPT-KEYS failed with LinAlgError

Processing pair CPT-LHX

Processing pair CPT-LH

Processing pair CPT-LYV

Processing pair CPT-LOW

Processing pair CPT-MKC

Processing pair CPT-MCD

Processing pair CPT-MTD

Processing pair CPT-MAA

Processing pair CPT-MCO

Processing pair CPT-MSCI

Processing pair CPT-NDAQ

Processing pair CPT-NEE

Processing pair CPT-NKE

Processing pair CPT-NDSN

Processing pair CPT-NSC

Processing pair CPT-NTRS

Processing pair CPT-PAYX

Processing pair CPT-PEP

Processing pair CPT-PFE

Processing pair CPT-PNC

Processing pair CPT-POOL

Processing pair CPT-PG

Processing pair CPT-PLD

Processing pair CPT-PEG

Processing pair CPT-PSA

Processing pair CPT-DGX

Processing pair CPT-O

Processing pair CPT-RF

Processing pair CPT-RMD

Processing pair CPT-RVTY

Processing pair CPT-ROK

Processing pair CPT-ROP

Processing pair CPT-SPGI

Processing pair CPT-SBAC

Processing pair CPT-SRE

Processing pair CPT-SHW

Processing pair CPT-SBUX

Processing pair CPT-STE

Processing pair CPT-SYY

Processing pair CPT-TROW

Processing pair CPT-TGT

Processing pair CPT-TEL

Processing pair CPT-TDY

Processing pair CPT-TER

Processing pair CPT-TXN

Processing pair CPT-TMO

Processing pair CPT-TRMB

Processing pair CPT-TYL

Processing pair CPT-UDR

Processing pair CPT-UNP

Processing pair CPT-UPS

Processing pair CPT-UNH

Processing pair CPT-VLTO
ADF test for CPT-VLTO failed with LinAlgError

Processing pair CPT-VRSN

Processing pair CPT-V

Processing pair CPT-WAT

Processing pair CPT-WEC

Processing pair CPT-WST

Processing pair CPT-WTW

Processing pair CPT-XEL

Processing pair CPT-YUM

Processing pair CPT-ZBRA

Processing pair CPT-ZTS
ADF test for CPT-ZTS failed with LinAlgError

Processing pair CPB-CAG

Processing pair CPB-K

Processing pair COF-CBRE

Processing pair COF-CE

Processing pair COF-SCHW

Processing pair COF-CB

Processing pair COF-CINF

Processing pair COF-COO

Processing pair COF-GLW

Processing pair COF-CMI

Processing pair COF-DRI

Processing pair COF-DFS

Processing pair COF-DOV

Processing pair COF-DUK

Processing pair COF-EMN

Processing pair COF-EBAY

Processing pair COF-EMR

Processing pair COF-EFX

Processing pair COF-EXR

Processing pair COF-FITB

Processing pair COF-GRMN

Processing pair COF-GM
ADF test for COF-GM failed with LinAlgError

Processing pair COF-GS

Processing pair COF-HIG

Processing pair COF-HD

Processing pair COF-HON

Processing pair COF-HBAN

Processing pair COF-ITW

Processing pair COF-ICE

Processing pair COF-IPG

Processing pair COF-INTU

Processing pair COF-ISRG

Processing pair COF-JBHT

Processing pair COF-J

Processing pair COF-JCI

Processing pair COF-JPM

Processing pair COF-LH

Processing pair COF-LYV

Processing pair COF-LOW

Processing pair COF-MAR

Processing pair COF-MLM

Processing pair COF-MAS

Processing pair COF-MET

Processing pair COF-MGM

Processing pair COF-MU

Processing pair COF-MCO

Processing pair COF-MS

Processing pair COF-NDAQ

Processing pair COF-NSC

Processing pair COF-NXPI
ADF test for COF-NXPI failed with LinAlgError

Processing pair COF-PKG

Processing pair COF-PAYX

Processing pair COF-PNR

Processing pair COF-PNC

Processing pair COF-PRU

Processing pair COF-PEG

Processing pair COF-PTC

Processing pair COF-PSA

Processing pair COF-RJF

Processing pair COF-RTX

Processing pair COF-RF

Processing pair COF-ROK

Processing pair COF-SPGI

Processing pair COF-STX

Processing pair COF-SHW

Processing pair COF-SNA

Processing pair COF-SYK

Processing pair COF-SYF
ADF test for COF-SYF failed with LinAlgError

Processing pair COF-TEL

Processing pair COF-TXN

Processing pair COF-TXT

Processing pair COF-TRV

Processing pair COF-TYL

Processing pair COF-UNP

Processing pair COF-VMC

Processing pair COF-WAT

Processing pair COF-WTW

Processing pair COF-XYL
ADF test for COF-XYL failed with LinAlgError

Processing pair CAH-COR

Processing pair CAH-MCK

Processing pair CAH-WAB

Processing pair KMX-CHTR
ADF test for KMX-CHTR failed with LinAlgError

Processing pair KMX-CMCSA

Processing pair KMX-CCI

Processing pair KMX-MDT

Processing pair KMX-NKE

Processing pair KMX-SWKS

Processing pair KMX-TROW

Processing pair KMX-TFX

Processing pair KMX-DIS

Processing pair KMX-ZBRA

Processing pair CCL-GEV
ADF test for CCL-GEV failed with LinAlgError

Processing pair CCL-NCLH
ADF test for CCL-NCLH failed with LinAlgError

Processing pair CARR-CAT
ADF test for CARR-CAT failed with LinAlgError

Processing pair CARR-CTAS
ADF test for CARR-CTAS failed with LinAlgError

Processing pair CARR-CEG
ADF test for CARR-CEG failed with LinAlgError

Processing pair CARR-CPRT
ADF test for CARR-CPRT failed with LinAlgError

Processing pair CARR-DOV
ADF test for CARR-DOV failed with LinAlgError

Processing pair CARR-DHI
ADF test for CARR-DHI failed with LinAlgError

Processing pair CARR-ETN
ADF test for CARR-ETN failed with LinAlgError

Processing pair CARR-EMR
ADF test for CARR-EMR failed with LinAlgError

Processing pair CARR-FAST
ADF test for CARR-FAST failed with LinAlgError

Processing pair CARR-IT
ADF test for CARR-IT failed with LinAlgError

Processing pair CARR-GS
ADF test for CARR-GS failed with LinAlgError

Processing pair CARR-HIG
ADF test for CARR-HIG failed with LinAlgError

Processing pair CARR-HCA
ADF test for CARR-HCA failed with LinAlgError

Processing pair CARR-HLT
ADF test for CARR-HLT failed with LinAlgError

Processing pair CARR-HD
ADF test for CARR-HD failed with LinAlgError

Processing pair CARR-ITW
ADF test for CARR-ITW failed with LinAlgError

Processing pair CARR-IR
ADF test for CARR-IR failed with LinAlgError

Processing pair CARR-ICE
ADF test for CARR-ICE failed with LinAlgError

Processing pair CARR-INTU
ADF test for CARR-INTU failed with LinAlgError

Processing pair CARR-ISRG
ADF test for CARR-ISRG failed with LinAlgError

Processing pair CARR-JPM
ADF test for CARR-JPM failed with LinAlgError

Processing pair CARR-KKR
ADF test for CARR-KKR failed with LinAlgError

Processing pair CARR-LEN
ADF test for CARR-LEN failed with LinAlgError

Processing pair CARR-LIN
ADF test for CARR-LIN failed with LinAlgError

Processing pair CARR-LOW
ADF test for CARR-LOW failed with LinAlgError

Processing pair CARR-MLM
ADF test for CARR-MLM failed with LinAlgError

Processing pair CARR-MSFT
ADF test for CARR-MSFT failed with LinAlgError

Processing pair CARR-MPWR
ADF test for CARR-MPWR failed with LinAlgError

Processing pair CARR-MCO
ADF test for CARR-MCO failed with LinAlgError

Processing pair CARR-MSI
ADF test for CARR-MSI failed with LinAlgError

Processing pair CARR-NTAP
ADF test for CARR-NTAP failed with LinAlgError

Processing pair CARR-NVR
ADF test for CARR-NVR failed with LinAlgError

Processing pair CARR-NXPI
ADF test for CARR-NXPI failed with LinAlgError

Processing pair CARR-ORCL
ADF test for CARR-ORCL failed with LinAlgError

Processing pair CARR-OTIS
ADF test for CARR-OTIS failed with LinAlgError

Processing pair CARR-PKG
ADF test for CARR-PKG failed with LinAlgError

Processing pair CARR-PH
ADF test for CARR-PH failed with LinAlgError

Processing pair CARR-PNR
ADF test for CARR-PNR failed with LinAlgError

Processing pair CARR-RL
ADF test for CARR-RL failed with LinAlgError

Processing pair CARR-ROP
ADF test for CARR-ROP failed with LinAlgError

Processing pair CARR-SPGI
ADF test for CARR-SPGI failed with LinAlgError

Processing pair CARR-SHW
ADF test for CARR-SHW failed with LinAlgError

Processing pair CARR-SPG
ADF test for CARR-SPG failed with LinAlgError

Processing pair CARR-SYK
ADF test for CARR-SYK failed with LinAlgError

Processing pair CARR-TJX
ADF test for CARR-TJX failed with LinAlgError

Processing pair CARR-TT
ADF test for CARR-TT failed with LinAlgError

Processing pair CARR-URI
ADF test for CARR-URI failed with LinAlgError

Processing pair CARR-VLTO
ADF test for CARR-VLTO failed with LinAlgError

Processing pair CARR-VMC
ADF test for CARR-VMC failed with LinAlgError

Processing pair CARR-WAB
ADF test for CARR-WAB failed with LinAlgError

Processing pair CARR-WELL
ADF test for CARR-WELL failed with LinAlgError

Processing pair CAT-CBOE
ADF test for CAT-CBOE failed with LinAlgError

Processing pair CAT-CBRE

Processing pair CAT-CDW
ADF test for CAT-CDW failed with LinAlgError

Processing pair CAT-COR

Processing pair CAT-CMG

Processing pair CAT-CB

Processing pair CAT-CI

Processing pair CAT-CTAS

Processing pair CAT-KO

Processing pair CAT-CEG
ADF test for CAT-CEG failed with LinAlgError

Processing pair CAT-CPRT

Processing pair CAT-COST

Processing pair CAT-CMI

Processing pair CAT-DRI

Processing pair CAT-DECK

Processing pair CAT-DE

Processing pair CAT-DELL
ADF test for CAT-DELL failed with LinAlgError

Processing pair CAT-DFS

Processing pair CAT-DOV

Processing pair CAT-DHI

Processing pair CAT-ETN

Processing pair CAT-ELV

Processing pair CAT-EMR

Processing pair CAT-ERIE

Processing pair CAT-EG

Processing pair CAT-EXPD

Processing pair CAT-FDS

Processing pair CAT-FICO

Processing pair CAT-FAST

Processing pair CAT-FI

Processing pair CAT-FTNT

Processing pair CAT-GRMN

Processing pair CAT-IT

Processing pair CAT-GS

Processing pair CAT-HIG

Processing pair CAT-HCA
ADF test for CAT-HCA failed with LinAlgError

Processing pair CAT-HLT
ADF test for CAT-HLT failed with LinAlgError

Processing pair CAT-HD

Processing pair CAT-HWM
ADF test for CAT-HWM failed with LinAlgError

Processing pair CAT-HUBB

Processing pair CAT-ITW

Processing pair CAT-IR
ADF test for CAT-IR failed with LinAlgError

Processing pair CAT-ICE

Processing pair CAT-INTU

Processing pair CAT-ISRG

Processing pair CAT-IRM

Processing pair CAT-JBL

Processing pair CAT-J

Processing pair CAT-JPM

Processing pair CAT-KKR
ADF test for CAT-KKR failed with LinAlgError

Processing pair CAT-KLAC

Processing pair CAT-LRCX

Processing pair CAT-LDOS

Processing pair CAT-LEN

Processing pair CAT-LII

Processing pair CAT-LLY

Processing pair CAT-LIN

Processing pair CAT-L

Processing pair CAT-LOW

Processing pair CAT-MPC
ADF test for CAT-MPC failed with LinAlgError

Processing pair CAT-MAR

Processing pair CAT-MMC

Processing pair CAT-MLM

Processing pair CAT-MAS

Processing pair CAT-MA

Processing pair CAT-MCD

Processing pair CAT-MRK

Processing pair CAT-MET

Processing pair CAT-MCHP

Processing pair CAT-MU

Processing pair CAT-MSFT

Processing pair CAT-MOH

Processing pair CAT-MPWR

Processing pair CAT-MCO

Processing pair CAT-MS

Processing pair CAT-MSI

Processing pair CAT-MSCI

Processing pair CAT-NDAQ

Processing pair CAT-NTAP

Processing pair CAT-NDSN

Processing pair CAT-NRG

Processing pair CAT-NUE

Processing pair CAT-NVR

Processing pair CAT-NXPI
ADF test for CAT-NXPI failed with LinAlgError

Processing pair CAT-ORLY

Processing pair CAT-ODFL

Processing pair CAT-ON

Processing pair CAT-OKE

Processing pair CAT-ORCL

Processing pair CAT-PCAR

Processing pair CAT-PKG

Processing pair CAT-PANW
ADF test for CAT-PANW failed with LinAlgError

Processing pair CAT-PH

Processing pair CAT-PAYX

Processing pair CAT-PNR

Processing pair CAT-PG

Processing pair CAT-PGR

Processing pair CAT-PEG

Processing pair CAT-PTC

Processing pair CAT-PHM

Processing pair CAT-PWR

Processing pair CAT-QCOM

Processing pair CAT-RJF

Processing pair CAT-RSG

Processing pair CAT-ROL

Processing pair CAT-ROP

Processing pair CAT-SPGI

Processing pair CAT-STX

Processing pair CAT-NOW
ADF test for CAT-NOW failed with LinAlgError

Processing pair CAT-SHW

Processing pair CAT-SNA

Processing pair CAT-SO

Processing pair CAT-STLD

Processing pair CAT-SYK

Processing pair CAT-SNPS

Processing pair CAT-TMUS

Processing pair CAT-TEL

Processing pair CAT-TXN

Processing pair CAT-TPL

Processing pair CAT-TJX

Processing pair CAT-TSCO

Processing pair CAT-TT

Processing pair CAT-TDG

Processing pair CAT-TRV

Processing pair CAT-URI

Processing pair CAT-UNH

Processing pair CAT-VLO

Processing pair CAT-VRSK

Processing pair CAT-VRTX

Processing pair CAT-V

Processing pair CAT-VMC

Processing pair CAT-WRB

Processing pair CAT-GWW

Processing pair CAT-WMT

Processing pair CAT-WM

Processing pair CAT-WTW

Processing pair CAT-XYL
ADF test for CAT-XYL failed with LinAlgError

Processing pair CAT-YUM

Processing pair CBOE-CBRE
ADF test for CBOE-CBRE failed with LinAlgError

Processing pair CBOE-CDW
ADF test for CBOE-CDW failed with LinAlgError

Processing pair CBOE-COR
ADF test for CBOE-COR failed with LinAlgError

Processing pair CBOE-CB
ADF test for CBOE-CB failed with LinAlgError

Processing pair CBOE-CHD
ADF test for CBOE-CHD failed with LinAlgError

Processing pair CBOE-CI
ADF test for CBOE-CI failed with LinAlgError

Processing pair CBOE-CINF
ADF test for CBOE-CINF failed with LinAlgError

Processing pair CBOE-CTAS
ADF test for CBOE-CTAS failed with LinAlgError

Processing pair CBOE-CSCO
ADF test for CBOE-CSCO failed with LinAlgError

Processing pair CBOE-CME
ADF test for CBOE-CME failed with LinAlgError

Processing pair CBOE-CMS
ADF test for CBOE-CMS failed with LinAlgError

Processing pair CBOE-KO
ADF test for CBOE-KO failed with LinAlgError

Processing pair CBOE-CL
ADF test for CBOE-CL failed with LinAlgError

Processing pair CBOE-ED
ADF test for CBOE-ED failed with LinAlgError

Processing pair CBOE-STZ
ADF test for CBOE-STZ failed with LinAlgError

Processing pair CBOE-COO
ADF test for CBOE-COO failed with LinAlgError

Processing pair CBOE-CPRT
ADF test for CBOE-CPRT failed with LinAlgError

Processing pair CBOE-COST
ADF test for CBOE-COST failed with LinAlgError

Processing pair CBOE-CSX
ADF test for CBOE-CSX failed with LinAlgError

Processing pair CBOE-CMI
ADF test for CBOE-CMI failed with LinAlgError

Processing pair CBOE-DRI
ADF test for CBOE-DRI failed with LinAlgError

Processing pair CBOE-DFS
ADF test for CBOE-DFS failed with LinAlgError

Processing pair CBOE-DOV
ADF test for CBOE-DOV failed with LinAlgError

Processing pair CBOE-DHI
ADF test for CBOE-DHI failed with LinAlgError

Processing pair CBOE-DTE
ADF test for CBOE-DTE failed with LinAlgError

Processing pair CBOE-DUK
ADF test for CBOE-DUK failed with LinAlgError

Processing pair CBOE-EIX
ADF test for CBOE-EIX failed with LinAlgError

Processing pair CBOE-ELV
ADF test for CBOE-ELV failed with LinAlgError

Processing pair CBOE-EMR
ADF test for CBOE-EMR failed with LinAlgError

Processing pair CBOE-ETR
ADF test for CBOE-ETR failed with LinAlgError

Processing pair CBOE-EFX
ADF test for CBOE-EFX failed with LinAlgError

Processing pair CBOE-EQIX
ADF test for CBOE-EQIX failed with LinAlgError

Processing pair CBOE-ERIE
ADF test for CBOE-ERIE failed with LinAlgError

Processing pair CBOE-EG
ADF test for CBOE-EG failed with LinAlgError

Processing pair CBOE-FDS
ADF test for CBOE-FDS failed with LinAlgError

Processing pair CBOE-FAST
ADF test for CBOE-FAST failed with LinAlgError

Processing pair CBOE-FI
ADF test for CBOE-FI failed with LinAlgError

Processing pair CBOE-IT
ADF test for CBOE-IT failed with LinAlgError

Processing pair CBOE-GD
ADF test for CBOE-GD failed with LinAlgError

Processing pair CBOE-GL
ADF test for CBOE-GL failed with LinAlgError

Processing pair CBOE-GS
ADF test for CBOE-GS failed with LinAlgError

Processing pair CBOE-HIG
ADF test for CBOE-HIG failed with LinAlgError

Processing pair CBOE-HCA
ADF test for CBOE-HCA failed with LinAlgError

Processing pair CBOE-HLT
ADF test for CBOE-HLT failed with LinAlgError

Processing pair CBOE-HD
ADF test for CBOE-HD failed with LinAlgError

Processing pair CBOE-HON
ADF test for CBOE-HON failed with LinAlgError

Processing pair CBOE-HWM
ADF test for CBOE-HWM failed with LinAlgError

Processing pair CBOE-HUBB
ADF test for CBOE-HUBB failed with LinAlgError

Processing pair CBOE-HII
ADF test for CBOE-HII failed with LinAlgError

Processing pair CBOE-IEX
ADF test for CBOE-IEX failed with LinAlgError

Processing pair CBOE-ITW
ADF test for CBOE-ITW failed with LinAlgError

Processing pair CBOE-IR
ADF test for CBOE-IR failed with LinAlgError

Processing pair CBOE-ICE
ADF test for CBOE-ICE failed with LinAlgError

Processing pair CBOE-INTU
ADF test for CBOE-INTU failed with LinAlgError

Processing pair CBOE-ISRG
ADF test for CBOE-ISRG failed with LinAlgError

Processing pair CBOE-JBHT
ADF test for CBOE-JBHT failed with LinAlgError

Processing pair CBOE-JNJ
ADF test for CBOE-JNJ failed with LinAlgError

Processing pair CBOE-JPM
ADF test for CBOE-JPM failed with LinAlgError

Processing pair CBOE-LHX
ADF test for CBOE-LHX failed with LinAlgError

Processing pair CBOE-LDOS
ADF test for CBOE-LDOS failed with LinAlgError

Processing pair CBOE-LEN
ADF test for CBOE-LEN failed with LinAlgError

Processing pair CBOE-LII
ADF test for CBOE-LII failed with LinAlgError

Processing pair CBOE-LIN
ADF test for CBOE-LIN failed with LinAlgError

Processing pair CBOE-LYV
ADF test for CBOE-LYV failed with LinAlgError

Processing pair CBOE-LMT
ADF test for CBOE-LMT failed with LinAlgError

Processing pair CBOE-LOW
ADF test for CBOE-LOW failed with LinAlgError

Processing pair CBOE-MAR
ADF test for CBOE-MAR failed with LinAlgError

Processing pair CBOE-MMC
ADF test for CBOE-MMC failed with LinAlgError

Processing pair CBOE-MLM
ADF test for CBOE-MLM failed with LinAlgError

Processing pair CBOE-MAS
ADF test for CBOE-MAS failed with LinAlgError

Processing pair CBOE-MA
ADF test for CBOE-MA failed with LinAlgError

Processing pair CBOE-MCD
ADF test for CBOE-MCD failed with LinAlgError

Processing pair CBOE-MRK
ADF test for CBOE-MRK failed with LinAlgError

Processing pair CBOE-META
ADF test for CBOE-META failed with LinAlgError

Processing pair CBOE-MET
ADF test for CBOE-MET failed with LinAlgError

Processing pair CBOE-MCHP
ADF test for CBOE-MCHP failed with LinAlgError

Processing pair CBOE-MU
ADF test for CBOE-MU failed with LinAlgError

Processing pair CBOE-MSFT
ADF test for CBOE-MSFT failed with LinAlgError

Processing pair CBOE-MDLZ
ADF test for CBOE-MDLZ failed with LinAlgError

Processing pair CBOE-MNST
ADF test for CBOE-MNST failed with LinAlgError

Processing pair CBOE-MCO
ADF test for CBOE-MCO failed with LinAlgError

Processing pair CBOE-MS
ADF test for CBOE-MS failed with LinAlgError

Processing pair CBOE-MSI
ADF test for CBOE-MSI failed with LinAlgError

Processing pair CBOE-NDAQ
ADF test for CBOE-NDAQ failed with LinAlgError

Processing pair CBOE-NI
ADF test for CBOE-NI failed with LinAlgError

Processing pair CBOE-NDSN
ADF test for CBOE-NDSN failed with LinAlgError

Processing pair CBOE-NOC
ADF test for CBOE-NOC failed with LinAlgError

Processing pair CBOE-NVR
ADF test for CBOE-NVR failed with LinAlgError

Processing pair CBOE-NXPI
ADF test for CBOE-NXPI failed with LinAlgError

Processing pair CBOE-ORLY
ADF test for CBOE-ORLY failed with LinAlgError

Processing pair CBOE-ODFL
ADF test for CBOE-ODFL failed with LinAlgError

Processing pair CBOE-OMC
ADF test for CBOE-OMC failed with LinAlgError

Processing pair CBOE-OKE
ADF test for CBOE-OKE failed with LinAlgError

Processing pair CBOE-ORCL
ADF test for CBOE-ORCL failed with LinAlgError

Processing pair CBOE-PCAR
ADF test for CBOE-PCAR failed with LinAlgError

Processing pair CBOE-PKG
ADF test for CBOE-PKG failed with LinAlgError

Processing pair CBOE-PANW
ADF test for CBOE-PANW failed with LinAlgError

Processing pair CBOE-PH
ADF test for CBOE-PH failed with LinAlgError

Processing pair CBOE-PAYX
ADF test for CBOE-PAYX failed with LinAlgError

Processing pair CBOE-PEP
ADF test for CBOE-PEP failed with LinAlgError

Processing pair CBOE-PM
ADF test for CBOE-PM failed with LinAlgError

Processing pair CBOE-PSX
ADF test for CBOE-PSX failed with LinAlgError

Processing pair CBOE-PFG
ADF test for CBOE-PFG failed with LinAlgError

Processing pair CBOE-PG
ADF test for CBOE-PG failed with LinAlgError

Processing pair CBOE-PGR
ADF test for CBOE-PGR failed with LinAlgError

Processing pair CBOE-PRU
ADF test for CBOE-PRU failed with LinAlgError

Processing pair CBOE-PEG
ADF test for CBOE-PEG failed with LinAlgError

Processing pair CBOE-PTC
ADF test for CBOE-PTC failed with LinAlgError

Processing pair CBOE-PHM
ADF test for CBOE-PHM failed with LinAlgError

Processing pair CBOE-DGX
ADF test for CBOE-DGX failed with LinAlgError

Processing pair CBOE-RJF
ADF test for CBOE-RJF failed with LinAlgError

Processing pair CBOE-RTX
ADF test for CBOE-RTX failed with LinAlgError

Processing pair CBOE-RF
ADF test for CBOE-RF failed with LinAlgError

Processing pair CBOE-RSG
ADF test for CBOE-RSG failed with LinAlgError

Processing pair CBOE-ROK
ADF test for CBOE-ROK failed with LinAlgError

Processing pair CBOE-ROL
ADF test for CBOE-ROL failed with LinAlgError

Processing pair CBOE-ROP
ADF test for CBOE-ROP failed with LinAlgError

Processing pair CBOE-ROST
ADF test for CBOE-ROST failed with LinAlgError

Processing pair CBOE-SPGI
ADF test for CBOE-SPGI failed with LinAlgError

Processing pair CBOE-SRE
ADF test for CBOE-SRE failed with LinAlgError

Processing pair CBOE-SHW
ADF test for CBOE-SHW failed with LinAlgError

Processing pair CBOE-SNA
ADF test for CBOE-SNA failed with LinAlgError

Processing pair CBOE-SO
ADF test for CBOE-SO failed with LinAlgError

Processing pair CBOE-STE
ADF test for CBOE-STE failed with LinAlgError

Processing pair CBOE-SYK
ADF test for CBOE-SYK failed with LinAlgError

Processing pair CBOE-SNPS
ADF test for CBOE-SNPS failed with LinAlgError

Processing pair CBOE-SYY
ADF test for CBOE-SYY failed with LinAlgError

Processing pair CBOE-TMUS
ADF test for CBOE-TMUS failed with LinAlgError

Processing pair CBOE-TEL
ADF test for CBOE-TEL failed with LinAlgError

Processing pair CBOE-TXN
ADF test for CBOE-TXN failed with LinAlgError

Processing pair CBOE-TXT
ADF test for CBOE-TXT failed with LinAlgError

Processing pair CBOE-TJX
ADF test for CBOE-TJX failed with LinAlgError

Processing pair CBOE-TT
ADF test for CBOE-TT failed with LinAlgError

Processing pair CBOE-TDG
ADF test for CBOE-TDG failed with LinAlgError

Processing pair CBOE-TRV
ADF test for CBOE-TRV failed with LinAlgError

Processing pair CBOE-TYL
ADF test for CBOE-TYL failed with LinAlgError

Processing pair CBOE-UNP
ADF test for CBOE-UNP failed with LinAlgError

Processing pair CBOE-URI
ADF test for CBOE-URI failed with LinAlgError

Processing pair CBOE-UNH
ADF test for CBOE-UNH failed with LinAlgError

Processing pair CBOE-VLO
ADF test for CBOE-VLO failed with LinAlgError

Processing pair CBOE-VRSK
ADF test for CBOE-VRSK failed with LinAlgError

Processing pair CBOE-VRTX
ADF test for CBOE-VRTX failed with LinAlgError

Processing pair CBOE-V
ADF test for CBOE-V failed with LinAlgError

Processing pair CBOE-VMC
ADF test for CBOE-VMC failed with LinAlgError

Processing pair CBOE-WRB
ADF test for CBOE-WRB failed with LinAlgError

Processing pair CBOE-WMT
ADF test for CBOE-WMT failed with LinAlgError

Processing pair CBOE-WM
ADF test for CBOE-WM failed with LinAlgError

Processing pair CBOE-WELL
ADF test for CBOE-WELL failed with LinAlgError

Processing pair CBOE-WTW
ADF test for CBOE-WTW failed with LinAlgError

Processing pair CBOE-XYL
ADF test for CBOE-XYL failed with LinAlgError

Processing pair CBOE-YUM
ADF test for CBOE-YUM failed with LinAlgError

Processing pair CBRE-CDW
ADF test for CBRE-CDW failed with LinAlgError

Processing pair CBRE-CE

Processing pair CBRE-SCHW

Processing pair CBRE-CMG

Processing pair CBRE-CB

Processing pair CBRE-CHD

Processing pair CBRE-CI

Processing pair CBRE-CINF

Processing pair CBRE-CTAS

Processing pair CBRE-CSCO

Processing pair CBRE-CME

Processing pair CBRE-KO

Processing pair CBRE-COO

Processing pair CBRE-CPRT

Processing pair CBRE-GLW

Processing pair CBRE-COST

Processing pair CBRE-CSX

Processing pair CBRE-CMI

Processing pair CBRE-DHR

Processing pair CBRE-DRI

Processing pair CBRE-DE

Processing pair CBRE-DFS

Processing pair CBRE-DPZ

Processing pair CBRE-DOV

Processing pair CBRE-DHI

Processing pair CBRE-DTE

Processing pair CBRE-DUK

Processing pair CBRE-EBAY

Processing pair CBRE-ELV

Processing pair CBRE-EMR

Processing pair CBRE-ETR

Processing pair CBRE-EFX

Processing pair CBRE-EQIX

Processing pair CBRE-EXC

Processing pair CBRE-EXPD

Processing pair CBRE-EXR

Processing pair CBRE-FDS

Processing pair CBRE-FAST

Processing pair CBRE-FITB

Processing pair CBRE-FI

Processing pair CBRE-FTNT

Processing pair CBRE-GRMN

Processing pair CBRE-IT

Processing pair CBRE-GEN

Processing pair CBRE-GS

Processing pair CBRE-HIG

Processing pair CBRE-HCA
ADF test for CBRE-HCA failed with LinAlgError

Processing pair CBRE-HLT
ADF test for CBRE-HLT failed with LinAlgError

Processing pair CBRE-HOLX

Processing pair CBRE-HD

Processing pair CBRE-HON

Processing pair CBRE-HPQ

Processing pair CBRE-IEX

Processing pair CBRE-IDXX

Processing pair CBRE-ITW

Processing pair CBRE-ICE

Processing pair CBRE-IPG

Processing pair CBRE-INTU

Processing pair CBRE-ISRG

Processing pair CBRE-INVH
ADF test for CBRE-INVH failed with LinAlgError

Processing pair CBRE-IQV
ADF test for CBRE-IQV failed with LinAlgError

Processing pair CBRE-JBHT

Processing pair CBRE-J

Processing pair CBRE-JNJ

Processing pair CBRE-JCI

Processing pair CBRE-JPM

Processing pair CBRE-KDP

Processing pair CBRE-KEYS
ADF test for CBRE-KEYS failed with LinAlgError

Processing pair CBRE-KKR
ADF test for CBRE-KKR failed with LinAlgError

Processing pair CBRE-KLAC

Processing pair CBRE-LHX

Processing pair CBRE-LH

Processing pair CBRE-LRCX

Processing pair CBRE-LDOS

Processing pair CBRE-LEN

Processing pair CBRE-LII

Processing pair CBRE-LIN

Processing pair CBRE-LYV

Processing pair CBRE-LMT

Processing pair CBRE-LOW

Processing pair CBRE-MAR

Processing pair CBRE-MMC

Processing pair CBRE-MLM

Processing pair CBRE-MAS

Processing pair CBRE-MA

Processing pair CBRE-MCD

Processing pair CBRE-MET

Processing pair CBRE-MTD

Processing pair CBRE-MCHP

Processing pair CBRE-MU

Processing pair CBRE-MSFT

Processing pair CBRE-MAA

Processing pair CBRE-MOH

Processing pair CBRE-MDLZ

Processing pair CBRE-MPWR

Processing pair CBRE-MNST

Processing pair CBRE-MCO

Processing pair CBRE-MS

Processing pair CBRE-MSI

Processing pair CBRE-MSCI

Processing pair CBRE-NDAQ

Processing pair CBRE-NTAP

Processing pair CBRE-NEE

Processing pair CBRE-NDSN

Processing pair CBRE-NSC

Processing pair CBRE-NOC

Processing pair CBRE-NVR

Processing pair CBRE-NXPI
ADF test for CBRE-NXPI failed with LinAlgError

Processing pair CBRE-ORLY

Processing pair CBRE-ODFL

Processing pair CBRE-ORCL

Processing pair CBRE-PKG

Processing pair CBRE-PH

Processing pair CBRE-PAYX

Processing pair CBRE-PNR

Processing pair CBRE-PEP

Processing pair CBRE-PNC

Processing pair CBRE-POOL

Processing pair CBRE-PFG

Processing pair CBRE-PG

Processing pair CBRE-PGR

Processing pair CBRE-PLD

Processing pair CBRE-PRU

Processing pair CBRE-PEG

Processing pair CBRE-PTC

Processing pair CBRE-PSA

Processing pair CBRE-QCOM

Processing pair CBRE-DGX

Processing pair CBRE-RJF

Processing pair CBRE-RTX

Processing pair CBRE-RF

Processing pair CBRE-RSG

Processing pair CBRE-RMD

Processing pair CBRE-RVTY

Processing pair CBRE-ROK

Processing pair CBRE-ROL

Processing pair CBRE-ROP

Processing pair CBRE-ROST

Processing pair CBRE-SPGI

Processing pair CBRE-CRM

Processing pair CBRE-STX

Processing pair CBRE-SRE

Processing pair CBRE-NOW
ADF test for CBRE-NOW failed with LinAlgError

Processing pair CBRE-SHW

Processing pair CBRE-SNA

Processing pair CBRE-SO

Processing pair CBRE-SBUX

Processing pair CBRE-STE

Processing pair CBRE-SYK

Processing pair CBRE-SNPS

Processing pair CBRE-SYY

Processing pair CBRE-TMUS

Processing pair CBRE-TGT

Processing pair CBRE-TEL

Processing pair CBRE-TDY

Processing pair CBRE-TER

Processing pair CBRE-TXN

Processing pair CBRE-TPL

Processing pair CBRE-TXT

Processing pair CBRE-TMO

Processing pair CBRE-TJX

Processing pair CBRE-TSCO

Processing pair CBRE-TT

Processing pair CBRE-TDG

Processing pair CBRE-TRV

Processing pair CBRE-TYL

Processing pair CBRE-UNP

Processing pair CBRE-UPS

Processing pair CBRE-URI

Processing pair CBRE-UNH

Processing pair CBRE-VRSK

Processing pair CBRE-V

Processing pair CBRE-VMC

Processing pair CBRE-WRB

Processing pair CBRE-WMT

Processing pair CBRE-WM

Processing pair CBRE-WAT

Processing pair CBRE-WELL

Processing pair CBRE-WST

Processing pair CBRE-WTW

Processing pair CBRE-XYL
ADF test for CBRE-XYL failed with LinAlgError

Processing pair CBRE-YUM

Processing pair CBRE-ZBRA

Processing pair CBRE-ZTS
ADF test for CBRE-ZTS failed with LinAlgError

Processing pair CDW-CE
ADF test for CDW-CE failed with LinAlgError

Processing pair CDW-CMG
ADF test for CDW-CMG failed with LinAlgError

Processing pair CDW-CB
ADF test for CDW-CB failed with LinAlgError

Processing pair CDW-CHD
ADF test for CDW-CHD failed with LinAlgError

Processing pair CDW-CI
ADF test for CDW-CI failed with LinAlgError

Processing pair CDW-CINF
ADF test for CDW-CINF failed with LinAlgError

Processing pair CDW-CTAS
ADF test for CDW-CTAS failed with LinAlgError

Processing pair CDW-CSCO
ADF test for CDW-CSCO failed with LinAlgError

Processing pair CDW-CME
ADF test for CDW-CME failed with LinAlgError

Processing pair CDW-CMS
ADF test for CDW-CMS failed with LinAlgError

Processing pair CDW-KO
ADF test for CDW-KO failed with LinAlgError

Processing pair CDW-COO
ADF test for CDW-COO failed with LinAlgError

Processing pair CDW-CPRT
ADF test for CDW-CPRT failed with LinAlgError

Processing pair CDW-CSGP
ADF test for CDW-CSGP failed with LinAlgError

Processing pair CDW-COST
ADF test for CDW-COST failed with LinAlgError

Processing pair CDW-CSX
ADF test for CDW-CSX failed with LinAlgError

Processing pair CDW-CMI
ADF test for CDW-CMI failed with LinAlgError

Processing pair CDW-DHR
ADF test for CDW-DHR failed with LinAlgError

Processing pair CDW-DRI
ADF test for CDW-DRI failed with LinAlgError

Processing pair CDW-DE
ADF test for CDW-DE failed with LinAlgError

Processing pair CDW-DXCM
ADF test for CDW-DXCM failed with LinAlgError

Processing pair CDW-DFS
ADF test for CDW-DFS failed with LinAlgError

Processing pair CDW-DPZ
ADF test for CDW-DPZ failed with LinAlgError

Processing pair CDW-DOV
ADF test for CDW-DOV failed with LinAlgError

Processing pair CDW-DHI
ADF test for CDW-DHI failed with LinAlgError

Processing pair CDW-DTE
ADF test for CDW-DTE failed with LinAlgError

Processing pair CDW-DUK
ADF test for CDW-DUK failed with LinAlgError

Processing pair CDW-ELV
ADF test for CDW-ELV failed with LinAlgError

Processing pair CDW-EMR
ADF test for CDW-EMR failed with LinAlgError

Processing pair CDW-ETR
ADF test for CDW-ETR failed with LinAlgError

Processing pair CDW-EFX
ADF test for CDW-EFX failed with LinAlgError

Processing pair CDW-EQIX
ADF test for CDW-EQIX failed with LinAlgError

Processing pair CDW-EG
ADF test for CDW-EG failed with LinAlgError

Processing pair CDW-EXC
ADF test for CDW-EXC failed with LinAlgError

Processing pair CDW-EXPD
ADF test for CDW-EXPD failed with LinAlgError

Processing pair CDW-EXR
ADF test for CDW-EXR failed with LinAlgError

Processing pair CDW-FDS
ADF test for CDW-FDS failed with LinAlgError

Processing pair CDW-FAST
ADF test for CDW-FAST failed with LinAlgError

Processing pair CDW-FI
ADF test for CDW-FI failed with LinAlgError

Processing pair CDW-FTNT
ADF test for CDW-FTNT failed with LinAlgError

Processing pair CDW-GRMN
ADF test for CDW-GRMN failed with LinAlgError

Processing pair CDW-IT
ADF test for CDW-IT failed with LinAlgError

Processing pair CDW-GPC
ADF test for CDW-GPC failed with LinAlgError

Processing pair CDW-GS
ADF test for CDW-GS failed with LinAlgError

Processing pair CDW-HCA
ADF test for CDW-HCA failed with LinAlgError

Processing pair CDW-HSY
ADF test for CDW-HSY failed with LinAlgError

Processing pair CDW-HLT
ADF test for CDW-HLT failed with LinAlgError

Processing pair CDW-HOLX
ADF test for CDW-HOLX failed with LinAlgError

Processing pair CDW-HD
ADF test for CDW-HD failed with LinAlgError

Processing pair CDW-HON
ADF test for CDW-HON failed with LinAlgError

Processing pair CDW-HPQ
ADF test for CDW-HPQ failed with LinAlgError

Processing pair CDW-IEX
ADF test for CDW-IEX failed with LinAlgError

Processing pair CDW-IDXX
ADF test for CDW-IDXX failed with LinAlgError

Processing pair CDW-ITW
ADF test for CDW-ITW failed with LinAlgError

Processing pair CDW-IR
ADF test for CDW-IR failed with LinAlgError

Processing pair CDW-ICE
ADF test for CDW-ICE failed with LinAlgError

Processing pair CDW-IPG
ADF test for CDW-IPG failed with LinAlgError

Processing pair CDW-INTU
ADF test for CDW-INTU failed with LinAlgError

Processing pair CDW-ISRG
ADF test for CDW-ISRG failed with LinAlgError

Processing pair CDW-INVH
ADF test for CDW-INVH failed with LinAlgError

Processing pair CDW-IQV
ADF test for CDW-IQV failed with LinAlgError

Processing pair CDW-JBHT
ADF test for CDW-JBHT failed with LinAlgError

Processing pair CDW-JBL
ADF test for CDW-JBL failed with LinAlgError

Processing pair CDW-J
ADF test for CDW-J failed with LinAlgError

Processing pair CDW-JNJ
ADF test for CDW-JNJ failed with LinAlgError

Processing pair CDW-JPM
ADF test for CDW-JPM failed with LinAlgError

Processing pair CDW-KDP
ADF test for CDW-KDP failed with LinAlgError

Processing pair CDW-KEYS
ADF test for CDW-KEYS failed with LinAlgError

Processing pair CDW-KLAC
ADF test for CDW-KLAC failed with LinAlgError

Processing pair CDW-LHX
ADF test for CDW-LHX failed with LinAlgError

Processing pair CDW-LH
ADF test for CDW-LH failed with LinAlgError

Processing pair CDW-LRCX
ADF test for CDW-LRCX failed with LinAlgError

Processing pair CDW-LDOS
ADF test for CDW-LDOS failed with LinAlgError

Processing pair CDW-LIN
ADF test for CDW-LIN failed with LinAlgError

Processing pair CDW-LYV
ADF test for CDW-LYV failed with LinAlgError

Processing pair CDW-LMT
ADF test for CDW-LMT failed with LinAlgError

Processing pair CDW-LOW
ADF test for CDW-LOW failed with LinAlgError

Processing pair CDW-LULU
ADF test for CDW-LULU failed with LinAlgError

Processing pair CDW-MAR
ADF test for CDW-MAR failed with LinAlgError

Processing pair CDW-MMC
ADF test for CDW-MMC failed with LinAlgError

Processing pair CDW-MLM
ADF test for CDW-MLM failed with LinAlgError

Processing pair CDW-MAS
ADF test for CDW-MAS failed with LinAlgError

Processing pair CDW-MA
ADF test for CDW-MA failed with LinAlgError

Processing pair CDW-MCD
ADF test for CDW-MCD failed with LinAlgError

Processing pair CDW-MRK
ADF test for CDW-MRK failed with LinAlgError

Processing pair CDW-MET
ADF test for CDW-MET failed with LinAlgError

Processing pair CDW-MTD
ADF test for CDW-MTD failed with LinAlgError

Processing pair CDW-MCHP
ADF test for CDW-MCHP failed with LinAlgError

Processing pair CDW-MU
ADF test for CDW-MU failed with LinAlgError

Processing pair CDW-MSFT
ADF test for CDW-MSFT failed with LinAlgError

Processing pair CDW-MAA
ADF test for CDW-MAA failed with LinAlgError

Processing pair CDW-MOH
ADF test for CDW-MOH failed with LinAlgError

Processing pair CDW-MDLZ
ADF test for CDW-MDLZ failed with LinAlgError

Processing pair CDW-MPWR
ADF test for CDW-MPWR failed with LinAlgError

Processing pair CDW-MNST
ADF test for CDW-MNST failed with LinAlgError

Processing pair CDW-MCO
ADF test for CDW-MCO failed with LinAlgError

Processing pair CDW-MS
ADF test for CDW-MS failed with LinAlgError

Processing pair CDW-MSI
ADF test for CDW-MSI failed with LinAlgError

Processing pair CDW-MSCI
ADF test for CDW-MSCI failed with LinAlgError

Processing pair CDW-NDAQ
ADF test for CDW-NDAQ failed with LinAlgError

Processing pair CDW-NEE
ADF test for CDW-NEE failed with LinAlgError

Processing pair CDW-NDSN
ADF test for CDW-NDSN failed with LinAlgError

Processing pair CDW-NSC
ADF test for CDW-NSC failed with LinAlgError

Processing pair CDW-NOC
ADF test for CDW-NOC failed with LinAlgError

Processing pair CDW-NVR
ADF test for CDW-NVR failed with LinAlgError

Processing pair CDW-NXPI
ADF test for CDW-NXPI failed with LinAlgError

Processing pair CDW-ORLY
ADF test for CDW-ORLY failed with LinAlgError

Processing pair CDW-ODFL
ADF test for CDW-ODFL failed with LinAlgError

Processing pair CDW-ON
ADF test for CDW-ON failed with LinAlgError

Processing pair CDW-OTIS
ADF test for CDW-OTIS failed with LinAlgError

Processing pair CDW-PKG
ADF test for CDW-PKG failed with LinAlgError

Processing pair CDW-PANW
ADF test for CDW-PANW failed with LinAlgError

Processing pair CDW-PH
ADF test for CDW-PH failed with LinAlgError

Processing pair CDW-PAYX
ADF test for CDW-PAYX failed with LinAlgError

Processing pair CDW-PEP
ADF test for CDW-PEP failed with LinAlgError

Processing pair CDW-POOL
ADF test for CDW-POOL failed with LinAlgError

Processing pair CDW-PG
ADF test for CDW-PG failed with LinAlgError

Processing pair CDW-PGR
ADF test for CDW-PGR failed with LinAlgError

Processing pair CDW-PLD
ADF test for CDW-PLD failed with LinAlgError

Processing pair CDW-PEG
ADF test for CDW-PEG failed with LinAlgError

Processing pair CDW-PTC
ADF test for CDW-PTC failed with LinAlgError

Processing pair CDW-PSA
ADF test for CDW-PSA failed with LinAlgError

Processing pair CDW-QCOM
ADF test for CDW-QCOM failed with LinAlgError

Processing pair CDW-DGX
ADF test for CDW-DGX failed with LinAlgError

Processing pair CDW-RJF
ADF test for CDW-RJF failed with LinAlgError

Processing pair CDW-RSG
ADF test for CDW-RSG failed with LinAlgError

Processing pair CDW-RMD
ADF test for CDW-RMD failed with LinAlgError

Processing pair CDW-ROK
ADF test for CDW-ROK failed with LinAlgError

Processing pair CDW-ROL
ADF test for CDW-ROL failed with LinAlgError

Processing pair CDW-ROP
ADF test for CDW-ROP failed with LinAlgError

Processing pair CDW-ROST
ADF test for CDW-ROST failed with LinAlgError

Processing pair CDW-SPGI
ADF test for CDW-SPGI failed with LinAlgError

Processing pair CDW-CRM
ADF test for CDW-CRM failed with LinAlgError

Processing pair CDW-SRE
ADF test for CDW-SRE failed with LinAlgError

Processing pair CDW-NOW
ADF test for CDW-NOW failed with LinAlgError

Processing pair CDW-SHW
ADF test for CDW-SHW failed with LinAlgError

Processing pair CDW-SNA
ADF test for CDW-SNA failed with LinAlgError

Processing pair CDW-SO
ADF test for CDW-SO failed with LinAlgError

Processing pair CDW-SBUX
ADF test for CDW-SBUX failed with LinAlgError

Processing pair CDW-STE
ADF test for CDW-STE failed with LinAlgError

Processing pair CDW-SYK
ADF test for CDW-SYK failed with LinAlgError

Processing pair CDW-SNPS
ADF test for CDW-SNPS failed with LinAlgError

Processing pair CDW-SYY
ADF test for CDW-SYY failed with LinAlgError

Processing pair CDW-TMUS
ADF test for CDW-TMUS failed with LinAlgError

Processing pair CDW-TEL
ADF test for CDW-TEL failed with LinAlgError

Processing pair CDW-TDY
ADF test for CDW-TDY failed with LinAlgError

Processing pair CDW-TER
ADF test for CDW-TER failed with LinAlgError

Processing pair CDW-TXN
ADF test for CDW-TXN failed with LinAlgError

Processing pair CDW-TMO
ADF test for CDW-TMO failed with LinAlgError

Processing pair CDW-TJX
ADF test for CDW-TJX failed with LinAlgError

Processing pair CDW-TSCO
ADF test for CDW-TSCO failed with LinAlgError

Processing pair CDW-TT
ADF test for CDW-TT failed with LinAlgError

Processing pair CDW-TDG
ADF test for CDW-TDG failed with LinAlgError

Processing pair CDW-TRV
ADF test for CDW-TRV failed with LinAlgError

Processing pair CDW-TYL
ADF test for CDW-TYL failed with LinAlgError

Processing pair CDW-UNP
ADF test for CDW-UNP failed with LinAlgError

Processing pair CDW-UNH
ADF test for CDW-UNH failed with LinAlgError

Processing pair CDW-VRSK
ADF test for CDW-VRSK failed with LinAlgError

Processing pair CDW-VRTX
ADF test for CDW-VRTX failed with LinAlgError

Processing pair CDW-VICI
ADF test for CDW-VICI failed with LinAlgError

Processing pair CDW-V
ADF test for CDW-V failed with LinAlgError

Processing pair CDW-VMC
ADF test for CDW-VMC failed with LinAlgError

Processing pair CDW-WRB
ADF test for CDW-WRB failed with LinAlgError

Processing pair CDW-WMT
ADF test for CDW-WMT failed with LinAlgError

Processing pair CDW-WM
ADF test for CDW-WM failed with LinAlgError

Processing pair CDW-WAT
ADF test for CDW-WAT failed with LinAlgError

Processing pair CDW-WEC
ADF test for CDW-WEC failed with LinAlgError

Processing pair CDW-WST
ADF test for CDW-WST failed with LinAlgError

Processing pair CDW-WTW
ADF test for CDW-WTW failed with LinAlgError

Processing pair CDW-WDAY
ADF test for CDW-WDAY failed with LinAlgError

Processing pair CDW-XYL
ADF test for CDW-XYL failed with LinAlgError

Processing pair CDW-YUM
ADF test for CDW-YUM failed with LinAlgError

Processing pair CDW-ZTS
ADF test for CDW-ZTS failed with LinAlgError

Processing pair CE-CNC

Processing pair CE-CRL

Processing pair CE-SCHW

Processing pair CE-CHD

Processing pair CE-CINF

Processing pair CE-CSCO

Processing pair CE-CME

Processing pair CE-CMS

Processing pair CE-KO

Processing pair CE-CMCSA

Processing pair CE-STZ

Processing pair CE-COO

Processing pair CE-GLW

Processing pair CE-CSGP

Processing pair CE-CSX

Processing pair CE-DHR

Processing pair CE-DRI

Processing pair CE-DLR

Processing pair CE-DFS

Processing pair CE-DPZ

Processing pair CE-DOV

Processing pair CE-DTE

Processing pair CE-DUK

Processing pair CE-EMN

Processing pair CE-EBAY

Processing pair CE-ECL

Processing pair CE-EW

Processing pair CE-EA

Processing pair CE-ELV

Processing pair CE-EMR

Processing pair CE-EFX

Processing pair CE-EQIX

Processing pair CE-ESS

Processing pair CE-EXPD

Processing pair CE-EXR

Processing pair CE-FDS

Processing pair CE-FITB

Processing pair CE-FI

Processing pair CE-GL

Processing pair CE-HOLX

Processing pair CE-HD

Processing pair CE-HON

Processing pair CE-HBAN

Processing pair CE-IEX

Processing pair CE-IDXX

Processing pair CE-ITW

Processing pair CE-ICE

Processing pair CE-IPG

Processing pair CE-INTU

Processing pair CE-IQV
ADF test for CE-IQV failed with LinAlgError

Processing pair CE-JBHT

Processing pair CE-JKHY

Processing pair CE-J

Processing pair CE-JNJ

Processing pair CE-JPM

Processing pair CE-KDP

Processing pair CE-LHX

Processing pair CE-LH

Processing pair CE-LYV

Processing pair CE-LOW

Processing pair CE-MAR

Processing pair CE-MAS

Processing pair CE-MA

Processing pair CE-MCD

Processing pair CE-MTD

Processing pair CE-MGM

Processing pair CE-MCHP

Processing pair CE-MU

Processing pair CE-MAA

Processing pair CE-MDLZ

Processing pair CE-MNST

Processing pair CE-MCO

Processing pair CE-MSCI

Processing pair CE-NDAQ

Processing pair CE-NEE

Processing pair CE-NKE

Processing pair CE-NDSN

Processing pair CE-NSC

Processing pair CE-NTRS

Processing pair CE-NXPI
ADF test for CE-NXPI failed with LinAlgError

Processing pair CE-PKG

Processing pair CE-PAYX

Processing pair CE-PEP

Processing pair CE-PNC

Processing pair CE-POOL

Processing pair CE-PPG

Processing pair CE-PG

Processing pair CE-PLD

Processing pair CE-PEG

Processing pair CE-PTC

Processing pair CE-DGX

Processing pair CE-RF

Processing pair CE-RVTY

Processing pair CE-ROK

Processing pair CE-ROL

Processing pair CE-ROP

Processing pair CE-ROST

Processing pair CE-SPGI

Processing pair CE-CRM

Processing pair CE-STX

Processing pair CE-SHW

Processing pair CE-SBUX

Processing pair CE-STE

Processing pair CE-SYK

Processing pair CE-SYY

Processing pair CE-TROW

Processing pair CE-TTWO

Processing pair CE-TEL

Processing pair CE-TDY

Processing pair CE-TER

Processing pair CE-TXN

Processing pair CE-TMO

Processing pair CE-TYL

Processing pair CE-UDR

Processing pair CE-UNP

Processing pair CE-UPS

Processing pair CE-VRSN

Processing pair CE-VRSK

Processing pair CE-V

Processing pair CE-VMC

Processing pair CE-WM

Processing pair CE-WAT

Processing pair CE-WEC

Processing pair CE-WST

Processing pair CE-WTW

Processing pair CE-WDAY
ADF test for CE-WDAY failed with LinAlgError

Processing pair CE-XEL

Processing pair CE-XYL
ADF test for CE-XYL failed with LinAlgError

Processing pair CE-YUM

Processing pair CE-ZTS
ADF test for CE-ZTS failed with LinAlgError

Processing pair COR-CMG

Processing pair COR-CB

Processing pair COR-CI

Processing pair COR-CTAS

Processing pair COR-KO

Processing pair COR-CL

Processing pair COR-CPRT

Processing pair COR-COST

Processing pair COR-CMI

Processing pair COR-DECK

Processing pair COR-DELL
ADF test for COR-DELL failed with LinAlgError

Processing pair COR-DFS

Processing pair COR-DHI

Processing pair COR-ETN

Processing pair COR-ELV

Processing pair COR-EMR

Processing pair COR-ERIE

Processing pair COR-EG

Processing pair COR-FDS

Processing pair COR-FICO

Processing pair COR-FAST

Processing pair COR-IT

Processing pair COR-GD

Processing pair COR-GPC

Processing pair COR-GS

Processing pair COR-HIG

Processing pair COR-HCA
ADF test for COR-HCA failed with LinAlgError

Processing pair COR-HLT
ADF test for COR-HLT failed with LinAlgError

Processing pair COR-HD

Processing pair COR-HUBB

Processing pair COR-ITW

Processing pair COR-IR
ADF test for COR-IR failed with LinAlgError

Processing pair COR-INTU

Processing pair COR-IRM

Processing pair COR-JBL

Processing pair COR-JPM

Processing pair COR-KKR
ADF test for COR-KKR failed with LinAlgError

Processing pair COR-KLAC

Processing pair COR-KR

Processing pair COR-LRCX

Processing pair COR-LEN

Processing pair COR-LII

Processing pair COR-LLY

Processing pair COR-LIN

Processing pair COR-LOW

Processing pair COR-MPC
ADF test for COR-MPC failed with LinAlgError

Processing pair COR-MAR

Processing pair COR-MMC

Processing pair COR-MLM

Processing pair COR-MAS

Processing pair COR-MCK

Processing pair COR-MRK

Processing pair COR-MET

Processing pair COR-MSFT

Processing pair COR-MOH

Processing pair COR-MDLZ

Processing pair COR-MPWR

Processing pair COR-MNST

Processing pair COR-MCO

Processing pair COR-MS

Processing pair COR-MSI

Processing pair COR-NUE

Processing pair COR-NVR

Processing pair COR-NXPI
ADF test for COR-NXPI failed with LinAlgError

Processing pair COR-ORLY

Processing pair COR-ODFL

Processing pair COR-ON

Processing pair COR-ORCL

Processing pair COR-PCAR

Processing pair COR-PKG

Processing pair COR-PANW
ADF test for COR-PANW failed with LinAlgError

Processing pair COR-PH

Processing pair COR-PAYX

Processing pair COR-PEP

Processing pair COR-PFG

Processing pair COR-PG

Processing pair COR-PGR

Processing pair COR-PEG

Processing pair COR-PTC

Processing pair COR-PHM

Processing pair COR-PWR

Processing pair COR-RJF

Processing pair COR-REGN

Processing pair COR-RSG

Processing pair COR-ROL

Processing pair COR-SHW

Processing pair COR-SNA

Processing pair COR-SO

Processing pair COR-STLD

Processing pair COR-SYK

Processing pair COR-SNPS

Processing pair COR-TMUS

Processing pair COR-TXT

Processing pair COR-TJX

Processing pair COR-TSCO

Processing pair COR-TT

Processing pair COR-TDG

Processing pair COR-TRV

Processing pair COR-URI

Processing pair COR-UNH

Processing pair COR-VLO

Processing pair COR-VRSK

Processing pair COR-VRTX

Processing pair COR-VMC

Processing pair COR-WRB

Processing pair COR-GWW

Processing pair COR-WAB

Processing pair COR-WMT

Processing pair COR-WM

Processing pair COR-WELL

Processing pair COR-WTW

Processing pair CNC-SCHW

Processing pair CNC-CHD

Processing pair CNC-CI

Processing pair CNC-CINF

Processing pair CNC-CSCO

Processing pair CNC-CME

Processing pair CNC-CMS

Processing pair CNC-KO

Processing pair CNC-ED

Processing pair CNC-STZ

Processing pair CNC-COO

Processing pair CNC-CSGP

Processing pair CNC-CCI

Processing pair CNC-CSX

Processing pair CNC-DHR

Processing pair CNC-DRI

Processing pair CNC-DLR

Processing pair CNC-DLTR

Processing pair CNC-DPZ

Processing pair CNC-DTE

Processing pair CNC-DUK

Processing pair CNC-EW

Processing pair CNC-EA

Processing pair CNC-ELV

Processing pair CNC-ETR

Processing pair CNC-EQIX

Processing pair CNC-EVRG

Processing pair CNC-ES

Processing pair CNC-EXR

Processing pair CNC-FDS

Processing pair CNC-GL

Processing pair CNC-HOLX

Processing pair CNC-HD

Processing pair CNC-HON

Processing pair CNC-HRL

Processing pair CNC-HUM

Processing pair CNC-HBAN

Processing pair CNC-HII
ADF test for CNC-HII failed with LinAlgError

Processing pair CNC-IEX

Processing pair CNC-ITW

Processing pair CNC-ICE

Processing pair CNC-JBHT

Processing pair CNC-JKHY

Processing pair CNC-JNJ

Processing pair CNC-KDP

Processing pair CNC-LHX

Processing pair CNC-LH

Processing pair CNC-LYV

Processing pair CNC-LMT

Processing pair CNC-MAS

Processing pair CNC-MA

Processing pair CNC-MKC

Processing pair CNC-MCD

Processing pair CNC-MTD

Processing pair CNC-MAA

Processing pair CNC-MDLZ

Processing pair CNC-MNST

Processing pair CNC-NDAQ

Processing pair CNC-NEE

Processing pair CNC-NI

Processing pair CNC-NDSN

Processing pair CNC-NSC

Processing pair CNC-NTRS

Processing pair CNC-NOC

Processing pair CNC-PAYX

Processing pair CNC-PEP

Processing pair CNC-PFE

Processing pair CNC-PNC

Processing pair CNC-PLD

Processing pair CNC-PEG

Processing pair CNC-DGX

Processing pair CNC-O

Processing pair CNC-RF

Processing pair CNC-RMD

Processing pair CNC-RVTY

Processing pair CNC-ROK

Processing pair CNC-ROL

Processing pair CNC-ROP

Processing pair CNC-ROST

Processing pair CNC-SPGI

Processing pair CNC-SBAC

Processing pair CNC-SRE

Processing pair CNC-SHW

Processing pair CNC-SBUX

Processing pair CNC-STE

Processing pair CNC-SYY

Processing pair CNC-TTWO

Processing pair CNC-TEL

Processing pair CNC-TDY

Processing pair CNC-TXN

Processing pair CNC-TMO

Processing pair CNC-TYL

Processing pair CNC-UDR

Processing pair CNC-ULTA

Processing pair CNC-UNP

Processing pair CNC-UNH

Processing pair CNC-VRSN

Processing pair CNC-V

Processing pair CNC-WAT

Processing pair CNC-WEC

Processing pair CNC-WTW

Processing pair CNC-XEL

Processing pair CNC-YUM

Processing pair CNP-CB

Processing pair CNP-CINF

Processing pair CNP-KO

Processing pair CNP-ED

Processing pair CNP-STZ

Processing pair CNP-DRI

Processing pair CNP-DTE

Processing pair CNP-DUK

Processing pair CNP-EG

Processing pair CNP-EVRG

Processing pair CNP-GD

Processing pair CNP-GPC

Processing pair CNP-GL

Processing pair CNP-JNJ

Processing pair CNP-LMT

Processing pair CNP-MTB

Processing pair CNP-MAR

Processing pair CNP-NI

Processing pair CNP-NOC

Processing pair CNP-OKE

Processing pair CNP-PEP

Processing pair CNP-PNW

Processing pair CNP-PFG

Processing pair CNP-PRU

Processing pair CNP-PEG

Processing pair CNP-RTX

Processing pair CNP-RF

Processing pair CNP-SRE

Processing pair CNP-SYY

Processing pair CNP-TXT

Processing pair CNP-TRV

Processing pair CNP-ULTA

Processing pair CNP-YUM

Processing pair CF-CVX

Processing pair CF-COP

Processing pair CRL-CHTR
ADF test for CRL-CHTR failed with LinAlgError

Processing pair CRL-COO

Processing pair CRL-CSGP

Processing pair CRL-CCI

Processing pair CRL-CSX

Processing pair CRL-DHR

Processing pair CRL-DXCM

Processing pair CRL-DPZ

Processing pair CRL-EBAY

Processing pair CRL-EW

Processing pair CRL-EPAM
ADF test for CRL-EPAM failed with LinAlgError

Processing pair CRL-EFX

Processing pair CRL-EL

Processing pair CRL-EXPD

Processing pair CRL-EXR

Processing pair CRL-GNRC
ADF test for CRL-GNRC failed with LinAlgError

Processing pair CRL-HD

Processing pair CRL-HON

Processing pair CRL-IEX

Processing pair CRL-IDXX

Processing pair CRL-PODD

Processing pair CRL-IQV
ADF test for CRL-IQV failed with LinAlgError

Processing pair CRL-LH

Processing pair CRL-LULU

Processing pair CRL-MTD

Processing pair CRL-MAA

Processing pair CRL-MRNA
ADF test for CRL-MRNA failed with LinAlgError

Processing pair CRL-MSCI

Processing pair CRL-NDAQ

Processing pair CRL-NEE

Processing pair CRL-NKE

Processing pair CRL-NDSN

Processing pair CRL-NSC

Processing pair CRL-PAYC
ADF test for CRL-PAYC failed with LinAlgError

Processing pair CRL-POOL

Processing pair CRL-PLD

Processing pair CRL-RMD

Processing pair CRL-RVTY

Processing pair CRL-ROK

Processing pair CRL-SPGI

Processing pair CRL-CRM

Processing pair CRL-SBAC

Processing pair CRL-SHW

Processing pair CRL-SWKS

Processing pair CRL-SBUX

Processing pair CRL-STE

Processing pair CRL-TROW

Processing pair CRL-TGT

Processing pair CRL-TEL

Processing pair CRL-TDY

Processing pair CRL-TER

Processing pair CRL-TXN

Processing pair CRL-TMO

Processing pair CRL-TRMB

Processing pair CRL-TYL

Processing pair CRL-UPS

Processing pair CRL-WAT

Processing pair CRL-WST

Processing pair CRL-ZBRA

Processing pair CRL-ZTS
ADF test for CRL-ZTS failed with LinAlgError

Processing pair SCHW-CB

Processing pair SCHW-CI

Processing pair SCHW-CINF

Processing pair SCHW-CSCO

Processing pair SCHW-CFG
ADF test for SCHW-CFG failed with LinAlgError

Processing pair SCHW-CME

Processing pair SCHW-KO

Processing pair SCHW-STZ

Processing pair SCHW-COO

Processing pair SCHW-GLW

Processing pair SCHW-CSX

Processing pair SCHW-DHR

Processing pair SCHW-DRI

Processing pair SCHW-DE

Processing pair SCHW-DFS

Processing pair SCHW-DPZ

Processing pair SCHW-DOV

Processing pair SCHW-DTE

Processing pair SCHW-DUK

Processing pair SCHW-EMN

Processing pair SCHW-ELV

Processing pair SCHW-EMR

Processing pair SCHW-EFX

Processing pair SCHW-EXPD

Processing pair SCHW-EXR

Processing pair SCHW-FDS

Processing pair SCHW-FITB

Processing pair SCHW-GEN

Processing pair SCHW-GD

Processing pair SCHW-GPC

Processing pair SCHW-GL

Processing pair SCHW-GS

Processing pair SCHW-HOLX

Processing pair SCHW-HD

Processing pair SCHW-HON

Processing pair SCHW-HPQ

Processing pair SCHW-HBAN

Processing pair SCHW-IEX

Processing pair SCHW-IDXX

Processing pair SCHW-ITW

Processing pair SCHW-ICE

Processing pair SCHW-IPG

Processing pair SCHW-INTU

Processing pair SCHW-IQV
ADF test for SCHW-IQV failed with LinAlgError

Processing pair SCHW-JBHT

Processing pair SCHW-JKHY

Processing pair SCHW-J

Processing pair SCHW-JNJ

Processing pair SCHW-JCI

Processing pair SCHW-JPM

Processing pair SCHW-KDP

Processing pair SCHW-KEY

Processing pair SCHW-LHX

Processing pair SCHW-LH

Processing pair SCHW-LYV

Processing pair SCHW-LOW

Processing pair SCHW-MAR

Processing pair SCHW-MMC

Processing pair SCHW-MAS

Processing pair SCHW-MCD

Processing pair SCHW-MET

Processing pair SCHW-MTD

Processing pair SCHW-MGM

Processing pair SCHW-MCHP

Processing pair SCHW-MU

Processing pair SCHW-MAA

Processing pair SCHW-MOH

Processing pair SCHW-MNST

Processing pair SCHW-MCO

Processing pair SCHW-MS

Processing pair SCHW-MSCI

Processing pair SCHW-NDAQ

Processing pair SCHW-NEE

Processing pair SCHW-NDSN

Processing pair SCHW-NSC

Processing pair SCHW-NTRS

Processing pair SCHW-NOC

Processing pair SCHW-NXPI
ADF test for SCHW-NXPI failed with LinAlgError

Processing pair SCHW-PKG

Processing pair SCHW-PAYX

Processing pair SCHW-PEP

Processing pair SCHW-PNC

Processing pair SCHW-POOL

Processing pair SCHW-PFG

Processing pair SCHW-PLD

Processing pair SCHW-PRU

Processing pair SCHW-PEG

Processing pair SCHW-PTC

Processing pair SCHW-PSA

Processing pair SCHW-DGX

Processing pair SCHW-RJF

Processing pair SCHW-RTX

Processing pair SCHW-RF

Processing pair SCHW-RMD

Processing pair SCHW-RVTY

Processing pair SCHW-ROK

Processing pair SCHW-ROL

Processing pair SCHW-ROP

Processing pair SCHW-SPGI

Processing pair SCHW-STX

Processing pair SCHW-SRE

Processing pair SCHW-SHW

Processing pair SCHW-SNA

Processing pair SCHW-STE

Processing pair SCHW-SYK

Processing pair SCHW-SYY

Processing pair SCHW-TEL

Processing pair SCHW-TDY

Processing pair SCHW-TXN

Processing pair SCHW-TXT

Processing pair SCHW-TMO

Processing pair SCHW-TRV

Processing pair SCHW-TYL

Processing pair SCHW-UDR

Processing pair SCHW-UNP

Processing pair SCHW-UPS

Processing pair SCHW-UNH

Processing pair SCHW-V

Processing pair SCHW-VMC

Processing pair SCHW-WM

Processing pair SCHW-WAT

Processing pair SCHW-WY

Processing pair SCHW-WTW

Processing pair SCHW-XYL
ADF test for SCHW-XYL failed with LinAlgError

Processing pair SCHW-YUM

Processing pair CHTR-CLX
ADF test for CHTR-CLX failed with LinAlgError

Processing pair CHTR-CMCSA
ADF test for CHTR-CMCSA failed with LinAlgError

Processing pair CHTR-CCI
ADF test for CHTR-CCI failed with LinAlgError

Processing pair CHTR-EW
ADF test for CHTR-EW failed with LinAlgError

Processing pair CHTR-EL
ADF test for CHTR-EL failed with LinAlgError

Processing pair CHTR-ES
ADF test for CHTR-ES failed with LinAlgError

Processing pair CHTR-FIS
ADF test for CHTR-FIS failed with LinAlgError

Processing pair CHTR-GPN
ADF test for CHTR-GPN failed with LinAlgError

Processing pair CHTR-MKTX
ADF test for CHTR-MKTX failed with LinAlgError

Processing pair CHTR-MTCH
ADF test for CHTR-MTCH failed with LinAlgError

Processing pair CHTR-MKC
ADF test for CHTR-MKC failed with LinAlgError

Processing pair CHTR-MDT
ADF test for CHTR-MDT failed with LinAlgError

Processing pair CHTR-NKE
ADF test for CHTR-NKE failed with LinAlgError

Processing pair CHTR-PYPL
ADF test for CHTR-PYPL failed with LinAlgError

Processing pair CHTR-RVTY
ADF test for CHTR-RVTY failed with LinAlgError

Processing pair CHTR-SBAC
ADF test for CHTR-SBAC failed with LinAlgError

Processing pair CHTR-SWKS
ADF test for CHTR-SWKS failed with LinAlgError

Processing pair CHTR-SWK
ADF test for CHTR-SWK failed with LinAlgError

Processing pair CHTR-TROW
ADF test for CHTR-TROW failed with LinAlgError

Processing pair CHTR-TTWO
ADF test for CHTR-TTWO failed with LinAlgError

Processing pair CHTR-TFX
ADF test for CHTR-TFX failed with LinAlgError

Processing pair CHTR-DIS
ADF test for CHTR-DIS failed with LinAlgError

Processing pair CVX-CB

Processing pair CVX-KO

Processing pair CVX-COP

Processing pair CVX-ELV

Processing pair CVX-EOG

Processing pair CVX-EG

Processing pair CVX-XOM

Processing pair CVX-IT

Processing pair CVX-GPC

Processing pair CVX-HSY

Processing pair CVX-L

Processing pair CVX-MPC
ADF test for CVX-MPC failed with LinAlgError

Processing pair CVX-MMC

Processing pair CVX-MRK

Processing pair CVX-MET

Processing pair CVX-NUE

Processing pair CVX-ORLY

Processing pair CVX-ON

Processing pair CVX-OKE

Processing pair CVX-PFG

Processing pair CVX-RJF

Processing pair CVX-STLD

Processing pair CVX-VLO

Processing pair CVX-WRB

Processing pair CMG-CB

Processing pair CMG-CTAS

Processing pair CMG-CEG
ADF test for CMG-CEG failed with LinAlgError

Processing pair CMG-CPRT

Processing pair CMG-COST

Processing pair CMG-CMI

Processing pair CMG-DECK

Processing pair CMG-DE

Processing pair CMG-DELL
ADF test for CMG-DELL failed with LinAlgError

Processing pair CMG-DOV

Processing pair CMG-DHI

Processing pair CMG-ETN

Processing pair CMG-EMR

Processing pair CMG-ERIE

Processing pair CMG-EXPD

Processing pair CMG-FDS

Processing pair CMG-FICO

Processing pair CMG-FAST

Processing pair CMG-FTNT

Processing pair CMG-GRMN

Processing pair CMG-IT

Processing pair CMG-GS

Processing pair CMG-HIG

Processing pair CMG-HCA
ADF test for CMG-HCA failed with LinAlgError

Processing pair CMG-HLT
ADF test for CMG-HLT failed with LinAlgError

Processing pair CMG-HUBB

Processing pair CMG-IR
ADF test for CMG-IR failed with LinAlgError

Processing pair CMG-INTU

Processing pair CMG-ISRG

Processing pair CMG-IRM

Processing pair CMG-JBL

Processing pair CMG-J

Processing pair CMG-JPM

Processing pair CMG-KKR
ADF test for CMG-KKR failed with LinAlgError

Processing pair CMG-KLAC

Processing pair CMG-LRCX

Processing pair CMG-LEN

Processing pair CMG-LII

Processing pair CMG-LLY

Processing pair CMG-LIN

Processing pair CMG-LOW

Processing pair CMG-MMC

Processing pair CMG-MLM

Processing pair CMG-MA

Processing pair CMG-MCK

Processing pair CMG-MRK

Processing pair CMG-MU

Processing pair CMG-MSFT

Processing pair CMG-MOH

Processing pair CMG-MPWR

Processing pair CMG-MCO

Processing pair CMG-MS

Processing pair CMG-MSI

Processing pair CMG-MSCI

Processing pair CMG-NDAQ

Processing pair CMG-NVR

Processing pair CMG-NXPI
ADF test for CMG-NXPI failed with LinAlgError

Processing pair CMG-ORLY

Processing pair CMG-ODFL

Processing pair CMG-ORCL

Processing pair CMG-PCAR

Processing pair CMG-PANW
ADF test for CMG-PANW failed with LinAlgError

Processing pair CMG-PH

Processing pair CMG-PAYX

Processing pair CMG-PNR

Processing pair CMG-PG

Processing pair CMG-PGR

Processing pair CMG-PTC

Processing pair CMG-PHM

Processing pair CMG-PWR

Processing pair CMG-QCOM

Processing pair CMG-RJF

Processing pair CMG-RSG

Processing pair CMG-SPGI

Processing pair CMG-STX

Processing pair CMG-NOW
ADF test for CMG-NOW failed with LinAlgError

Processing pair CMG-SHW

Processing pair CMG-SO

Processing pair CMG-STLD

Processing pair CMG-SYK

Processing pair CMG-SNPS

Processing pair CMG-TMUS

Processing pair CMG-TJX

Processing pair CMG-TSCO

Processing pair CMG-TT

Processing pair CMG-TDG

Processing pair CMG-URI

Processing pair CMG-VRSK

Processing pair CMG-VRTX

Processing pair CMG-VMC

Processing pair CMG-WRB

Processing pair CMG-GWW

Processing pair CMG-WMT

Processing pair CMG-WM

Processing pair CMG-WTW

Processing pair CB-CHD

Processing pair CB-CI

Processing pair CB-CINF

Processing pair CB-CTAS

Processing pair CB-CME

Processing pair CB-CMS

Processing pair CB-KO

Processing pair CB-CL

Processing pair CB-ED

Processing pair CB-STZ

Processing pair CB-CEG
ADF test for CB-CEG failed with LinAlgError

Processing pair CB-CPRT

Processing pair CB-COST

Processing pair CB-CSX

Processing pair CB-CMI

Processing pair CB-DHR

Processing pair CB-DRI

Processing pair CB-DE

Processing pair CB-DFS

Processing pair CB-DOV

Processing pair CB-DHI

Processing pair CB-DTE

Processing pair CB-DUK

Processing pair CB-ETN

Processing pair CB-EIX

Processing pair CB-ELV

Processing pair CB-EMR

Processing pair CB-ETR

Processing pair CB-EFX

Processing pair CB-EQIX

Processing pair CB-ERIE

Processing pair CB-EG

Processing pair CB-EXPD

Processing pair CB-EXR

Processing pair CB-FDS

Processing pair CB-FAST

Processing pair CB-FITB

Processing pair CB-FI

Processing pair CB-FTNT

Processing pair CB-GRMN

Processing pair CB-IT

Processing pair CB-GD

Processing pair CB-GIS

Processing pair CB-GPC

Processing pair CB-GL

Processing pair CB-GS

Processing pair CB-HIG

Processing pair CB-HCA
ADF test for CB-HCA failed with LinAlgError

Processing pair CB-HSY

Processing pair CB-HLT
ADF test for CB-HLT failed with LinAlgError

Processing pair CB-HOLX

Processing pair CB-HD

Processing pair CB-HON

Processing pair CB-HWM
ADF test for CB-HWM failed with LinAlgError

Processing pair CB-HUBB

Processing pair CB-IEX

Processing pair CB-ITW

Processing pair CB-IR
ADF test for CB-IR failed with LinAlgError

Processing pair CB-ICE

Processing pair CB-IPG

Processing pair CB-INTU

Processing pair CB-ISRG

Processing pair CB-IRM

Processing pair CB-JBHT

Processing pair CB-JBL

Processing pair CB-J

Processing pair CB-JNJ

Processing pair CB-JCI

Processing pair CB-JPM

Processing pair CB-KDP

Processing pair CB-KKR
ADF test for CB-KKR failed with LinAlgError

Processing pair CB-KLAC

Processing pair CB-KR

Processing pair CB-LHX

Processing pair CB-LH

Processing pair CB-LRCX

Processing pair CB-LDOS

Processing pair CB-LEN

Processing pair CB-LII

Processing pair CB-LIN

Processing pair CB-LYV

Processing pair CB-LMT

Processing pair CB-L

Processing pair CB-LOW

Processing pair CB-MPC
ADF test for CB-MPC failed with LinAlgError

Processing pair CB-MAR

Processing pair CB-MMC

Processing pair CB-MLM

Processing pair CB-MAS

Processing pair CB-MA

Processing pair CB-MCD

Processing pair CB-MCK

Processing pair CB-MRK

Processing pair CB-MET

Processing pair CB-MTD

Processing pair CB-MCHP

Processing pair CB-MU

Processing pair CB-MSFT

Processing pair CB-MOH

Processing pair CB-MDLZ

Processing pair CB-MPWR

Processing pair CB-MNST

Processing pair CB-MCO

Processing pair CB-MS

Processing pair CB-MSI

Processing pair CB-NDAQ

Processing pair CB-NI

Processing pair CB-NDSN

Processing pair CB-NSC

Processing pair CB-NOC

Processing pair CB-NUE

Processing pair CB-NVR

Processing pair CB-NXPI
ADF test for CB-NXPI failed with LinAlgError

Processing pair CB-ORLY

Processing pair CB-ODFL

Processing pair CB-OMC

Processing pair CB-OKE

Processing pair CB-ORCL

Processing pair CB-PCAR

Processing pair CB-PKG

Processing pair CB-PANW
ADF test for CB-PANW failed with LinAlgError

Processing pair CB-PH

Processing pair CB-PAYX

Processing pair CB-PNR

Processing pair CB-PEP

Processing pair CB-PM

Processing pair CB-PNC

Processing pair CB-PFG

Processing pair CB-PG

Processing pair CB-PGR

Processing pair CB-PLD

Processing pair CB-PRU

Processing pair CB-PEG

Processing pair CB-PTC

Processing pair CB-PSA

Processing pair CB-PHM

Processing pair CB-PWR

Processing pair CB-DGX

Processing pair CB-RJF

Processing pair CB-RTX

Processing pair CB-REGN

Processing pair CB-RF

Processing pair CB-RSG

Processing pair CB-ROK

Processing pair CB-ROL

Processing pair CB-ROP

Processing pair CB-ROST

Processing pair CB-SPGI

Processing pair CB-STX

Processing pair CB-SRE

Processing pair CB-NOW
ADF test for CB-NOW failed with LinAlgError

Processing pair CB-SHW

Processing pair CB-SNA

Processing pair CB-SO

Processing pair CB-STLD

Processing pair CB-STE

Processing pair CB-SYK

Processing pair CB-SNPS

Processing pair CB-SYY

Processing pair CB-TMUS

Processing pair CB-TEL

Processing pair CB-TXN

Processing pair CB-TPL

Processing pair CB-TXT

Processing pair CB-TMO

Processing pair CB-TJX

Processing pair CB-TSCO

Processing pair CB-TT

Processing pair CB-TDG

Processing pair CB-TRV

Processing pair CB-TYL

Processing pair CB-ULTA

Processing pair CB-UNP

Processing pair CB-URI

Processing pair CB-UNH

Processing pair CB-VLO

Processing pair CB-VLTO
ADF test for CB-VLTO failed with LinAlgError

Processing pair CB-VRSK

Processing pair CB-VRTX

Processing pair CB-V

Processing pair CB-VMC

Processing pair CB-WRB

Processing pair CB-GWW

Processing pair CB-WMT

Processing pair CB-WM

Processing pair CB-WAT

Processing pair CB-WELL

Processing pair CB-WTW

Processing pair CB-XYL
ADF test for CB-XYL failed with LinAlgError

Processing pair CB-YUM

Processing pair CHD-CI

Processing pair CHD-CINF

Processing pair CHD-CTAS

Processing pair CHD-CSCO

Processing pair CHD-CLX

Processing pair CHD-CME

Processing pair CHD-CMS

Processing pair CHD-KO

Processing pair CHD-CL

Processing pair CHD-CMCSA

Processing pair CHD-ED

Processing pair CHD-STZ

Processing pair CHD-COO

Processing pair CHD-CPRT

Processing pair CHD-GLW

Processing pair CHD-CSGP

Processing pair CHD-COST

Processing pair CHD-CSX

Processing pair CHD-CMI

Processing pair CHD-DHR

Processing pair CHD-DRI

Processing pair CHD-DE

Processing pair CHD-DXCM

Processing pair CHD-DLR

Processing pair CHD-DFS

Processing pair CHD-DPZ

Processing pair CHD-DOV

Processing pair CHD-DTE

Processing pair CHD-DUK

Processing pair CHD-EBAY

Processing pair CHD-ECL

Processing pair CHD-EW

Processing pair CHD-EA

Processing pair CHD-ELV

Processing pair CHD-EMR

Processing pair CHD-ETR

Processing pair CHD-EFX

Processing pair CHD-EQIX

Processing pair CHD-EG

Processing pair CHD-EVRG

Processing pair CHD-ES

Processing pair CHD-EXPD

Processing pair CHD-EXR

Processing pair CHD-FDS

Processing pair CHD-FAST

Processing pair CHD-FI

Processing pair CHD-GRMN

Processing pair CHD-GEN

Processing pair CHD-GPC

Processing pair CHD-GL

Processing pair CHD-HCA
ADF test for CHD-HCA failed with LinAlgError

Processing pair CHD-HSY

Processing pair CHD-HLT
ADF test for CHD-HLT failed with LinAlgError

Processing pair CHD-HOLX

Processing pair CHD-HD

Processing pair CHD-HON

Processing pair CHD-HUM

Processing pair CHD-IEX

Processing pair CHD-IDXX

Processing pair CHD-ITW

Processing pair CHD-ICE

Processing pair CHD-IPG

Processing pair CHD-INTU

Processing pair CHD-ISRG

Processing pair CHD-IQV
ADF test for CHD-IQV failed with LinAlgError

Processing pair CHD-JBHT

Processing pair CHD-JKHY

Processing pair CHD-J

Processing pair CHD-JNJ

Processing pair CHD-JCI

Processing pair CHD-JPM

Processing pair CHD-KDP

Processing pair CHD-KEYS
ADF test for CHD-KEYS failed with LinAlgError

Processing pair CHD-KMB

Processing pair CHD-LHX

Processing pair CHD-LH

Processing pair CHD-LDOS

Processing pair CHD-LII

Processing pair CHD-LIN

Processing pair CHD-LYV

Processing pair CHD-LMT

Processing pair CHD-LOW

Processing pair CHD-LULU

Processing pair CHD-MAR

Processing pair CHD-MMC

Processing pair CHD-MLM

Processing pair CHD-MAS

Processing pair CHD-MA

Processing pair CHD-MKC

Processing pair CHD-MCD

Processing pair CHD-MRK

Processing pair CHD-MTD

Processing pair CHD-MCHP

Processing pair CHD-MU

Processing pair CHD-MSFT

Processing pair CHD-MAA

Processing pair CHD-MOH

Processing pair CHD-MDLZ

Processing pair CHD-MNST

Processing pair CHD-MCO

Processing pair CHD-MS

Processing pair CHD-MSI

Processing pair CHD-MSCI

Processing pair CHD-NDAQ

Processing pair CHD-NFLX

Processing pair CHD-NEE

Processing pair CHD-NKE

Processing pair CHD-NI

Processing pair CHD-NDSN

Processing pair CHD-NSC

Processing pair CHD-NOC

Processing pair CHD-NVR

Processing pair CHD-NXPI
ADF test for CHD-NXPI failed with LinAlgError

Processing pair CHD-ORLY

Processing pair CHD-ODFL

Processing pair CHD-PKG

Processing pair CHD-PAYX

Processing pair CHD-PEP

Processing pair CHD-PNC

Processing pair CHD-POOL

Processing pair CHD-PG

Processing pair CHD-PGR

Processing pair CHD-PLD

Processing pair CHD-PEG

Processing pair CHD-PTC

Processing pair CHD-PSA

Processing pair CHD-DGX

Processing pair CHD-RJF

Processing pair CHD-O

Processing pair CHD-RSG

Processing pair CHD-RMD

Processing pair CHD-RVTY

Processing pair CHD-ROK

Processing pair CHD-ROL

Processing pair CHD-ROP

Processing pair CHD-ROST

Processing pair CHD-SPGI

Processing pair CHD-CRM

Processing pair CHD-SBAC

Processing pair CHD-STX

Processing pair CHD-SRE

Processing pair CHD-NOW
ADF test for CHD-NOW failed with LinAlgError

Processing pair CHD-SHW

Processing pair CHD-SNA

Processing pair CHD-SO

Processing pair CHD-SBUX

Processing pair CHD-STE

Processing pair CHD-SYK

Processing pair CHD-SNPS

Processing pair CHD-SYY

Processing pair CHD-TMUS

Processing pair CHD-TTWO

Processing pair CHD-TEL

Processing pair CHD-TDY

Processing pair CHD-TER

Processing pair CHD-TXN

Processing pair CHD-TMO

Processing pair CHD-TJX

Processing pair CHD-TSCO

Processing pair CHD-TDG

Processing pair CHD-TRV

Processing pair CHD-TYL

Processing pair CHD-UDR

Processing pair CHD-ULTA

Processing pair CHD-UNP

Processing pair CHD-UPS

Processing pair CHD-UNH

Processing pair CHD-VRSN

Processing pair CHD-VRSK

Processing pair CHD-VRTX

Processing pair CHD-V

Processing pair CHD-VMC

Processing pair CHD-WRB

Processing pair CHD-WMT

Processing pair CHD-WM

Processing pair CHD-WAT

Processing pair CHD-WEC

Processing pair CHD-WST

Processing pair CHD-WTW

Processing pair CHD-WDAY
ADF test for CHD-WDAY failed with LinAlgError

Processing pair CHD-XEL

Processing pair CHD-XYL
ADF test for CHD-XYL failed with LinAlgError

Processing pair CHD-YUM

Processing pair CHD-ZTS
ADF test for CHD-ZTS failed with LinAlgError

Processing pair CI-CINF

Processing pair CI-CTAS

Processing pair CI-CME

Processing pair CI-CMS

Processing pair CI-KO

Processing pair CI-CL

Processing pair CI-ED

Processing pair CI-STZ

Processing pair CI-COO

Processing pair CI-CPRT

Processing pair CI-COST

Processing pair CI-CSX

Processing pair CI-CMI

Processing pair CI-DHR

Processing pair CI-DRI

Processing pair CI-DE

Processing pair CI-DFS

Processing pair CI-DPZ

Processing pair CI-DOV

Processing pair CI-DHI

Processing pair CI-DTE

Processing pair CI-DUK

Processing pair CI-EIX

Processing pair CI-EA

Processing pair CI-ELV

Processing pair CI-EMR

Processing pair CI-ETR

Processing pair CI-EFX

Processing pair CI-EQIX

Processing pair CI-ERIE

Processing pair CI-EG

Processing pair CI-EXPD

Processing pair CI-EXR

Processing pair CI-FDS

Processing pair CI-FAST

Processing pair CI-FI

Processing pair CI-IT

Processing pair CI-GD

Processing pair CI-GIS

Processing pair CI-GPC

Processing pair CI-GL

Processing pair CI-GS

Processing pair CI-HIG

Processing pair CI-HCA
ADF test for CI-HCA failed with LinAlgError

Processing pair CI-HSY

Processing pair CI-HLT
ADF test for CI-HLT failed with LinAlgError

Processing pair CI-HOLX

Processing pair CI-HD

Processing pair CI-HON

Processing pair CI-HUBB

Processing pair CI-HBAN

Processing pair CI-HII
ADF test for CI-HII failed with LinAlgError

Processing pair CI-IEX

Processing pair CI-ITW

Processing pair CI-ICE

Processing pair CI-IPG

Processing pair CI-INTU

Processing pair CI-ISRG

Processing pair CI-JBHT

Processing pair CI-JKHY

Processing pair CI-JNJ

Processing pair CI-JPM

Processing pair CI-KDP

Processing pair CI-KR

Processing pair CI-LHX

Processing pair CI-LH

Processing pair CI-LDOS

Processing pair CI-LEN

Processing pair CI-LII

Processing pair CI-LIN

Processing pair CI-LYV

Processing pair CI-LMT

Processing pair CI-LOW

Processing pair CI-LYB
ADF test for CI-LYB failed with LinAlgError

Processing pair CI-MAR

Processing pair CI-MMC

Processing pair CI-MLM

Processing pair CI-MAS

Processing pair CI-MA

Processing pair CI-MCD

Processing pair CI-MRK

Processing pair CI-MET

Processing pair CI-MTD

Processing pair CI-MCHP

Processing pair CI-MSFT

Processing pair CI-MOH

Processing pair CI-MDLZ

Processing pair CI-MNST

Processing pair CI-MCO

Processing pair CI-MS

Processing pair CI-MSI

Processing pair CI-NDAQ

Processing pair CI-NI

Processing pair CI-NDSN

Processing pair CI-NSC

Processing pair CI-NOC

Processing pair CI-NVR

Processing pair CI-NXPI
ADF test for CI-NXPI failed with LinAlgError

Processing pair CI-ORLY

Processing pair CI-ODFL

Processing pair CI-OMC

Processing pair CI-PCAR

Processing pair CI-PKG

Processing pair CI-PANW
ADF test for CI-PANW failed with LinAlgError

Processing pair CI-PH

Processing pair CI-PAYX

Processing pair CI-PEP

Processing pair CI-PM

Processing pair CI-PNC

Processing pair CI-PFG

Processing pair CI-PG

Processing pair CI-PGR

Processing pair CI-PRU

Processing pair CI-PEG

Processing pair CI-PTC

Processing pair CI-PSA

Processing pair CI-DGX

Processing pair CI-RJF

Processing pair CI-RTX

Processing pair CI-REGN

Processing pair CI-RF

Processing pair CI-RSG

Processing pair CI-ROK

Processing pair CI-ROL

Processing pair CI-ROP

Processing pair CI-ROST

Processing pair CI-SPGI

Processing pair CI-SRE

Processing pair CI-SHW

Processing pair CI-SNA

Processing pair CI-SO

Processing pair CI-STLD

Processing pair CI-STE

Processing pair CI-SYK

Processing pair CI-SNPS

Processing pair CI-SYY

Processing pair CI-TMUS

Processing pair CI-TEL

Processing pair CI-TDY

Processing pair CI-TXN

Processing pair CI-TXT

Processing pair CI-TMO

Processing pair CI-TJX

Processing pair CI-TSCO

Processing pair CI-TDG

Processing pair CI-TRV

Processing pair CI-TYL

Processing pair CI-ULTA

Processing pair CI-UNP

Processing pair CI-UNH

Processing pair CI-VLO

Processing pair CI-VRSK

Processing pair CI-VRTX

Processing pair CI-V

Processing pair CI-VMC

Processing pair CI-WRB

Processing pair CI-WMT

Processing pair CI-WM

Processing pair CI-WAT

Processing pair CI-WEC

Processing pair CI-WTW

Processing pair CI-XYL
ADF test for CI-XYL failed with LinAlgError

Processing pair CI-YUM

Processing pair CINF-CTAS

Processing pair CINF-CSCO

Processing pair CINF-CME

Processing pair CINF-CMS

Processing pair CINF-KO

Processing pair CINF-CL

Processing pair CINF-CMCSA

Processing pair CINF-ED

Processing pair CINF-STZ

Processing pair CINF-COO

Processing pair CINF-CPRT

Processing pair CINF-GLW

Processing pair CINF-CSGP

Processing pair CINF-COST

Processing pair CINF-CSX

Processing pair CINF-CMI

Processing pair CINF-DHR

Processing pair CINF-DRI

Processing pair CINF-DE

Processing pair CINF-DLR

Processing pair CINF-DFS

Processing pair CINF-DPZ

Processing pair CINF-DOV

Processing pair CINF-DTE

Processing pair CINF-DUK

Processing pair CINF-EBAY

Processing pair CINF-ECL

Processing pair CINF-EW

Processing pair CINF-ELV

Processing pair CINF-EMR

Processing pair CINF-ETR

Processing pair CINF-EFX

Processing pair CINF-EQIX

Processing pair CINF-EQR

Processing pair CINF-ESS

Processing pair CINF-EG

Processing pair CINF-EVRG

Processing pair CINF-EXC

Processing pair CINF-EXPD

Processing pair CINF-EXR

Processing pair CINF-FDS

Processing pair CINF-FAST

Processing pair CINF-FITB

Processing pair CINF-FI

Processing pair CINF-GRMN

Processing pair CINF-IT

Processing pair CINF-GEV
ADF test for CINF-GEV failed with LinAlgError

Processing pair CINF-GEN

Processing pair CINF-GD

Processing pair CINF-GPC

Processing pair CINF-GL

Processing pair CINF-GS

Processing pair CINF-HIG

Processing pair CINF-HCA
ADF test for CINF-HCA failed with LinAlgError

Processing pair CINF-HSY

Processing pair CINF-HLT
ADF test for CINF-HLT failed with LinAlgError

Processing pair CINF-HOLX

Processing pair CINF-HD

Processing pair CINF-HON

Processing pair CINF-HBAN

Processing pair CINF-IEX

Processing pair CINF-IDXX

Processing pair CINF-ITW

Processing pair CINF-ICE

Processing pair CINF-IPG

Processing pair CINF-INTU

Processing pair CINF-ISRG

Processing pair CINF-IQV
ADF test for CINF-IQV failed with LinAlgError

Processing pair CINF-JBHT

Processing pair CINF-JKHY

Processing pair CINF-J

Processing pair CINF-JNJ

Processing pair CINF-JCI

Processing pair CINF-JPM

Processing pair CINF-KDP

Processing pair CINF-KMB

Processing pair CINF-LHX

Processing pair CINF-LH

Processing pair CINF-LDOS

Processing pair CINF-LII

Processing pair CINF-LIN

Processing pair CINF-LYV

Processing pair CINF-LMT

Processing pair CINF-LOW

Processing pair CINF-MAR

Processing pair CINF-MMC

Processing pair CINF-MLM

Processing pair CINF-MAS

Processing pair CINF-MA

Processing pair CINF-MKC

Processing pair CINF-MCD

Processing pair CINF-MRK

Processing pair CINF-MET

Processing pair CINF-MTD

Processing pair CINF-MGM

Processing pair CINF-MCHP

Processing pair CINF-MSFT

Processing pair CINF-MAA

Processing pair CINF-MOH

Processing pair CINF-MDLZ

Processing pair CINF-MNST

Processing pair CINF-MCO

Processing pair CINF-MS

Processing pair CINF-MSI

Processing pair CINF-MSCI

Processing pair CINF-NDAQ

Processing pair CINF-NEE

Processing pair CINF-NI

Processing pair CINF-NDSN

Processing pair CINF-NSC

Processing pair CINF-NOC

Processing pair CINF-NVR

Processing pair CINF-NXPI
ADF test for CINF-NXPI failed with LinAlgError

Processing pair CINF-ORLY

Processing pair CINF-OKE

Processing pair CINF-PKG

Processing pair CINF-PAYX

Processing pair CINF-PEP

Processing pair CINF-PM

Processing pair CINF-PNW

Processing pair CINF-PNC

Processing pair CINF-POOL

Processing pair CINF-PFG

Processing pair CINF-PG

Processing pair CINF-PLD

Processing pair CINF-PRU

Processing pair CINF-PEG

Processing pair CINF-PTC

Processing pair CINF-PSA

Processing pair CINF-DGX

Processing pair CINF-RJF

Processing pair CINF-RTX

Processing pair CINF-O

Processing pair CINF-RF

Processing pair CINF-RSG

Processing pair CINF-RMD

Processing pair CINF-ROK

Processing pair CINF-ROL

Processing pair CINF-ROP

Processing pair CINF-ROST

Processing pair CINF-SPGI

Processing pair CINF-CRM

Processing pair CINF-STX

Processing pair CINF-SRE

Processing pair CINF-NOW
ADF test for CINF-NOW failed with LinAlgError

Processing pair CINF-SHW

Processing pair CINF-SNA

Processing pair CINF-SO

Processing pair CINF-SBUX

Processing pair CINF-STE

Processing pair CINF-SYK

Processing pair CINF-SYY

Processing pair CINF-TMUS

Processing pair CINF-TEL

Processing pair CINF-TDY

Processing pair CINF-TXN

Processing pair CINF-TMO

Processing pair CINF-TJX

Processing pair CINF-TSCO

Processing pair CINF-TRV

Processing pair CINF-TYL

Processing pair CINF-UDR

Processing pair CINF-ULTA

Processing pair CINF-UNP

Processing pair CINF-UNH

Processing pair CINF-VRSN

Processing pair CINF-VRSK

Processing pair CINF-V

Processing pair CINF-VMC

Processing pair CINF-WRB

Processing pair CINF-WMT

Processing pair CINF-WM

Processing pair CINF-WAT

Processing pair CINF-WEC

Processing pair CINF-WELL

Processing pair CINF-WTW

Processing pair CINF-XEL

Processing pair CINF-XYL
ADF test for CINF-XYL failed with LinAlgError

Processing pair CINF-YUM

Processing pair CINF-ZTS
ADF test for CINF-ZTS failed with LinAlgError

Processing pair CTAS-KO

Processing pair CTAS-CEG
ADF test for CTAS-CEG failed with LinAlgError

Processing pair CTAS-CPRT

Processing pair CTAS-COST

Processing pair CTAS-CSX

Processing pair CTAS-CMI

Processing pair CTAS-DHR

Processing pair CTAS-DRI

Processing pair CTAS-DECK

Processing pair CTAS-DE

Processing pair CTAS-DELL
ADF test for CTAS-DELL failed with LinAlgError

Processing pair CTAS-DFS

Processing pair CTAS-DOV

Processing pair CTAS-DHI

Processing pair CTAS-DUK

Processing pair CTAS-ETN

Processing pair CTAS-ELV

Processing pair CTAS-EMR

Processing pair CTAS-ETR

Processing pair CTAS-EFX

Processing pair CTAS-EQIX

Processing pair CTAS-ERIE

Processing pair CTAS-EG

Processing pair CTAS-EXPD

Processing pair CTAS-FDS

Processing pair CTAS-FICO

Processing pair CTAS-FAST

Processing pair CTAS-FI

Processing pair CTAS-FTNT

Processing pair CTAS-GRMN

Processing pair CTAS-IT

Processing pair CTAS-GEV
ADF test for CTAS-GEV failed with LinAlgError

Processing pair CTAS-GD

Processing pair CTAS-GDDY
ADF test for CTAS-GDDY failed with LinAlgError

Processing pair CTAS-GS

Processing pair CTAS-HIG

Processing pair CTAS-HCA
ADF test for CTAS-HCA failed with LinAlgError

Processing pair CTAS-HLT
ADF test for CTAS-HLT failed with LinAlgError

Processing pair CTAS-HOLX

Processing pair CTAS-HD

Processing pair CTAS-HWM
ADF test for CTAS-HWM failed with LinAlgError

Processing pair CTAS-HUBB

Processing pair CTAS-ITW

Processing pair CTAS-IR
ADF test for CTAS-IR failed with LinAlgError

Processing pair CTAS-ICE

Processing pair CTAS-INTU

Processing pair CTAS-ISRG

Processing pair CTAS-IRM

Processing pair CTAS-JBL

Processing pair CTAS-J

Processing pair CTAS-JCI

Processing pair CTAS-JPM

Processing pair CTAS-KKR
ADF test for CTAS-KKR failed with LinAlgError

Processing pair CTAS-KLAC

Processing pair CTAS-LRCX

Processing pair CTAS-LDOS

Processing pair CTAS-LEN

Processing pair CTAS-LII

Processing pair CTAS-LLY

Processing pair CTAS-LIN

Processing pair CTAS-LYV

Processing pair CTAS-LMT

Processing pair CTAS-L

Processing pair CTAS-LOW

Processing pair CTAS-MPC
ADF test for CTAS-MPC failed with LinAlgError

Processing pair CTAS-MAR

Processing pair CTAS-MMC

Processing pair CTAS-MLM

Processing pair CTAS-MAS

Processing pair CTAS-MA

Processing pair CTAS-MCD

Processing pair CTAS-MCK

Processing pair CTAS-MRK

Processing pair CTAS-META
ADF test for CTAS-META failed with LinAlgError

Processing pair CTAS-MET

Processing pair CTAS-MTD

Processing pair CTAS-MCHP

Processing pair CTAS-MU

Processing pair CTAS-MSFT

Processing pair CTAS-MOH

Processing pair CTAS-MDLZ

Processing pair CTAS-MPWR

Processing pair CTAS-MNST

Processing pair CTAS-MCO

Processing pair CTAS-MS

Processing pair CTAS-MSI

Processing pair CTAS-MSCI

Processing pair CTAS-NDAQ

Processing pair CTAS-NTAP

Processing pair CTAS-NDSN

Processing pair CTAS-NOC

Processing pair CTAS-NRG

Processing pair CTAS-NUE

Processing pair CTAS-NVR

Processing pair CTAS-NXPI
ADF test for CTAS-NXPI failed with LinAlgError

Processing pair CTAS-ORLY

Processing pair CTAS-ODFL

Processing pair CTAS-ON

Processing pair CTAS-OKE

Processing pair CTAS-ORCL

Processing pair CTAS-PCAR

Processing pair CTAS-PKG

Processing pair CTAS-PANW
ADF test for CTAS-PANW failed with LinAlgError

Processing pair CTAS-PH

Processing pair CTAS-PAYX

Processing pair CTAS-PNR

Processing pair CTAS-PEP

Processing pair CTAS-PG

Processing pair CTAS-PGR

Processing pair CTAS-PLD

Processing pair CTAS-PEG

Processing pair CTAS-PTC

Processing pair CTAS-PHM

Processing pair CTAS-PWR

Processing pair CTAS-QCOM

Processing pair CTAS-DGX

Processing pair CTAS-RJF

Processing pair CTAS-RSG

Processing pair CTAS-ROL

Processing pair CTAS-ROP

Processing pair CTAS-ROST

Processing pair CTAS-SPGI

Processing pair CTAS-CRM

Processing pair CTAS-STX

Processing pair CTAS-NOW
ADF test for CTAS-NOW failed with LinAlgError

Processing pair CTAS-SHW

Processing pair CTAS-SNA

Processing pair CTAS-SO

Processing pair CTAS-STLD

Processing pair CTAS-STE

Processing pair CTAS-SYK

Processing pair CTAS-SNPS

Processing pair CTAS-TMUS

Processing pair CTAS-TEL

Processing pair CTAS-TDY

Processing pair CTAS-TXN

Processing pair CTAS-TPL

Processing pair CTAS-TMO

Processing pair CTAS-TJX

Processing pair CTAS-TSCO

Processing pair CTAS-TT

Processing pair CTAS-TDG

Processing pair CTAS-TRV

Processing pair CTAS-TYL

Processing pair CTAS-UNP

Processing pair CTAS-URI

Processing pair CTAS-UNH

Processing pair CTAS-VLO

Processing pair CTAS-VLTO
ADF test for CTAS-VLTO failed with LinAlgError

Processing pair CTAS-VRSK

Processing pair CTAS-VRTX

Processing pair CTAS-V

Processing pair CTAS-VMC

Processing pair CTAS-WRB

Processing pair CTAS-GWW

Processing pair CTAS-WMT

Processing pair CTAS-WM

Processing pair CTAS-WELL

Processing pair CTAS-WTW

Processing pair CTAS-XYL
ADF test for CTAS-XYL failed with LinAlgError

Processing pair CTAS-YUM

Processing pair CSCO-CME

Processing pair CSCO-CMS

Processing pair CSCO-KO

Processing pair CSCO-CMCSA

Processing pair CSCO-ED

Processing pair CSCO-STZ

Processing pair CSCO-COO

Processing pair CSCO-GLW

Processing pair CSCO-CPAY
ADF test for CSCO-CPAY failed with LinAlgError

Processing pair CSCO-CSGP

Processing pair CSCO-CSX

Processing pair CSCO-DHR

Processing pair CSCO-DRI

Processing pair CSCO-DLR

Processing pair CSCO-DPZ

Processing pair CSCO-DOV

Processing pair CSCO-DTE

Processing pair CSCO-DUK

Processing pair CSCO-EBAY

Processing pair CSCO-ECL

Processing pair CSCO-EW

Processing pair CSCO-EA

Processing pair CSCO-ELV

Processing pair CSCO-ETR

Processing pair CSCO-EFX

Processing pair CSCO-EQIX

Processing pair CSCO-ESS

Processing pair CSCO-EG

Processing pair CSCO-EVRG

Processing pair CSCO-EXPD

Processing pair CSCO-EXR

Processing pair CSCO-FDS

Processing pair CSCO-FITB

Processing pair CSCO-FI

Processing pair CSCO-GEV
ADF test for CSCO-GEV failed with LinAlgError

Processing pair CSCO-GL

Processing pair CSCO-HOLX

Processing pair CSCO-HD

Processing pair CSCO-HON

Processing pair CSCO-HUM

Processing pair CSCO-HBAN

Processing pair CSCO-IEX

Processing pair CSCO-IDXX

Processing pair CSCO-ITW

Processing pair CSCO-ICE

Processing pair CSCO-INTU

Processing pair CSCO-ISRG

Processing pair CSCO-IQV
ADF test for CSCO-IQV failed with LinAlgError

Processing pair CSCO-JBHT

Processing pair CSCO-JKHY

Processing pair CSCO-J

Processing pair CSCO-JNJ

Processing pair CSCO-JPM

Processing pair CSCO-KDP

Processing pair CSCO-LHX

Processing pair CSCO-LH

Processing pair CSCO-LDOS

Processing pair CSCO-LYV

Processing pair CSCO-LMT

Processing pair CSCO-LOW

Processing pair CSCO-MAR

Processing pair CSCO-MMC

Processing pair CSCO-MAS

Processing pair CSCO-MA

Processing pair CSCO-MKC

Processing pair CSCO-MCD

Processing pair CSCO-MTD

Processing pair CSCO-MCHP

Processing pair CSCO-MAA

Processing pair CSCO-MDLZ

Processing pair CSCO-MNST

Processing pair CSCO-MCO

Processing pair CSCO-MSCI

Processing pair CSCO-NDAQ

Processing pair CSCO-NFLX

Processing pair CSCO-NEE

Processing pair CSCO-NKE

Processing pair CSCO-NI

Processing pair CSCO-NDSN

Processing pair CSCO-NSC

Processing pair CSCO-NTRS

Processing pair CSCO-NOC

Processing pair CSCO-NVR

Processing pair CSCO-PKG

Processing pair CSCO-PAYX

Processing pair CSCO-PEP

Processing pair CSCO-PNC

Processing pair CSCO-POOL

Processing pair CSCO-PG

Processing pair CSCO-PLD

Processing pair CSCO-PEG

Processing pair CSCO-PTC

Processing pair CSCO-DGX

Processing pair CSCO-O

Processing pair CSCO-RF

Processing pair CSCO-RMD

Processing pair CSCO-RVTY

Processing pair CSCO-ROK

Processing pair CSCO-ROL

Processing pair CSCO-ROP

Processing pair CSCO-ROST

Processing pair CSCO-SPGI

Processing pair CSCO-CRM

Processing pair CSCO-SBAC

Processing pair CSCO-SRE

Processing pair CSCO-SHW

Processing pair CSCO-SBUX

Processing pair CSCO-STE

Processing pair CSCO-SYK

Processing pair CSCO-SYY

Processing pair CSCO-TMUS

Processing pair CSCO-TTWO

Processing pair CSCO-TEL

Processing pair CSCO-TDY

Processing pair CSCO-TXN

Processing pair CSCO-TMO

Processing pair CSCO-TJX

Processing pair CSCO-TRV

Processing pair CSCO-TYL

Processing pair CSCO-UDR

Processing pair CSCO-ULTA

Processing pair CSCO-UNP

Processing pair CSCO-UNH

Processing pair CSCO-VRSN

Processing pair CSCO-VRSK

Processing pair CSCO-V

Processing pair CSCO-VMC

Processing pair CSCO-WM

Processing pair CSCO-WAT

Processing pair CSCO-WEC

Processing pair CSCO-WTW

Processing pair CSCO-WDAY
ADF test for CSCO-WDAY failed with LinAlgError

Processing pair CSCO-XEL

Processing pair CSCO-XYL
ADF test for CSCO-XYL failed with LinAlgError

Processing pair CSCO-YUM

Processing pair CSCO-ZTS
ADF test for CSCO-ZTS failed with LinAlgError

Processing pair CFG-FITB
ADF test for CFG-FITB failed with LinAlgError

Processing pair CFG-HBAN
ADF test for CFG-HBAN failed with LinAlgError

Processing pair CFG-KEY
ADF test for CFG-KEY failed with LinAlgError

Processing pair CFG-NTRS
ADF test for CFG-NTRS failed with LinAlgError

Processing pair CFG-PNC
ADF test for CFG-PNC failed with LinAlgError

Processing pair CFG-RF
ADF test for CFG-RF failed with LinAlgError

Processing pair CFG-TFC
ADF test for CFG-TFC failed with LinAlgError

Processing pair CFG-VLTO
ADF test for CFG-VLTO failed with LinAlgError

Processing pair CLX-CMS

Processing pair CLX-CMCSA

Processing pair CLX-COO

Processing pair CLX-CSGP

Processing pair CLX-CCI

Processing pair CLX-DLR

Processing pair CLX-DPZ

Processing pair CLX-ECL

Processing pair CLX-EA

Processing pair CLX-EQIX

Processing pair CLX-EVRG

Processing pair CLX-ES

Processing pair CLX-GPN

Processing pair CLX-HON

Processing pair CLX-HRL

Processing pair CLX-IEX

Processing pair CLX-JKHY

Processing pair CLX-JNJ

Processing pair CLX-KMB

Processing pair CLX-MKTX

Processing pair CLX-MKC

Processing pair CLX-MDT

Processing pair CLX-PNW

Processing pair CLX-O

Processing pair CLX-SBAC

Processing pair CLX-SBUX

Processing pair CLX-TTWO

Processing pair CLX-TFX

Processing pair CLX-VRSN

Processing pair CLX-VZ

Processing pair CLX-V

Processing pair CLX-WEC

Processing pair CLX-XEL

Processing pair CME-CMS

Processing pair CME-KO

Processing pair CME-CMCSA

Processing pair CME-ED

Processing pair CME-STZ

Processing pair CME-COO

Processing pair CME-CPRT

Processing pair CME-GLW

Processing pair CME-CPAY
ADF test for CME-CPAY failed with LinAlgError

Processing pair CME-CSGP

Processing pair CME-CSX

Processing pair CME-DHR

Processing pair CME-DRI

Processing pair CME-DLR

Processing pair CME-DFS

Processing pair CME-DPZ

Processing pair CME-DOV

Processing pair CME-DTE

Processing pair CME-DUK

Processing pair CME-ECL

Processing pair CME-EW

Processing pair CME-EA

Processing pair CME-ELV

Processing pair CME-EMR

Processing pair CME-ETR

Processing pair CME-EFX

Processing pair CME-EQIX

Processing pair CME-EQR

Processing pair CME-ESS

Processing pair CME-EG

Processing pair CME-EVRG

Processing pair CME-ES

Processing pair CME-EXC

Processing pair CME-EXPD

Processing pair CME-EXR

Processing pair CME-FDS

Processing pair CME-FITB

Processing pair CME-FI

Processing pair CME-GRMN

Processing pair CME-GD

Processing pair CME-GL

Processing pair CME-HOLX

Processing pair CME-HD

Processing pair CME-HON

Processing pair CME-HUM

Processing pair CME-HBAN

Processing pair CME-HII
ADF test for CME-HII failed with LinAlgError

Processing pair CME-IEX

Processing pair CME-IDXX

Processing pair CME-ITW

Processing pair CME-ICE

Processing pair CME-INTU

Processing pair CME-ISRG

Processing pair CME-IQV
ADF test for CME-IQV failed with LinAlgError

Processing pair CME-JBHT

Processing pair CME-JKHY

Processing pair CME-J

Processing pair CME-JNJ

Processing pair CME-JPM

Processing pair CME-KDP

Processing pair CME-KMB

Processing pair CME-LHX

Processing pair CME-LH

Processing pair CME-LDOS

Processing pair CME-LII

Processing pair CME-LYV

Processing pair CME-LMT

Processing pair CME-LOW

Processing pair CME-MAR

Processing pair CME-MMC

Processing pair CME-MLM

Processing pair CME-MAS

Processing pair CME-MA

Processing pair CME-MKC

Processing pair CME-MCD

Processing pair CME-MRK

Processing pair CME-MTD

Processing pair CME-MCHP

Processing pair CME-MU

Processing pair CME-MSFT

Processing pair CME-MAA

Processing pair CME-MOH

Processing pair CME-MDLZ

Processing pair CME-MNST

Processing pair CME-MCO

Processing pair CME-MSCI

Processing pair CME-NDAQ

Processing pair CME-NFLX

Processing pair CME-NEE

Processing pair CME-NI

Processing pair CME-NDSN

Processing pair CME-NSC

Processing pair CME-NTRS

Processing pair CME-NOC

Processing pair CME-NVR

Processing pair CME-NXPI
ADF test for CME-NXPI failed with LinAlgError

Processing pair CME-PKG

Processing pair CME-PAYX

Processing pair CME-PEP

Processing pair CME-PNW

Processing pair CME-PNC

Processing pair CME-POOL

Processing pair CME-PG

Processing pair CME-PLD

Processing pair CME-PEG

Processing pair CME-PTC

Processing pair CME-PSA

Processing pair CME-DGX

Processing pair CME-RJF

Processing pair CME-RTX

Processing pair CME-O

Processing pair CME-RF

Processing pair CME-RSG

Processing pair CME-RMD

Processing pair CME-RVTY

Processing pair CME-ROK

Processing pair CME-ROL

Processing pair CME-ROP

Processing pair CME-ROST

Processing pair CME-SPGI

Processing pair CME-CRM

Processing pair CME-SBAC

Processing pair CME-SRE

Processing pair CME-SHW

Processing pair CME-SOLV
ADF test for CME-SOLV failed with LinAlgError

Processing pair CME-SO

Processing pair CME-SBUX

Processing pair CME-STE

Processing pair CME-SYK

Processing pair CME-SYY

Processing pair CME-TMUS

Processing pair CME-TTWO

Processing pair CME-TEL

Processing pair CME-TDY

Processing pair CME-TER

Processing pair CME-TXN

Processing pair CME-TMO

Processing pair CME-TJX

Processing pair CME-TRV

Processing pair CME-TYL

Processing pair CME-UDR

Processing pair CME-ULTA

Processing pair CME-UNP

Processing pair CME-UNH

Processing pair CME-VRSN

Processing pair CME-VRSK

Processing pair CME-V

Processing pair CME-VMC

Processing pair CME-WRB

Processing pair CME-WMT

Processing pair CME-WM

Processing pair CME-WAT

Processing pair CME-WEC

Processing pair CME-WST

Processing pair CME-WTW

Processing pair CME-WDAY
ADF test for CME-WDAY failed with LinAlgError

Processing pair CME-XEL

Processing pair CME-XYL
ADF test for CME-XYL failed with LinAlgError

Processing pair CME-YUM

Processing pair CME-ZTS
ADF test for CME-ZTS failed with LinAlgError

Processing pair CMS-KO

Processing pair CMS-CL

Processing pair CMS-CMCSA

Processing pair CMS-ED

Processing pair CMS-STZ

Processing pair CMS-COO

Processing pair CMS-GLW

Processing pair CMS-CPAY
ADF test for CMS-CPAY failed with LinAlgError

Processing pair CMS-CSGP

Processing pair CMS-CCI

Processing pair CMS-CSX

Processing pair CMS-DHR

Processing pair CMS-DRI

Processing pair CMS-DLR

Processing pair CMS-DPZ

Processing pair CMS-DOV

Processing pair CMS-DTE

Processing pair CMS-DUK

Processing pair CMS-EBAY

Processing pair CMS-ECL

Processing pair CMS-EW

Processing pair CMS-EA

Processing pair CMS-ELV

Processing pair CMS-ETR

Processing pair CMS-EFX

Processing pair CMS-EQIX

Processing pair CMS-EQR

Processing pair CMS-ESS

Processing pair CMS-EG

Processing pair CMS-EVRG

Processing pair CMS-ES

Processing pair CMS-EXPD

Processing pair CMS-EXR

Processing pair CMS-FDS

Processing pair CMS-FI

Processing pair CMS-GEN

Processing pair CMS-GD

Processing pair CMS-GL

Processing pair CMS-HSIC

Processing pair CMS-HSY

Processing pair CMS-HOLX

Processing pair CMS-HD

Processing pair CMS-HON

Processing pair CMS-HRL

Processing pair CMS-HUM

Processing pair CMS-HBAN

Processing pair CMS-IEX

Processing pair CMS-IDXX

Processing pair CMS-ITW

Processing pair CMS-ICE

Processing pair CMS-IQV
ADF test for CMS-IQV failed with LinAlgError

Processing pair CMS-JBHT

Processing pair CMS-JKHY

Processing pair CMS-JNJ

Processing pair CMS-JPM

Processing pair CMS-KDP

Processing pair CMS-KEYS
ADF test for CMS-KEYS failed with LinAlgError

Processing pair CMS-KMB

Processing pair CMS-LHX

Processing pair CMS-LH

Processing pair CMS-LDOS

Processing pair CMS-LYV

Processing pair CMS-LMT

Processing pair CMS-LOW

Processing pair CMS-MAR

Processing pair CMS-MMC

Processing pair CMS-MAS

Processing pair CMS-MA

Processing pair CMS-MKC

Processing pair CMS-MCD

Processing pair CMS-MDT

Processing pair CMS-MRK

Processing pair CMS-MTD

Processing pair CMS-MCHP

Processing pair CMS-MAA

Processing pair CMS-MDLZ

Processing pair CMS-MNST

Processing pair CMS-MCO

Processing pair CMS-NDAQ

Processing pair CMS-NEE

Processing pair CMS-NKE

Processing pair CMS-NI

Processing pair CMS-NDSN

Processing pair CMS-NSC

Processing pair CMS-NTRS

Processing pair CMS-NOC

Processing pair CMS-PKG

Processing pair CMS-PAYX

Processing pair CMS-PEP

Processing pair CMS-PNW

Processing pair CMS-PNC

Processing pair CMS-POOL

Processing pair CMS-PPG

Processing pair CMS-PG

Processing pair CMS-PLD

Processing pair CMS-PEG

Processing pair CMS-PSA

Processing pair CMS-DGX

Processing pair CMS-RTX

Processing pair CMS-O

Processing pair CMS-RF

Processing pair CMS-RSG

Processing pair CMS-RMD

Processing pair CMS-RVTY

Processing pair CMS-ROK

Processing pair CMS-ROL

Processing pair CMS-ROP

Processing pair CMS-ROST

Processing pair CMS-SPGI

Processing pair CMS-CRM

Processing pair CMS-SBAC

Processing pair CMS-SRE

Processing pair CMS-SHW

Processing pair CMS-SO

Processing pair CMS-SBUX

Processing pair CMS-STE

Processing pair CMS-SYK

Processing pair CMS-SYY

Processing pair CMS-TMUS

Processing pair CMS-TTWO

Processing pair CMS-TEL

Processing pair CMS-TDY

Processing pair CMS-TXN

Processing pair CMS-TMO

Processing pair CMS-TJX

Processing pair CMS-TRV

Processing pair CMS-TYL

Processing pair CMS-UDR

Processing pair CMS-ULTA

Processing pair CMS-UNP

Processing pair CMS-UNH

Processing pair CMS-VLTO
ADF test for CMS-VLTO failed with LinAlgError

Processing pair CMS-VRSN

Processing pair CMS-VRSK

Processing pair CMS-V

Processing pair CMS-VMC

Processing pair CMS-WRB

Processing pair CMS-WMT

Processing pair CMS-WM

Processing pair CMS-WAT

Processing pair CMS-WEC

Processing pair CMS-WTW

Processing pair CMS-XEL

Processing pair CMS-XYL
ADF test for CMS-XYL failed with LinAlgError

Processing pair CMS-YUM

Processing pair CMS-ZTS
ADF test for CMS-ZTS failed with LinAlgError

Processing pair KO-CL

Processing pair KO-ED

Processing pair KO-STZ

Processing pair KO-COO

Processing pair KO-CPRT

Processing pair KO-GLW

Processing pair KO-CSGP

Processing pair KO-COST

Processing pair KO-CSX

Processing pair KO-CMI

Processing pair KO-DHR

Processing pair KO-DRI

Processing pair KO-DE

Processing pair KO-DLR

Processing pair KO-DFS

Processing pair KO-DPZ

Processing pair KO-DOV

Processing pair KO-DHI

Processing pair KO-DTE

Processing pair KO-DUK

Processing pair KO-ECL

Processing pair KO-EIX

Processing pair KO-ELV

Processing pair KO-EMR

Processing pair KO-ETR

Processing pair KO-EFX

Processing pair KO-EQIX

Processing pair KO-ERIE

Processing pair KO-EG

Processing pair KO-EVRG

Processing pair KO-EXC

Processing pair KO-EXPD

Processing pair KO-EXR

Processing pair KO-FDS

Processing pair KO-FAST

Processing pair KO-FITB

Processing pair KO-FI

Processing pair KO-FTNT

Processing pair KO-GRMN

Processing pair KO-IT

Processing pair KO-GEN

Processing pair KO-GD

Processing pair KO-GIS

Processing pair KO-GPC

Processing pair KO-GL

Processing pair KO-GS

Processing pair KO-HIG

Processing pair KO-HCA
ADF test for KO-HCA failed with LinAlgError

Processing pair KO-HSY

Processing pair KO-HLT
ADF test for KO-HLT failed with LinAlgError

Processing pair KO-HOLX

Processing pair KO-HD

Processing pair KO-HON

Processing pair KO-HUM

Processing pair KO-IEX

Processing pair KO-ITW

Processing pair KO-ICE

Processing pair KO-IPG

Processing pair KO-INTU

Processing pair KO-ISRG

Processing pair KO-IQV
ADF test for KO-IQV failed with LinAlgError

Processing pair KO-JBHT

Processing pair KO-JKHY

Processing pair KO-J

Processing pair KO-JNJ

Processing pair KO-JCI

Processing pair KO-JPM

Processing pair KO-KDP

Processing pair KO-KEYS
ADF test for KO-KEYS failed with LinAlgError

Processing pair KO-KMB

Processing pair KO-KR

Processing pair KO-LHX

Processing pair KO-LH

Processing pair KO-LDOS

Processing pair KO-LEN

Processing pair KO-LII

Processing pair KO-LIN

Processing pair KO-LYV

Processing pair KO-LMT

Processing pair KO-LOW

Processing pair KO-MAR

Processing pair KO-MMC

Processing pair KO-MLM

Processing pair KO-MAS

Processing pair KO-MA

Processing pair KO-MKC

Processing pair KO-MCD

Processing pair KO-MRK

Processing pair KO-MET

Processing pair KO-MTD

Processing pair KO-MCHP

Processing pair KO-MSFT

Processing pair KO-MAA

Processing pair KO-MOH

Processing pair KO-MDLZ

Processing pair KO-MPWR

Processing pair KO-MNST

Processing pair KO-MCO

Processing pair KO-MS

Processing pair KO-MSI

Processing pair KO-MSCI

Processing pair KO-NDAQ

Processing pair KO-NEE

Processing pair KO-NI

Processing pair KO-NDSN

Processing pair KO-NSC

Processing pair KO-NOC

Processing pair KO-NVR

Processing pair KO-NXPI
ADF test for KO-NXPI failed with LinAlgError

Processing pair KO-ORLY

Processing pair KO-ODFL

Processing pair KO-OKE

Processing pair KO-ORCL

Processing pair KO-PKG

Processing pair KO-PANW
ADF test for KO-PANW failed with LinAlgError

Processing pair KO-PH

Processing pair KO-PAYX

Processing pair KO-PEP

Processing pair KO-PM

Processing pair KO-PNC

Processing pair KO-POOL

Processing pair KO-PFG

Processing pair KO-PG

Processing pair KO-PGR

Processing pair KO-PLD

Processing pair KO-PEG

Processing pair KO-PTC

Processing pair KO-PSA

Processing pair KO-DGX

Processing pair KO-RJF

Processing pair KO-RTX

Processing pair KO-O

Processing pair KO-REGN

Processing pair KO-RF

Processing pair KO-RSG

Processing pair KO-RMD

Processing pair KO-ROK

Processing pair KO-ROL

Processing pair KO-ROP

Processing pair KO-ROST

Processing pair KO-SPGI

Processing pair KO-CRM

Processing pair KO-STX

Processing pair KO-SRE

Processing pair KO-NOW
ADF test for KO-NOW failed with LinAlgError

Processing pair KO-SHW

Processing pair KO-SNA

Processing pair KO-SO

Processing pair KO-SBUX

Processing pair KO-STE

Processing pair KO-SYK

Processing pair KO-SNPS

Processing pair KO-SYY

Processing pair KO-TMUS

Processing pair KO-TEL

Processing pair KO-TDY

Processing pair KO-TER

Processing pair KO-TXN

Processing pair KO-TMO

Processing pair KO-TJX

Processing pair KO-TSCO

Processing pair KO-TT

Processing pair KO-TDG

Processing pair KO-TRV

Processing pair KO-TYL

Processing pair KO-UDR

Processing pair KO-ULTA

Processing pair KO-UNP

Processing pair KO-UPS

Processing pair KO-UNH

Processing pair KO-VLO

Processing pair KO-VLTO
ADF test for KO-VLTO failed with LinAlgError

Processing pair KO-VRSK

Processing pair KO-VRTX

Processing pair KO-VICI
ADF test for KO-VICI failed with LinAlgError

Processing pair KO-V

Processing pair KO-VMC

Processing pair KO-WRB

Processing pair KO-WMT

Processing pair KO-WM

Processing pair KO-WAT

Processing pair KO-WEC

Processing pair KO-WELL

Processing pair KO-WST

Processing pair KO-WTW

Processing pair KO-XEL

Processing pair KO-XYL
ADF test for KO-XYL failed with LinAlgError

Processing pair KO-YUM

Processing pair KO-ZTS
ADF test for KO-ZTS failed with LinAlgError

Processing pair CTSH-CMCSA

Processing pair CTSH-STZ

Processing pair CTSH-EMN

Processing pair CTSH-EA

Processing pair CTSH-ESS

Processing pair CTSH-EXPE

Processing pair CTSH-FDX

Processing pair CTSH-HBAN

Processing pair CTSH-NTRS

Processing pair CTSH-PPG

Processing pair CL-ED

Processing pair CL-STZ

Processing pair CL-COO

Processing pair CL-CMI

Processing pair CL-DVA

Processing pair CL-DLR

Processing pair CL-DFS

Processing pair CL-DPZ

Processing pair CL-DOV

Processing pair CL-DTE

Processing pair CL-DUK

Processing pair CL-ECL

Processing pair CL-EIX

Processing pair CL-EFX

Processing pair CL-EQIX

Processing pair CL-EG

Processing pair CL-FI

Processing pair CL-GD

Processing pair CL-GIS

Processing pair CL-HIG

Processing pair CL-HCA
ADF test for CL-HCA failed with LinAlgError

Processing pair CL-HLT
ADF test for CL-HLT failed with LinAlgError

Processing pair CL-HOLX

Processing pair CL-HD

Processing pair CL-HON

Processing pair CL-IEX

Processing pair CL-ITW

Processing pair CL-IR
ADF test for CL-IR failed with LinAlgError

Processing pair CL-ICE

Processing pair CL-JNJ

Processing pair CL-JCI

Processing pair CL-JPM

Processing pair CL-K

Processing pair CL-KMB

Processing pair CL-KR

Processing pair CL-LDOS

Processing pair CL-LEN

Processing pair CL-LII

Processing pair CL-LMT

Processing pair CL-LOW

Processing pair CL-LYB
ADF test for CL-LYB failed with LinAlgError

Processing pair CL-MAR

Processing pair CL-MMC

Processing pair CL-MLM

Processing pair CL-MAS

Processing pair CL-MA

Processing pair CL-MRK

Processing pair CL-META
ADF test for CL-META failed with LinAlgError

Processing pair CL-MDLZ

Processing pair CL-MNST

Processing pair CL-MCO

Processing pair CL-NDAQ

Processing pair CL-NI

Processing pair CL-NDSN

Processing pair CL-NOC

Processing pair CL-NVR

Processing pair CL-NXPI
ADF test for CL-NXPI failed with LinAlgError

Processing pair CL-OMC

Processing pair CL-PKG

Processing pair CL-PAYX

Processing pair CL-PNR

Processing pair CL-PEP

Processing pair CL-PM

Processing pair CL-PNW

Processing pair CL-PPG

Processing pair CL-PPL

Processing pair CL-PFG

Processing pair CL-PG

Processing pair CL-PRU

Processing pair CL-PEG

Processing pair CL-PSA

Processing pair CL-DGX

Processing pair CL-RTX

Processing pair CL-REGN

Processing pair CL-ROL

Processing pair CL-ROP

Processing pair CL-ROST

Processing pair CL-SPGI

Processing pair CL-STX

Processing pair CL-SRE

Processing pair CL-NOW
ADF test for CL-NOW failed with LinAlgError

Processing pair CL-SHW

Processing pair CL-SNA

Processing pair CL-SO

Processing pair CL-SYK

Processing pair CL-TMUS

Processing pair CL-TEL

Processing pair CL-TXN

Processing pair CL-TJX

Processing pair CL-TRV

Processing pair CL-TYL

Processing pair CL-UNP

Processing pair CL-UHS

Processing pair CL-VLTO
ADF test for CL-VLTO failed with LinAlgError

Processing pair CL-VRSK

Processing pair CL-V

Processing pair CL-VMC

Processing pair CL-WRB

Processing pair CL-WMT

Processing pair CL-WM

Processing pair CL-WEC

Processing pair CL-WELL

Processing pair CL-WTW

Processing pair CL-XYL
ADF test for CL-XYL failed with LinAlgError

Processing pair CL-YUM

Processing pair CMCSA-STZ

Processing pair CMCSA-COO

Processing pair CMCSA-CPAY
ADF test for CMCSA-CPAY failed with LinAlgError

Processing pair CMCSA-CSGP

Processing pair CMCSA-CCI

Processing pair CMCSA-DLR

Processing pair CMCSA-DPZ

Processing pair CMCSA-DTE

Processing pair CMCSA-DUK

Processing pair CMCSA-EBAY

Processing pair CMCSA-ECL

Processing pair CMCSA-EW

Processing pair CMCSA-EA

Processing pair CMCSA-EFX

Processing pair CMCSA-EQIX

Processing pair CMCSA-EQR

Processing pair CMCSA-ESS

Processing pair CMCSA-EVRG

Processing pair CMCSA-ES

Processing pair CMCSA-GPN

Processing pair CMCSA-GL

Processing pair CMCSA-HSIC

Processing pair CMCSA-HON

Processing pair CMCSA-HRL

Processing pair CMCSA-IEX

Processing pair CMCSA-ITW

Processing pair CMCSA-ICE

Processing pair CMCSA-JKHY

Processing pair CMCSA-JNJ

Processing pair CMCSA-KMB

Processing pair CMCSA-LHX

Processing pair CMCSA-LH

Processing pair CMCSA-MAS

Processing pair CMCSA-MKC

Processing pair CMCSA-MDT

Processing pair CMCSA-MNST

Processing pair CMCSA-NKE

Processing pair CMCSA-NI

Processing pair CMCSA-NSC

Processing pair CMCSA-NTRS

Processing pair CMCSA-PNW

Processing pair CMCSA-PNC

Processing pair CMCSA-PPG

Processing pair CMCSA-O

Processing pair CMCSA-RVTY

Processing pair CMCSA-ROK

Processing pair CMCSA-ROP

Processing pair CMCSA-ROST

Processing pair CMCSA-CRM

Processing pair CMCSA-SBAC

Processing pair CMCSA-SWKS

Processing pair CMCSA-SBUX

Processing pair CMCSA-SYY

Processing pair CMCSA-TROW

Processing pair CMCSA-TTWO

Processing pair CMCSA-TEL

Processing pair CMCSA-TFX

Processing pair CMCSA-TYL

Processing pair CMCSA-USB

Processing pair CMCSA-UDR

Processing pair CMCSA-UNP

Processing pair CMCSA-VRSN

Processing pair CMCSA-VZ

Processing pair CMCSA-V

Processing pair CMCSA-DIS

Processing pair CMCSA-WEC

Processing pair CMCSA-XEL

Processing pair CMCSA-ZBH

Processing pair CAG-STZ

Processing pair CAG-EA

Processing pair CAG-HSIC

Processing pair CAG-KMB

Processing pair CAG-SJM

Processing pair COP-EOG

Processing pair COP-XOM

Processing pair COP-HES

Processing pair COP-MPC
ADF test for COP-MPC failed with LinAlgError

Processing pair COP-MCK

Processing pair COP-NUE

Processing pair COP-ON

Processing pair COP-STLD

Processing pair COP-VLO

Processing pair COP-GWW

Processing pair ED-STZ

Processing pair ED-COO

Processing pair ED-CSX

Processing pair ED-DRI

Processing pair ED-DLR

Processing pair ED-DTE

Processing pair ED-DUK

Processing pair ED-EIX

Processing pair ED-ELV

Processing pair ED-ETR

Processing pair ED-EFX

Processing pair ED-EQIX

Processing pair ED-EG

Processing pair ED-EVRG

Processing pair ED-EXC

Processing pair ED-EXR

Processing pair ED-FDS

Processing pair ED-FI

Processing pair ED-GD

Processing pair ED-GIS

Processing pair ED-GPC

Processing pair ED-GL

Processing pair ED-HIG

Processing pair ED-HCA
ADF test for ED-HCA failed with LinAlgError

Processing pair ED-HSY

Processing pair ED-HOLX

Processing pair ED-HD

Processing pair ED-HON

Processing pair ED-HII
ADF test for ED-HII failed with LinAlgError

Processing pair ED-IEX

Processing pair ED-ITW

Processing pair ED-ICE

Processing pair ED-JBHT

Processing pair ED-JKHY

Processing pair ED-JNJ

Processing pair ED-JPM

Processing pair ED-KDP

Processing pair ED-KMB

Processing pair ED-LHX

Processing pair ED-LDOS

Processing pair ED-LYV

Processing pair ED-LMT

Processing pair ED-LOW

Processing pair ED-MAR

Processing pair ED-MMC

Processing pair ED-MLM

Processing pair ED-MAS

Processing pair ED-MA

Processing pair ED-MCD

Processing pair ED-MRK

Processing pair ED-MTD

Processing pair ED-MCHP

Processing pair ED-MDLZ

Processing pair ED-MNST

Processing pair ED-MCO

Processing pair ED-MSI

Processing pair ED-NDAQ

Processing pair ED-NEE

Processing pair ED-NI

Processing pair ED-NDSN

Processing pair ED-NOC

Processing pair ED-NVR

Processing pair ED-ORLY

Processing pair ED-PKG

Processing pair ED-PAYX

Processing pair ED-PEP

Processing pair ED-PM

Processing pair ED-PNW

Processing pair ED-PFG

Processing pair ED-PG

Processing pair ED-PLD

Processing pair ED-PEG

Processing pair ED-PSA

Processing pair ED-DGX

Processing pair ED-RJF

Processing pair ED-RTX

Processing pair ED-O

Processing pair ED-RSG

Processing pair ED-ROL

Processing pair ED-ROP

Processing pair ED-ROST

Processing pair ED-SPGI

Processing pair ED-SRE

Processing pair ED-SHW

Processing pair ED-SNA

Processing pair ED-SO

Processing pair ED-STE

Processing pair ED-SYK

Processing pair ED-SYY

Processing pair ED-TMUS

Processing pair ED-TEL

Processing pair ED-TDY

Processing pair ED-TXN

Processing pair ED-TMO

Processing pair ED-TJX

Processing pair ED-TRV

Processing pair ED-UDR

Processing pair ED-ULTA

Processing pair ED-UNP

Processing pair ED-UNH

Processing pair ED-VLO

Processing pair ED-VRSK

Processing pair ED-VRTX

Processing pair ED-V

Processing pair ED-VMC

Processing pair ED-WRB

Processing pair ED-WM

Processing pair ED-WAT

Processing pair ED-WEC

Processing pair ED-WELL

Processing pair ED-WTW

Processing pair ED-XEL

Processing pair ED-YUM

Processing pair STZ-COO

Processing pair STZ-GLW

Processing pair STZ-CPAY
ADF test for STZ-CPAY failed with LinAlgError

Processing pair STZ-CSX

Processing pair STZ-DRI

Processing pair STZ-DLR

Processing pair STZ-DPZ

Processing pair STZ-DTE

Processing pair STZ-DUK

Processing pair STZ-ECL

Processing pair STZ-EIX

Processing pair STZ-EA

Processing pair STZ-ELV

Processing pair STZ-EFX

Processing pair STZ-EQIX

Processing pair STZ-ESS

Processing pair STZ-EG

Processing pair STZ-EVRG

Processing pair STZ-EXR

Processing pair STZ-FDX

Processing pair STZ-FI

Processing pair STZ-GD

Processing pair STZ-GL

Processing pair STZ-HSIC

Processing pair STZ-HOLX

Processing pair STZ-HD

Processing pair STZ-HON

Processing pair STZ-HUM

Processing pair STZ-HBAN

Processing pair STZ-HII
ADF test for STZ-HII failed with LinAlgError

Processing pair STZ-IEX

Processing pair STZ-ITW

Processing pair STZ-ICE

Processing pair STZ-IPG

Processing pair STZ-JBHT

Processing pair STZ-JKHY

Processing pair STZ-JNJ

Processing pair STZ-KDP

Processing pair STZ-KMB

Processing pair STZ-LHX

Processing pair STZ-LH

Processing pair STZ-LMT

Processing pair STZ-LYB
ADF test for STZ-LYB failed with LinAlgError

Processing pair STZ-MTB

Processing pair STZ-MAR

Processing pair STZ-MAS

Processing pair STZ-MCD

Processing pair STZ-MGM

Processing pair STZ-MCHP

Processing pair STZ-MDLZ

Processing pair STZ-MNST

Processing pair STZ-NI

Processing pair STZ-NDSN

Processing pair STZ-NTRS

Processing pair STZ-NOC

Processing pair STZ-NXPI
ADF test for STZ-NXPI failed with LinAlgError

Processing pair STZ-PKG

Processing pair STZ-PAYX

Processing pair STZ-PEP

Processing pair STZ-PNW

Processing pair STZ-PNC

Processing pair STZ-PPG

Processing pair STZ-PPL

Processing pair STZ-PFG

Processing pair STZ-PRU

Processing pair STZ-PEG

Processing pair STZ-PSA

Processing pair STZ-DGX

Processing pair STZ-O

Processing pair STZ-RF

Processing pair STZ-ROK

Processing pair STZ-ROL

Processing pair STZ-ROP

Processing pair STZ-ROST

Processing pair STZ-SRE

Processing pair STZ-SJM

Processing pair STZ-SNA

Processing pair STZ-SBUX

Processing pair STZ-SYK

Processing pair STZ-SYY

Processing pair STZ-TTWO

Processing pair STZ-TEL

Processing pair STZ-TXN

Processing pair STZ-TXT

Processing pair STZ-TRV

Processing pair STZ-TSN

Processing pair STZ-UDR

Processing pair STZ-ULTA

Processing pair STZ-UNP

Processing pair STZ-UNH

Processing pair STZ-V

Processing pair STZ-VMC

Processing pair STZ-WAT

Processing pair STZ-WEC

Processing pair STZ-WY

Processing pair STZ-WTW

Processing pair STZ-XEL

Processing pair STZ-XYL
ADF test for STZ-XYL failed with LinAlgError

Processing pair STZ-YUM

Processing pair CEG-COST
ADF test for CEG-COST failed with LinAlgError

Processing pair CEG-CMI
ADF test for CEG-CMI failed with LinAlgError

Processing pair CEG-DECK
ADF test for CEG-DECK failed with LinAlgError

Processing pair CEG-DELL
ADF test for CEG-DELL failed with LinAlgError

Processing pair CEG-FANG
ADF test for CEG-FANG failed with LinAlgError

Processing pair CEG-ETN
ADF test for CEG-ETN failed with LinAlgError

Processing pair CEG-ECL
ADF test for CEG-ECL failed with LinAlgError

Processing pair CEG-ERIE
ADF test for CEG-ERIE failed with LinAlgError

Processing pair CEG-FICO
ADF test for CEG-FICO failed with LinAlgError

Processing pair CEG-FI
ADF test for CEG-FI failed with LinAlgError

Processing pair CEG-IT
ADF test for CEG-IT failed with LinAlgError

Processing pair CEG-GE
ADF test for CEG-GE failed with LinAlgError

Processing pair CEG-GD
ADF test for CEG-GD failed with LinAlgError

Processing pair CEG-GDDY
ADF test for CEG-GDDY failed with LinAlgError

Processing pair CEG-GS
ADF test for CEG-GS failed with LinAlgError

Processing pair CEG-HIG
ADF test for CEG-HIG failed with LinAlgError

Processing pair CEG-HLT
ADF test for CEG-HLT failed with LinAlgError

Processing pair CEG-HWM
ADF test for CEG-HWM failed with LinAlgError

Processing pair CEG-HUBB
ADF test for CEG-HUBB failed with LinAlgError

Processing pair CEG-IBM
ADF test for CEG-IBM failed with LinAlgError

Processing pair CEG-IR
ADF test for CEG-IR failed with LinAlgError

Processing pair CEG-IRM
ADF test for CEG-IRM failed with LinAlgError

Processing pair CEG-JPM
ADF test for CEG-JPM failed with LinAlgError

Processing pair CEG-KKR
ADF test for CEG-KKR failed with LinAlgError

Processing pair CEG-KLAC
ADF test for CEG-KLAC failed with LinAlgError

Processing pair CEG-LDOS
ADF test for CEG-LDOS failed with LinAlgError

Processing pair CEG-LII
ADF test for CEG-LII failed with LinAlgError

Processing pair CEG-LLY
ADF test for CEG-LLY failed with LinAlgError

Processing pair CEG-MMC
ADF test for CEG-MMC failed with LinAlgError

Processing pair CEG-META
ADF test for CEG-META failed with LinAlgError

Processing pair CEG-MSI
ADF test for CEG-MSI failed with LinAlgError

Processing pair CEG-NFLX
ADF test for CEG-NFLX failed with LinAlgError

Processing pair CEG-NRG
ADF test for CEG-NRG failed with LinAlgError

Processing pair CEG-NVDA
ADF test for CEG-NVDA failed with LinAlgError

Processing pair CEG-NVR
ADF test for CEG-NVR failed with LinAlgError

Processing pair CEG-OKE
ADF test for CEG-OKE failed with LinAlgError

Processing pair CEG-PH
ADF test for CEG-PH failed with LinAlgError

Processing pair CEG-PGR
ADF test for CEG-PGR failed with LinAlgError

Processing pair CEG-PHM
ADF test for CEG-PHM failed with LinAlgError

Processing pair CEG-PWR
ADF test for CEG-PWR failed with LinAlgError

Processing pair CEG-RL
ADF test for CEG-RL failed with LinAlgError

Processing pair CEG-RSG
ADF test for CEG-RSG failed with LinAlgError

Processing pair CEG-RCL
ADF test for CEG-RCL failed with LinAlgError

Processing pair CEG-TMUS
ADF test for CEG-TMUS failed with LinAlgError

Processing pair CEG-TRGP
ADF test for CEG-TRGP failed with LinAlgError

Processing pair CEG-TJX
ADF test for CEG-TJX failed with LinAlgError

Processing pair CEG-TSCO
ADF test for CEG-TSCO failed with LinAlgError

Processing pair CEG-TT
ADF test for CEG-TT failed with LinAlgError

Processing pair CEG-TDG
ADF test for CEG-TDG failed with LinAlgError

Processing pair CEG-URI
ADF test for CEG-URI failed with LinAlgError

Processing pair CEG-VRTX
ADF test for CEG-VRTX failed with LinAlgError

Processing pair CEG-VST
ADF test for CEG-VST failed with LinAlgError

Processing pair CEG-GWW
ADF test for CEG-GWW failed with LinAlgError

Processing pair CEG-WAB
ADF test for CEG-WAB failed with LinAlgError

Processing pair CEG-WMT
ADF test for CEG-WMT failed with LinAlgError

Processing pair CEG-WM
ADF test for CEG-WM failed with LinAlgError

Processing pair CEG-WMB
ADF test for CEG-WMB failed with LinAlgError

Processing pair COO-GLW

Processing pair COO-CPAY
ADF test for COO-CPAY failed with LinAlgError

Processing pair COO-CSGP

Processing pair COO-CCI

Processing pair COO-CSX

Processing pair COO-CMI

Processing pair COO-DHR

Processing pair COO-DRI

Processing pair COO-DLR

Processing pair COO-DFS

Processing pair COO-DPZ

Processing pair COO-DOV

Processing pair COO-DTE

Processing pair COO-DUK

Processing pair COO-EBAY

Processing pair COO-ECL

Processing pair COO-EW

Processing pair COO-EA

Processing pair COO-ELV

Processing pair COO-ETR

Processing pair COO-EFX

Processing pair COO-EQIX

Processing pair COO-EQR

Processing pair COO-ESS

Processing pair COO-EVRG

Processing pair COO-ES

Processing pair COO-EXPD

Processing pair COO-EXR

Processing pair COO-FDS

Processing pair COO-FITB

Processing pair COO-FI

Processing pair COO-GRMN

Processing pair COO-GEN

Processing pair COO-GL

Processing pair COO-HOLX

Processing pair COO-HD

Processing pair COO-HON

Processing pair COO-HUM

Processing pair COO-HBAN

Processing pair COO-IEX

Processing pair COO-IDXX

Processing pair COO-ITW

Processing pair COO-PODD

Processing pair COO-ICE

Processing pair COO-IPG

Processing pair COO-INTU

Processing pair COO-ISRG

Processing pair COO-IQV
ADF test for COO-IQV failed with LinAlgError

Processing pair COO-JBHT

Processing pair COO-JKHY

Processing pair COO-J

Processing pair COO-JNJ

Processing pair COO-JCI

Processing pair COO-JPM

Processing pair COO-KDP

Processing pair COO-KEYS
ADF test for COO-KEYS failed with LinAlgError

Processing pair COO-KMB

Processing pair COO-LHX

Processing pair COO-LH

Processing pair COO-LDOS

Processing pair COO-LYV

Processing pair COO-LMT

Processing pair COO-LOW

Processing pair COO-MAR

Processing pair COO-MMC

Processing pair COO-MAS

Processing pair COO-MA

Processing pair COO-MKC

Processing pair COO-MCD

Processing pair COO-MDT

Processing pair COO-MTD

Processing pair COO-MCHP

Processing pair COO-MU

Processing pair COO-MAA

Processing pair COO-MDLZ

Processing pair COO-MNST

Processing pair COO-MCO

Processing pair COO-MSCI

Processing pair COO-NDAQ

Processing pair COO-NFLX

Processing pair COO-NEE

Processing pair COO-NKE

Processing pair COO-NI

Processing pair COO-NDSN

Processing pair COO-NSC

Processing pair COO-NTRS

Processing pair COO-NOC

Processing pair COO-NVR

Processing pair COO-NXPI
ADF test for COO-NXPI failed with LinAlgError

Processing pair COO-PKG

Processing pair COO-PAYX

Processing pair COO-PEP

Processing pair COO-PNW

Processing pair COO-PNC

Processing pair COO-POOL

Processing pair COO-PPG

Processing pair COO-PG

Processing pair COO-PLD

Processing pair COO-PEG

Processing pair COO-PTC

Processing pair COO-PSA

Processing pair COO-DGX

Processing pair COO-O

Processing pair COO-RF

Processing pair COO-RMD

Processing pair COO-RVTY

Processing pair COO-ROK

Processing pair COO-ROL

Processing pair COO-ROP

Processing pair COO-ROST

Processing pair COO-SPGI

Processing pair COO-CRM

Processing pair COO-SBAC

Processing pair COO-SRE

Processing pair COO-NOW
ADF test for COO-NOW failed with LinAlgError

Processing pair COO-SHW

Processing pair COO-SWKS

Processing pair COO-SO

Processing pair COO-SBUX

Processing pair COO-STE

Processing pair COO-SYK

Processing pair COO-SYY

Processing pair COO-TMUS

Processing pair COO-TROW

Processing pair COO-TTWO

Processing pair COO-TEL

Processing pair COO-TDY

Processing pair COO-TER

Processing pair COO-TXN

Processing pair COO-TMO

Processing pair COO-TJX

Processing pair COO-TRV

Processing pair COO-TYL

Processing pair COO-UDR

Processing pair COO-ULTA

Processing pair COO-UNP

Processing pair COO-UPS

Processing pair COO-UNH

Processing pair COO-VRSN

Processing pair COO-VRSK

Processing pair COO-V

Processing pair COO-VMC

Processing pair COO-WM

Processing pair COO-WAT

Processing pair COO-WEC

Processing pair COO-WST

Processing pair COO-WTW

Processing pair COO-WDAY
ADF test for COO-WDAY failed with LinAlgError

Processing pair COO-XEL

Processing pair COO-XYL
ADF test for COO-XYL failed with LinAlgError

Processing pair COO-YUM

Processing pair COO-ZBRA

Processing pair COO-ZTS
ADF test for COO-ZTS failed with LinAlgError

Processing pair CPRT-CSGP

Processing pair CPRT-COST

Processing pair CPRT-CSX

Processing pair CPRT-CMI

Processing pair CPRT-DHR

Processing pair CPRT-DRI

Processing pair CPRT-DECK

Processing pair CPRT-DE

Processing pair CPRT-DXCM

Processing pair CPRT-DFS

Processing pair CPRT-DPZ

Processing pair CPRT-DOV

Processing pair CPRT-DHI

Processing pair CPRT-DUK

Processing pair CPRT-ETN

Processing pair CPRT-ELV

Processing pair CPRT-EMR

Processing pair CPRT-ETR

Processing pair CPRT-EFX

Processing pair CPRT-EQIX

Processing pair CPRT-ERIE

Processing pair CPRT-EG

Processing pair CPRT-EXPD

Processing pair CPRT-FDS

Processing pair CPRT-FICO

Processing pair CPRT-FAST

Processing pair CPRT-FI

Processing pair CPRT-FTNT

Processing pair CPRT-GRMN

Processing pair CPRT-IT

Processing pair CPRT-GS

Processing pair CPRT-HIG

Processing pair CPRT-HCA
ADF test for CPRT-HCA failed with LinAlgError

Processing pair CPRT-HSY

Processing pair CPRT-HLT
ADF test for CPRT-HLT failed with LinAlgError

Processing pair CPRT-HOLX

Processing pair CPRT-HD

Processing pair CPRT-HON

Processing pair CPRT-HUBB

Processing pair CPRT-IEX

Processing pair CPRT-IDXX

Processing pair CPRT-ITW

Processing pair CPRT-IR
ADF test for CPRT-IR failed with LinAlgError

Processing pair CPRT-ICE

Processing pair CPRT-INTU

Processing pair CPRT-ISRG

Processing pair CPRT-IQV
ADF test for CPRT-IQV failed with LinAlgError

Processing pair CPRT-JBHT

Processing pair CPRT-JBL

Processing pair CPRT-J

Processing pair CPRT-JCI

Processing pair CPRT-JPM

Processing pair CPRT-KDP

Processing pair CPRT-KKR
ADF test for CPRT-KKR failed with LinAlgError

Processing pair CPRT-KLAC

Processing pair CPRT-LH

Processing pair CPRT-LRCX

Processing pair CPRT-LDOS

Processing pair CPRT-LEN

Processing pair CPRT-LII

Processing pair CPRT-LLY

Processing pair CPRT-LIN

Processing pair CPRT-LYV

Processing pair CPRT-LMT

Processing pair CPRT-LOW

Processing pair CPRT-LULU

Processing pair CPRT-MAR

Processing pair CPRT-MMC

Processing pair CPRT-MLM

Processing pair CPRT-MAS

Processing pair CPRT-MA

Processing pair CPRT-MCD

Processing pair CPRT-MRK

Processing pair CPRT-META
ADF test for CPRT-META failed with LinAlgError

Processing pair CPRT-MET

Processing pair CPRT-MTD

Processing pair CPRT-MCHP

Processing pair CPRT-MU

Processing pair CPRT-MSFT

Processing pair CPRT-MOH

Processing pair CPRT-MDLZ

Processing pair CPRT-MPWR

Processing pair CPRT-MNST

Processing pair CPRT-MCO

Processing pair CPRT-MS

Processing pair CPRT-MSI

Processing pair CPRT-MSCI

Processing pair CPRT-NDAQ

Processing pair CPRT-NTAP

Processing pair CPRT-NEE

Processing pair CPRT-NDSN

Processing pair CPRT-NSC

Processing pair CPRT-NOC

Processing pair CPRT-NUE

Processing pair CPRT-NVR

Processing pair CPRT-NXPI
ADF test for CPRT-NXPI failed with LinAlgError

Processing pair CPRT-ORLY

Processing pair CPRT-ODFL

Processing pair CPRT-ON

Processing pair CPRT-ORCL

Processing pair CPRT-OTIS
ADF test for CPRT-OTIS failed with LinAlgError

Processing pair CPRT-PCAR

Processing pair CPRT-PKG

Processing pair CPRT-PANW
ADF test for CPRT-PANW failed with LinAlgError

Processing pair CPRT-PH

Processing pair CPRT-PAYX

Processing pair CPRT-PEP

Processing pair CPRT-POOL

Processing pair CPRT-PG

Processing pair CPRT-PGR

Processing pair CPRT-PLD

Processing pair CPRT-PEG

Processing pair CPRT-PTC

Processing pair CPRT-PHM

Processing pair CPRT-PWR

Processing pair CPRT-QCOM

Processing pair CPRT-DGX

Processing pair CPRT-RJF

Processing pair CPRT-RSG

Processing pair CPRT-RMD

Processing pair CPRT-ROK

Processing pair CPRT-ROL

Processing pair CPRT-ROP

Processing pair CPRT-ROST

Processing pair CPRT-SPGI

Processing pair CPRT-CRM

Processing pair CPRT-STX

Processing pair CPRT-NOW
ADF test for CPRT-NOW failed with LinAlgError

Processing pair CPRT-SHW

Processing pair CPRT-SNA

Processing pair CPRT-SO

Processing pair CPRT-STLD

Processing pair CPRT-STE

Processing pair CPRT-SYK

Processing pair CPRT-SNPS

Processing pair CPRT-TMUS

Processing pair CPRT-TEL

Processing pair CPRT-TDY

Processing pair CPRT-TER

Processing pair CPRT-TXN

Processing pair CPRT-TPL

Processing pair CPRT-TMO

Processing pair CPRT-TJX

Processing pair CPRT-TSCO

Processing pair CPRT-TT

Processing pair CPRT-TDG

Processing pair CPRT-TRV

Processing pair CPRT-TYL

Processing pair CPRT-UNP

Processing pair CPRT-URI

Processing pair CPRT-UNH

Processing pair CPRT-VRSK

Processing pair CPRT-VRTX

Processing pair CPRT-V

Processing pair CPRT-VMC

Processing pair CPRT-WRB

Processing pair CPRT-GWW

Processing pair CPRT-WMT

Processing pair CPRT-WM

Processing pair CPRT-WAT

Processing pair CPRT-WST

Processing pair CPRT-WTW

Processing pair CPRT-XYL
ADF test for CPRT-XYL failed with LinAlgError

Processing pair CPRT-YUM

Processing pair CPRT-ZTS
ADF test for CPRT-ZTS failed with LinAlgError

Processing pair GLW-CSX

Processing pair GLW-CMI

Processing pair GLW-DHR

Processing pair GLW-DRI

Processing pair GLW-DLR

Processing pair GLW-DFS

Processing pair GLW-DPZ

Processing pair GLW-DOV

Processing pair GLW-DTE

Processing pair GLW-DUK

Processing pair GLW-EBAY

Processing pair GLW-ECL

Processing pair GLW-EA

Processing pair GLW-ELV

Processing pair GLW-EMR

Processing pair GLW-ETR

Processing pair GLW-EFX

Processing pair GLW-EQIX

Processing pair GLW-EXPD

Processing pair GLW-EXR

Processing pair GLW-FDX

Processing pair GLW-FITB

Processing pair GLW-FI

Processing pair GLW-GRMN

Processing pair GLW-GEN

Processing pair GLW-GS

Processing pair GLW-HOLX

Processing pair GLW-HD

Processing pair GLW-HON

Processing pair GLW-HPQ

Processing pair GLW-HBAN

Processing pair GLW-IEX

Processing pair GLW-IDXX

Processing pair GLW-ITW

Processing pair GLW-ICE

Processing pair GLW-ISRG

Processing pair GLW-IQV
ADF test for GLW-IQV failed with LinAlgError

Processing pair GLW-JBHT

Processing pair GLW-JKHY

Processing pair GLW-JNJ

Processing pair GLW-JPM

Processing pair GLW-KDP

Processing pair GLW-LHX

Processing pair GLW-LH

Processing pair GLW-LDOS

Processing pair GLW-LII

Processing pair GLW-LYV

Processing pair GLW-LMT

Processing pair GLW-LOW

Processing pair GLW-MAR

Processing pair GLW-MAS

Processing pair GLW-MA

Processing pair GLW-MCD

Processing pair GLW-MTD

Processing pair GLW-MCHP

Processing pair GLW-MU

Processing pair GLW-MAA

Processing pair GLW-MNST

Processing pair GLW-MCO

Processing pair GLW-MS

Processing pair GLW-NDAQ

Processing pair GLW-NFLX

Processing pair GLW-NEE

Processing pair GLW-NI

Processing pair GLW-NDSN

Processing pair GLW-NSC

Processing pair GLW-NTRS

Processing pair GLW-NOC

Processing pair GLW-NVR

Processing pair GLW-NXPI
ADF test for GLW-NXPI failed with LinAlgError

Processing pair GLW-PKG

Processing pair GLW-PAYX

Processing pair GLW-PEP

Processing pair GLW-PNC

Processing pair GLW-PG

Processing pair GLW-PLD

Processing pair GLW-PRU

Processing pair GLW-PEG

Processing pair GLW-PTC

Processing pair GLW-DGX

Processing pair GLW-RJF

Processing pair GLW-RF

Processing pair GLW-RMD

Processing pair GLW-RVTY

Processing pair GLW-ROK

Processing pair GLW-ROL

Processing pair GLW-ROP

Processing pair GLW-ROST

Processing pair GLW-SPGI

Processing pair GLW-CRM

Processing pair GLW-SHW

Processing pair GLW-STE

Processing pair GLW-SYK

Processing pair GLW-SYY

Processing pair GLW-TMUS

Processing pair GLW-TTWO

Processing pair GLW-TEL

Processing pair GLW-TDY

Processing pair GLW-TER

Processing pair GLW-TXN

Processing pair GLW-TMO

Processing pair GLW-TRV

Processing pair GLW-TYL

Processing pair GLW-UDR

Processing pair GLW-UNP

Processing pair GLW-UNH

Processing pair GLW-VRSK

Processing pair GLW-V

Processing pair GLW-VMC

Processing pair GLW-WM

Processing pair GLW-WAT

Processing pair GLW-WEC

Processing pair GLW-WTW

Processing pair GLW-XEL

Processing pair GLW-XYL
ADF test for GLW-XYL failed with LinAlgError

Processing pair GLW-YUM

Processing pair CPAY-DTE
ADF test for CPAY-DTE failed with LinAlgError

Processing pair CPAY-ECL
ADF test for CPAY-ECL failed with LinAlgError

Processing pair CPAY-ESS
ADF test for CPAY-ESS failed with LinAlgError

Processing pair CPAY-EVRG
ADF test for CPAY-EVRG failed with LinAlgError

Processing pair CPAY-FI
ADF test for CPAY-FI failed with LinAlgError

Processing pair CPAY-HON
ADF test for CPAY-HON failed with LinAlgError

Processing pair CPAY-JKHY
ADF test for CPAY-JKHY failed with LinAlgError

Processing pair CPAY-KMB
ADF test for CPAY-KMB failed with LinAlgError

Processing pair CPAY-LHX
ADF test for CPAY-LHX failed with LinAlgError

Processing pair CPAY-MDT
ADF test for CPAY-MDT failed with LinAlgError

Processing pair CPAY-NI
ADF test for CPAY-NI failed with LinAlgError

Processing pair CPAY-PNW
ADF test for CPAY-PNW failed with LinAlgError

Processing pair CPAY-ROST
ADF test for CPAY-ROST failed with LinAlgError

Processing pair CPAY-SRE
ADF test for CPAY-SRE failed with LinAlgError

Processing pair CPAY-V
ADF test for CPAY-V failed with LinAlgError

Processing pair CPAY-WEC
ADF test for CPAY-WEC failed with LinAlgError

Processing pair CTVA-DE
ADF test for CTVA-DE failed with LinAlgError

Processing pair CTVA-DVN
ADF test for CTVA-DVN failed with LinAlgError

Processing pair CTVA-ELV
ADF test for CTVA-ELV failed with LinAlgError

Processing pair CTVA-GPC
ADF test for CTVA-GPC failed with LinAlgError

Processing pair CTVA-PEP
ADF test for CTVA-PEP failed with LinAlgError

Processing pair CTVA-PFG
ADF test for CTVA-PFG failed with LinAlgError

Processing pair CTVA-UNH
ADF test for CTVA-UNH failed with LinAlgError

Processing pair CTVA-VICI
ADF test for CTVA-VICI failed with LinAlgError

Processing pair CSGP-CCI

Processing pair CSGP-CSX

Processing pair CSGP-CMI

Processing pair CSGP-DHR

Processing pair CSGP-DRI

Processing pair CSGP-DE

Processing pair CSGP-DXCM

Processing pair CSGP-DLR

Processing pair CSGP-DPZ

Processing pair CSGP-DOV

Processing pair CSGP-DTE

Processing pair CSGP-DUK

Processing pair CSGP-EBAY

Processing pair CSGP-ECL

Processing pair CSGP-EW

Processing pair CSGP-ELV

Processing pair CSGP-ETR

Processing pair CSGP-EFX

Processing pair CSGP-EQIX

Processing pair CSGP-ES

Processing pair CSGP-EXPD

Processing pair CSGP-EXR

Processing pair CSGP-FDS

Processing pair CSGP-FAST

Processing pair CSGP-FI

Processing pair CSGP-GRMN

Processing pair CSGP-HOLX

Processing pair CSGP-HD

Processing pair CSGP-HON

Processing pair CSGP-HUM

Processing pair CSGP-IEX

Processing pair CSGP-IDXX

Processing pair CSGP-ITW

Processing pair CSGP-PODD

Processing pair CSGP-ICE

Processing pair CSGP-INTU

Processing pair CSGP-ISRG

Processing pair CSGP-IQV
ADF test for CSGP-IQV failed with LinAlgError

Processing pair CSGP-JBHT

Processing pair CSGP-JKHY

Processing pair CSGP-J

Processing pair CSGP-JNJ

Processing pair CSGP-JPM

Processing pair CSGP-KDP

Processing pair CSGP-KEYS
ADF test for CSGP-KEYS failed with LinAlgError

Processing pair CSGP-LHX

Processing pair CSGP-LH

Processing pair CSGP-LDOS

Processing pair CSGP-LYV

Processing pair CSGP-LMT

Processing pair CSGP-LOW

Processing pair CSGP-LULU

Processing pair CSGP-MMC

Processing pair CSGP-MAS

Processing pair CSGP-MA

Processing pair CSGP-MKC

Processing pair CSGP-MCD

Processing pair CSGP-MTD

Processing pair CSGP-MCHP

Processing pair CSGP-MSFT

Processing pair CSGP-MAA

Processing pair CSGP-MOH

Processing pair CSGP-MDLZ

Processing pair CSGP-MNST

Processing pair CSGP-MCO

Processing pair CSGP-MSCI

Processing pair CSGP-NDAQ

Processing pair CSGP-NFLX

Processing pair CSGP-NEE

Processing pair CSGP-NKE

Processing pair CSGP-NDSN

Processing pair CSGP-NSC

Processing pair CSGP-NOC

Processing pair CSGP-NVR

Processing pair CSGP-ODFL

Processing pair CSGP-PAYX

Processing pair CSGP-PEP

Processing pair CSGP-POOL

Processing pair CSGP-PG

Processing pair CSGP-PLD

Processing pair CSGP-PEG

Processing pair CSGP-PTC

Processing pair CSGP-DGX

Processing pair CSGP-RMD

Processing pair CSGP-RVTY

Processing pair CSGP-ROK

Processing pair CSGP-ROL

Processing pair CSGP-ROP

Processing pair CSGP-ROST

Processing pair CSGP-SPGI

Processing pair CSGP-CRM

Processing pair CSGP-SBAC

Processing pair CSGP-SRE

Processing pair CSGP-NOW
ADF test for CSGP-NOW failed with LinAlgError

Processing pair CSGP-SHW

Processing pair CSGP-SBUX

Processing pair CSGP-STE

Processing pair CSGP-SYK

Processing pair CSGP-SYY

Processing pair CSGP-TMUS

Processing pair CSGP-TROW

Processing pair CSGP-TTWO

Processing pair CSGP-TEL

Processing pair CSGP-TDY

Processing pair CSGP-TER

Processing pair CSGP-TXN

Processing pair CSGP-TMO

Processing pair CSGP-TJX

Processing pair CSGP-TYL

Processing pair CSGP-UNP

Processing pair CSGP-UPS

Processing pair CSGP-UNH

Processing pair CSGP-VRSN

Processing pair CSGP-VRSK

Processing pair CSGP-V

Processing pair CSGP-WMT

Processing pair CSGP-WM

Processing pair CSGP-WAT

Processing pair CSGP-WEC

Processing pair CSGP-WST

Processing pair CSGP-WTW

Processing pair CSGP-WDAY
ADF test for CSGP-WDAY failed with LinAlgError

Processing pair CSGP-XEL

Processing pair CSGP-XYL
ADF test for CSGP-XYL failed with LinAlgError

Processing pair CSGP-YUM

Processing pair CSGP-ZBRA

Processing pair CSGP-ZTS
ADF test for CSGP-ZTS failed with LinAlgError

Processing pair COST-CSX

Processing pair COST-CMI

Processing pair COST-DHR

Processing pair COST-DRI

Processing pair COST-DECK

Processing pair COST-DE

Processing pair COST-DELL
ADF test for COST-DELL failed with LinAlgError

Processing pair COST-DFS

Processing pair COST-DOV

Processing pair COST-DHI

Processing pair COST-DUK

Processing pair COST-ETN

Processing pair COST-ELV

Processing pair COST-EMR

Processing pair COST-ETR

Processing pair COST-EFX

Processing pair COST-EQIX

Processing pair COST-ERIE

Processing pair COST-EG

Processing pair COST-EXPD

Processing pair COST-EXR

Processing pair COST-FDS

Processing pair COST-FICO

Processing pair COST-FAST

Processing pair COST-FI

Processing pair COST-FTNT

Processing pair COST-GRMN

Processing pair COST-IT

Processing pair COST-GD

Processing pair COST-GS

Processing pair COST-HIG

Processing pair COST-HCA
ADF test for COST-HCA failed with LinAlgError

Processing pair COST-HLT
ADF test for COST-HLT failed with LinAlgError

Processing pair COST-HD

Processing pair COST-HUBB

Processing pair COST-ITW

Processing pair COST-IR
ADF test for COST-IR failed with LinAlgError

Processing pair COST-ICE

Processing pair COST-INTU

Processing pair COST-ISRG

Processing pair COST-IRM

Processing pair COST-JBHT

Processing pair COST-JBL

Processing pair COST-J

Processing pair COST-JCI

Processing pair COST-JPM

Processing pair COST-KKR
ADF test for COST-KKR failed with LinAlgError

Processing pair COST-KLAC

Processing pair COST-LRCX

Processing pair COST-LDOS

Processing pair COST-LEN

Processing pair COST-LII

Processing pair COST-LLY

Processing pair COST-LIN

Processing pair COST-LYV

Processing pair COST-LMT

Processing pair COST-L

Processing pair COST-LOW

Processing pair COST-MPC
ADF test for COST-MPC failed with LinAlgError

Processing pair COST-MAR

Processing pair COST-MMC

Processing pair COST-MLM

Processing pair COST-MAS

Processing pair COST-MA

Processing pair COST-MCD

Processing pair COST-MCK

Processing pair COST-MRK

Processing pair COST-MET

Processing pair COST-MTD

Processing pair COST-MCHP

Processing pair COST-MU

Processing pair COST-MSFT

Processing pair COST-MOH

Processing pair COST-MDLZ

Processing pair COST-MPWR

Processing pair COST-MCO

Processing pair COST-MS

Processing pair COST-MSI

Processing pair COST-MSCI

Processing pair COST-NDAQ

Processing pair COST-NTAP

Processing pair COST-NDSN

Processing pair COST-NRG

Processing pair COST-NUE

Processing pair COST-NVR

Processing pair COST-NXPI
ADF test for COST-NXPI failed with LinAlgError

Processing pair COST-ORLY

Processing pair COST-ODFL

Processing pair COST-ON

Processing pair COST-OKE

Processing pair COST-ORCL

Processing pair COST-PCAR

Processing pair COST-PKG

Processing pair COST-PANW
ADF test for COST-PANW failed with LinAlgError

Processing pair COST-PH

Processing pair COST-PAYX

Processing pair COST-PNR

Processing pair COST-PEP

Processing pair COST-PG

Processing pair COST-PGR

Processing pair COST-PLD

Processing pair COST-PEG

Processing pair COST-PTC

Processing pair COST-PSA

Processing pair COST-PHM

Processing pair COST-PWR

Processing pair COST-QCOM

Processing pair COST-DGX

Processing pair COST-RJF

Processing pair COST-RSG

Processing pair COST-ROL

Processing pair COST-ROP

Processing pair COST-SPGI

Processing pair COST-STX

Processing pair COST-NOW
ADF test for COST-NOW failed with LinAlgError

Processing pair COST-SHW

Processing pair COST-SNA

Processing pair COST-SO

Processing pair COST-STLD

Processing pair COST-STE

Processing pair COST-SYK

Processing pair COST-SNPS

Processing pair COST-TMUS

Processing pair COST-TEL

Processing pair COST-TER

Processing pair COST-TXN

Processing pair COST-TPL

Processing pair COST-TMO

Processing pair COST-TJX

Processing pair COST-TSCO

Processing pair COST-TT

Processing pair COST-TDG

Processing pair COST-TRV

Processing pair COST-TYL

Processing pair COST-UNP

Processing pair COST-URI

Processing pair COST-UNH

Processing pair COST-VLO

Processing pair COST-VLTO
ADF test for COST-VLTO failed with LinAlgError

Processing pair COST-VRSK

Processing pair COST-VRTX

Processing pair COST-V

Processing pair COST-VMC

Processing pair COST-WRB

Processing pair COST-GWW

Processing pair COST-WMT

Processing pair COST-WM

Processing pair COST-WELL

Processing pair COST-WTW

Processing pair COST-XYL
ADF test for COST-XYL failed with LinAlgError

Processing pair COST-YUM

Processing pair CCI-DG

Processing pair CCI-DPZ

Processing pair CCI-DTE

Processing pair CCI-EBAY

Processing pair CCI-EW

Processing pair CCI-EPAM
ADF test for CCI-EPAM failed with LinAlgError

Processing pair CCI-EQIX

Processing pair CCI-EL

Processing pair CCI-EVRG

Processing pair CCI-ES

Processing pair CCI-EXR

Processing pair CCI-FMC

Processing pair CCI-GPN

Processing pair CCI-HON

Processing pair CCI-HRL

Processing pair CCI-HUM

Processing pair CCI-IEX

Processing pair CCI-PODD

Processing pair CCI-JKHY

Processing pair CCI-JNJ

Processing pair CCI-KDP

Processing pair CCI-LHX

Processing pair CCI-MKTX

Processing pair CCI-MKC

Processing pair CCI-MDT

Processing pair CCI-MTD

Processing pair CCI-MAA

Processing pair CCI-NEE

Processing pair CCI-NKE

Processing pair CCI-NSC

Processing pair CCI-PAYC
ADF test for CCI-PAYC failed with LinAlgError

Processing pair CCI-PFE

Processing pair CCI-POOL

Processing pair CCI-PLD

Processing pair CCI-O

Processing pair CCI-RMD

Processing pair CCI-RVTY

Processing pair CCI-SBAC

Processing pair CCI-SWKS

Processing pair CCI-SBUX

Processing pair CCI-TROW

Processing pair CCI-TTWO

Processing pair CCI-TGT

Processing pair CCI-TDY

Processing pair CCI-TFX

Processing pair CCI-UDR

Processing pair CCI-VRSN

Processing pair CCI-WAT

Processing pair CCI-WEC

Processing pair CCI-XEL

Processing pair CCI-ZBRA

Processing pair CSX-CMI

Processing pair CSX-DHR

Processing pair CSX-DRI

Processing pair CSX-DE

Processing pair CSX-DXCM

Processing pair CSX-DLR

Processing pair CSX-DFS

Processing pair CSX-DPZ

Processing pair CSX-DOV

Processing pair CSX-DTE

Processing pair CSX-DUK

Processing pair CSX-EBAY

Processing pair CSX-ECL

Processing pair CSX-EW

Processing pair CSX-EA

Processing pair CSX-ELV

Processing pair CSX-EMR

Processing pair CSX-ETR

Processing pair CSX-EFX

Processing pair CSX-EQIX

Processing pair CSX-EG

Processing pair CSX-EVRG

Processing pair CSX-ES

Processing pair CSX-EXC

Processing pair CSX-EXPD

Processing pair CSX-EXR

Processing pair CSX-FDS

Processing pair CSX-FAST

Processing pair CSX-FITB

Processing pair CSX-FI

Processing pair CSX-FTNT

Processing pair CSX-GRMN

Processing pair CSX-IT

Processing pair CSX-GEN

Processing pair CSX-GD

Processing pair CSX-GPC

Processing pair CSX-GL

Processing pair CSX-HCA
ADF test for CSX-HCA failed with LinAlgError

Processing pair CSX-HSY

Processing pair CSX-HLT
ADF test for CSX-HLT failed with LinAlgError

Processing pair CSX-HOLX

Processing pair CSX-HD

Processing pair CSX-HON

Processing pair CSX-HPQ

Processing pair CSX-HUM

Processing pair CSX-HBAN

Processing pair CSX-IEX

Processing pair CSX-IDXX

Processing pair CSX-ITW

Processing pair CSX-PODD

Processing pair CSX-ICE

Processing pair CSX-IPG

Processing pair CSX-INTU

Processing pair CSX-ISRG

Processing pair CSX-INVH
ADF test for CSX-INVH failed with LinAlgError

Processing pair CSX-IQV
ADF test for CSX-IQV failed with LinAlgError

Processing pair CSX-JBHT

Processing pair CSX-JKHY

Processing pair CSX-J

Processing pair CSX-JNJ

Processing pair CSX-JCI

Processing pair CSX-JPM

Processing pair CSX-KDP

Processing pair CSX-KEYS
ADF test for CSX-KEYS failed with LinAlgError

Processing pair CSX-LHX

Processing pair CSX-LH

Processing pair CSX-LRCX

Processing pair CSX-LDOS

Processing pair CSX-LII

Processing pair CSX-LIN

Processing pair CSX-LYV

Processing pair CSX-LMT

Processing pair CSX-LOW

Processing pair CSX-LULU

Processing pair CSX-MAR

Processing pair CSX-MMC

Processing pair CSX-MLM

Processing pair CSX-MAS

Processing pair CSX-MA

Processing pair CSX-MKC

Processing pair CSX-MCD

Processing pair CSX-MRK

Processing pair CSX-MET

Processing pair CSX-MTD

Processing pair CSX-MCHP

Processing pair CSX-MU

Processing pair CSX-MSFT

Processing pair CSX-MAA

Processing pair CSX-MOH

Processing pair CSX-MDLZ

Processing pair CSX-MNST

Processing pair CSX-MCO

Processing pair CSX-MS

Processing pair CSX-MSI

Processing pair CSX-MSCI

Processing pair CSX-NDAQ

Processing pair CSX-NFLX

Processing pair CSX-NEE

Processing pair CSX-NKE

Processing pair CSX-NI

Processing pair CSX-NDSN

Processing pair CSX-NSC

Processing pair CSX-NOC

Processing pair CSX-NVR

Processing pair CSX-NXPI
ADF test for CSX-NXPI failed with LinAlgError

Processing pair CSX-ORLY

Processing pair CSX-ODFL

Processing pair CSX-PKG

Processing pair CSX-PAYX

Processing pair CSX-PEP

Processing pair CSX-PNC

Processing pair CSX-POOL

Processing pair CSX-PG

Processing pair CSX-PLD

Processing pair CSX-PEG

Processing pair CSX-PTC

Processing pair CSX-PSA

Processing pair CSX-DGX

Processing pair CSX-RJF

Processing pair CSX-RTX

Processing pair CSX-O

Processing pair CSX-RF

Processing pair CSX-RSG

Processing pair CSX-RMD

Processing pair CSX-RVTY

Processing pair CSX-ROK

Processing pair CSX-ROL

Processing pair CSX-ROP

Processing pair CSX-ROST

Processing pair CSX-SPGI

Processing pair CSX-CRM

Processing pair CSX-SBAC

Processing pair CSX-STX

Processing pair CSX-SRE

Processing pair CSX-NOW
ADF test for CSX-NOW failed with LinAlgError

Processing pair CSX-SHW

Processing pair CSX-SNA

Processing pair CSX-SO

Processing pair CSX-SBUX

Processing pair CSX-STE

Processing pair CSX-SYK

Processing pair CSX-SYY

Processing pair CSX-TMUS

Processing pair CSX-TTWO

Processing pair CSX-TEL

Processing pair CSX-TDY

Processing pair CSX-TER

Processing pair CSX-TXN

Processing pair CSX-TMO

Processing pair CSX-TJX

Processing pair CSX-TSCO

Processing pair CSX-TRV

Processing pair CSX-TYL

Processing pair CSX-UDR

Processing pair CSX-ULTA

Processing pair CSX-UNP

Processing pair CSX-UPS

Processing pair CSX-UNH

Processing pair CSX-VRSN

Processing pair CSX-VRSK

Processing pair CSX-VRTX

Processing pair CSX-V

Processing pair CSX-VMC

Processing pair CSX-WRB

Processing pair CSX-WMT

Processing pair CSX-WM

Processing pair CSX-WAT

Processing pair CSX-WEC

Processing pair CSX-WST

Processing pair CSX-WTW

Processing pair CSX-WDAY
ADF test for CSX-WDAY failed with LinAlgError

Processing pair CSX-XEL

Processing pair CSX-XYL
ADF test for CSX-XYL failed with LinAlgError

Processing pair CSX-YUM

Processing pair CSX-ZBRA

Processing pair CSX-ZTS
ADF test for CSX-ZTS failed with LinAlgError

Processing pair CMI-DHR

Processing pair CMI-DRI

Processing pair CMI-DE

Processing pair CMI-DFS

Processing pair CMI-DPZ

Processing pair CMI-DOV

Processing pair CMI-DHI

Processing pair CMI-DTE

Processing pair CMI-DUK

Processing pair CMI-ETN

Processing pair CMI-ELV

Processing pair CMI-EMR

Processing pair CMI-ETR

Processing pair CMI-EFX

Processing pair CMI-EQIX

Processing pair CMI-ERIE

Processing pair CMI-EG

Processing pair CMI-EXPD

Processing pair CMI-EXR

Processing pair CMI-FDS

Processing pair CMI-FAST

Processing pair CMI-FITB

Processing pair CMI-FI

Processing pair CMI-FTNT

Processing pair CMI-GRMN

Processing pair CMI-IT

Processing pair CMI-GEV
ADF test for CMI-GEV failed with LinAlgError

Processing pair CMI-GEN

Processing pair CMI-GD

Processing pair CMI-GPC

Processing pair CMI-GS

Processing pair CMI-HIG

Processing pair CMI-HCA
ADF test for CMI-HCA failed with LinAlgError

Processing pair CMI-HSY

Processing pair CMI-HLT
ADF test for CMI-HLT failed with LinAlgError

Processing pair CMI-HOLX

Processing pair CMI-HD

Processing pair CMI-HON

Processing pair CMI-HUBB

Processing pair CMI-IEX

Processing pair CMI-IDXX

Processing pair CMI-ITW

Processing pair CMI-IR
ADF test for CMI-IR failed with LinAlgError

Processing pair CMI-ICE

Processing pair CMI-INTU

Processing pair CMI-ISRG

Processing pair CMI-JBHT

Processing pair CMI-J

Processing pair CMI-JNJ

Processing pair CMI-JCI

Processing pair CMI-JPM

Processing pair CMI-KDP

Processing pair CMI-KKR
ADF test for CMI-KKR failed with LinAlgError

Processing pair CMI-KLAC

Processing pair CMI-LHX

Processing pair CMI-LH

Processing pair CMI-LRCX

Processing pair CMI-LDOS

Processing pair CMI-LEN

Processing pair CMI-LII

Processing pair CMI-LIN

Processing pair CMI-LYV

Processing pair CMI-LMT

Processing pair CMI-LOW

Processing pair CMI-MAR

Processing pair CMI-MMC

Processing pair CMI-MLM

Processing pair CMI-MAS

Processing pair CMI-MA

Processing pair CMI-MCD

Processing pair CMI-MRK

Processing pair CMI-MET

Processing pair CMI-MTD

Processing pair CMI-MCHP

Processing pair CMI-MU

Processing pair CMI-MSFT

Processing pair CMI-MOH

Processing pair CMI-MDLZ

Processing pair CMI-MPWR

Processing pair CMI-MNST

Processing pair CMI-MCO

Processing pair CMI-MS

Processing pair CMI-MSI

Processing pair CMI-MSCI

Processing pair CMI-NDAQ

Processing pair CMI-NEE

Processing pair CMI-NDSN

Processing pair CMI-NSC

Processing pair CMI-NOC

Processing pair CMI-NVR

Processing pair CMI-NXPI
ADF test for CMI-NXPI failed with LinAlgError

Processing pair CMI-ORLY

Processing pair CMI-ODFL

Processing pair CMI-ORCL

Processing pair CMI-PCAR

Processing pair CMI-PKG

Processing pair CMI-PANW
ADF test for CMI-PANW failed with LinAlgError

Processing pair CMI-PH

Processing pair CMI-PAYX

Processing pair CMI-PNR

Processing pair CMI-PEP

Processing pair CMI-PM

Processing pair CMI-PNC

Processing pair CMI-POOL

Processing pair CMI-PFG

Processing pair CMI-PG

Processing pair CMI-PGR

Processing pair CMI-PLD

Processing pair CMI-PEG

Processing pair CMI-PTC

Processing pair CMI-PHM

Processing pair CMI-QCOM

Processing pair CMI-DGX

Processing pair CMI-RJF

Processing pair CMI-RTX

Processing pair CMI-RF

Processing pair CMI-RSG

Processing pair CMI-RMD

Processing pair CMI-ROK

Processing pair CMI-ROL

Processing pair CMI-ROP

Processing pair CMI-ROST

Processing pair CMI-SPGI

Processing pair CMI-CRM

Processing pair CMI-STX

Processing pair CMI-SRE

Processing pair CMI-NOW
ADF test for CMI-NOW failed with LinAlgError

Processing pair CMI-SHW

Processing pair CMI-SNA

Processing pair CMI-SO

Processing pair CMI-STLD

Processing pair CMI-STE

Processing pair CMI-SYK

Processing pair CMI-SNPS

Processing pair CMI-TMUS

Processing pair CMI-TEL

Processing pair CMI-TDY

Processing pair CMI-TER

Processing pair CMI-TXN

Processing pair CMI-TPL

Processing pair CMI-TMO

Processing pair CMI-TJX

Processing pair CMI-TSCO

Processing pair CMI-TT

Processing pair CMI-TDG

Processing pair CMI-TRV

Processing pair CMI-TYL

Processing pair CMI-UNP

Processing pair CMI-URI

Processing pair CMI-UNH

Processing pair CMI-VRSK

Processing pair CMI-VRTX

Processing pair CMI-V

Processing pair CMI-VMC

Processing pair CMI-WRB

Processing pair CMI-GWW

Processing pair CMI-WMT

Processing pair CMI-WM

Processing pair CMI-WAT

Processing pair CMI-WST

Processing pair CMI-WTW

Processing pair CMI-XYL
ADF test for CMI-XYL failed with LinAlgError

Processing pair CMI-YUM

Processing pair DHR-DRI

Processing pair DHR-DE

Processing pair DHR-DXCM

Processing pair DHR-DLR

Processing pair DHR-DFS

Processing pair DHR-DPZ

Processing pair DHR-DOV

Processing pair DHR-DHI

Processing pair DHR-DTE

Processing pair DHR-DUK

Processing pair DHR-EBAY

Processing pair DHR-EW

Processing pair DHR-ELV

Processing pair DHR-EMR

Processing pair DHR-ETR

Processing pair DHR-EFX

Processing pair DHR-EQIX

Processing pair DHR-EXC

Processing pair DHR-EXPD

Processing pair DHR-EXR

Processing pair DHR-FDS

Processing pair DHR-FAST

Processing pair DHR-FITB

Processing pair DHR-FI

Processing pair DHR-FTNT

Processing pair DHR-GRMN

Processing pair DHR-IT

Processing pair DHR-GEN

Processing pair DHR-GPC

Processing pair DHR-GS

Processing pair DHR-HCA
ADF test for DHR-HCA failed with LinAlgError

Processing pair DHR-HSY

Processing pair DHR-HOLX

Processing pair DHR-HD

Processing pair DHR-HON

Processing pair DHR-HPQ

Processing pair DHR-HUM

Processing pair DHR-IEX

Processing pair DHR-IDXX

Processing pair DHR-ITW

Processing pair DHR-PODD

Processing pair DHR-ICE

Processing pair DHR-IPG

Processing pair DHR-INTU

Processing pair DHR-ISRG

Processing pair DHR-INVH
ADF test for DHR-INVH failed with LinAlgError

Processing pair DHR-IQV
ADF test for DHR-IQV failed with LinAlgError

Processing pair DHR-JBHT

Processing pair DHR-JKHY

Processing pair DHR-J

Processing pair DHR-JNJ

Processing pair DHR-JCI

Processing pair DHR-JPM

Processing pair DHR-KDP

Processing pair DHR-KEYS
ADF test for DHR-KEYS failed with LinAlgError

Processing pair DHR-LHX

Processing pair DHR-LH

Processing pair DHR-LRCX

Processing pair DHR-LDOS

Processing pair DHR-LIN

Processing pair DHR-LYV

Processing pair DHR-LMT

Processing pair DHR-LOW

Processing pair DHR-LULU

Processing pair DHR-MMC

Processing pair DHR-MLM

Processing pair DHR-MAS

Processing pair DHR-MA

Processing pair DHR-MKC

Processing pair DHR-MCD

Processing pair DHR-MRK

Processing pair DHR-MET

Processing pair DHR-MTD

Processing pair DHR-MCHP

Processing pair DHR-MU

Processing pair DHR-MSFT

Processing pair DHR-MAA

Processing pair DHR-MOH

Processing pair DHR-MDLZ

Processing pair DHR-MPWR

Processing pair DHR-MNST

Processing pair DHR-MCO

Processing pair DHR-MS

Processing pair DHR-MSI

Processing pair DHR-MSCI

Processing pair DHR-NDAQ

Processing pair DHR-NEE

Processing pair DHR-NKE

Processing pair DHR-NDSN

Processing pair DHR-NSC

Processing pair DHR-NOC

Processing pair DHR-NVR

Processing pair DHR-NXPI
ADF test for DHR-NXPI failed with LinAlgError

Processing pair DHR-ORLY

Processing pair DHR-ODFL

Processing pair DHR-PKG

Processing pair DHR-PAYX

Processing pair DHR-PEP

Processing pair DHR-PNC

Processing pair DHR-POOL

Processing pair DHR-PG

Processing pair DHR-PLD

Processing pair DHR-PEG

Processing pair DHR-PTC

Processing pair DHR-PSA

Processing pair DHR-QCOM

Processing pair DHR-DGX

Processing pair DHR-RJF

Processing pair DHR-RF

Processing pair DHR-RSG

Processing pair DHR-RMD

Processing pair DHR-RVTY

Processing pair DHR-ROK

Processing pair DHR-ROL

Processing pair DHR-ROP

Processing pair DHR-ROST

Processing pair DHR-SPGI

Processing pair DHR-CRM

Processing pair DHR-SBAC

Processing pair DHR-STX

Processing pair DHR-SRE

Processing pair DHR-NOW
ADF test for DHR-NOW failed with LinAlgError

Processing pair DHR-SHW

Processing pair DHR-SO

Processing pair DHR-SBUX

Processing pair DHR-STE

Processing pair DHR-SYK

Processing pair DHR-SNPS

Processing pair DHR-SYY

Processing pair DHR-TMUS

Processing pair DHR-TROW

Processing pair DHR-TTWO

Processing pair DHR-TGT

Processing pair DHR-TEL

Processing pair DHR-TDY

Processing pair DHR-TER

Processing pair DHR-TSLA
ADF test for DHR-TSLA failed with LinAlgError

Processing pair DHR-TXN

Processing pair DHR-TMO

Processing pair DHR-TJX

Processing pair DHR-TSCO

Processing pair DHR-TRV

Processing pair DHR-TRMB

Processing pair DHR-TYL

Processing pair DHR-UNP

Processing pair DHR-UPS

Processing pair DHR-UNH

Processing pair DHR-VRSN

Processing pair DHR-VRSK

Processing pair DHR-V

Processing pair DHR-VMC

Processing pair DHR-WRB

Processing pair DHR-WMT

Processing pair DHR-WM

Processing pair DHR-WAT

Processing pair DHR-WEC

Processing pair DHR-WST

Processing pair DHR-WTW

Processing pair DHR-WDAY
ADF test for DHR-WDAY failed with LinAlgError

Processing pair DHR-XEL

Processing pair DHR-XYL
ADF test for DHR-XYL failed with LinAlgError

Processing pair DHR-YUM

Processing pair DHR-ZBRA

Processing pair DHR-ZTS
ADF test for DHR-ZTS failed with LinAlgError

Processing pair DRI-DE

Processing pair DRI-DLR

Processing pair DRI-DFS

Processing pair DRI-DPZ

Processing pair DRI-DOV

Processing pair DRI-DHI

Processing pair DRI-DTE

Processing pair DRI-DUK

Processing pair DRI-ELV

Processing pair DRI-EMR

Processing pair DRI-ETR

Processing pair DRI-EFX

Processing pair DRI-EQIX

Processing pair DRI-EG

Processing pair DRI-EXC

Processing pair DRI-EXPD

Processing pair DRI-EXR

Processing pair DRI-FDS

Processing pair DRI-FAST

Processing pair DRI-FITB

Processing pair DRI-FI

Processing pair DRI-FTNT

Processing pair DRI-GRMN

Processing pair DRI-IT

Processing pair DRI-GD

Processing pair DRI-GPC

Processing pair DRI-GL

Processing pair DRI-GS

Processing pair DRI-HIG

Processing pair DRI-HCA
ADF test for DRI-HCA failed with LinAlgError

Processing pair DRI-HSY

Processing pair DRI-HLT
ADF test for DRI-HLT failed with LinAlgError

Processing pair DRI-HOLX

Processing pair DRI-HD

Processing pair DRI-HON

Processing pair DRI-HPQ

Processing pair DRI-HUM

Processing pair DRI-HBAN

Processing pair DRI-IEX

Processing pair DRI-IDXX

Processing pair DRI-ITW

Processing pair DRI-ICE

Processing pair DRI-IPG

Processing pair DRI-INTU

Processing pair DRI-ISRG

Processing pair DRI-IQV
ADF test for DRI-IQV failed with LinAlgError

Processing pair DRI-JBHT

Processing pair DRI-JKHY

Processing pair DRI-J

Processing pair DRI-JNJ

Processing pair DRI-JCI

Processing pair DRI-JPM

Processing pair DRI-KDP

Processing pair DRI-LHX

Processing pair DRI-LH

Processing pair DRI-LRCX

Processing pair DRI-LDOS

Processing pair DRI-LEN

Processing pair DRI-LII

Processing pair DRI-LIN

Processing pair DRI-LYV

Processing pair DRI-LMT

Processing pair DRI-LOW

Processing pair DRI-MAR

Processing pair DRI-MMC

Processing pair DRI-MLM

Processing pair DRI-MAS

Processing pair DRI-MA

Processing pair DRI-MCD

Processing pair DRI-MRK

Processing pair DRI-MET

Processing pair DRI-MTD

Processing pair DRI-MGM

Processing pair DRI-MCHP

Processing pair DRI-MU

Processing pair DRI-MSFT

Processing pair DRI-MAA

Processing pair DRI-MOH

Processing pair DRI-MDLZ

Processing pair DRI-MPWR

Processing pair DRI-MNST

Processing pair DRI-MCO

Processing pair DRI-MS

Processing pair DRI-MSI

Processing pair DRI-MSCI

Processing pair DRI-NDAQ

Processing pair DRI-NEE

Processing pair DRI-NI

Processing pair DRI-NDSN

Processing pair DRI-NSC

Processing pair DRI-NOC

Processing pair DRI-NVR

Processing pair DRI-NXPI
ADF test for DRI-NXPI failed with LinAlgError

Processing pair DRI-ORLY

Processing pair DRI-ODFL

Processing pair DRI-ON

Processing pair DRI-OKE

Processing pair DRI-ORCL

Processing pair DRI-OTIS
ADF test for DRI-OTIS failed with LinAlgError

Processing pair DRI-PKG

Processing pair DRI-PH

Processing pair DRI-PAYX

Processing pair DRI-PEP

Processing pair DRI-PNC

Processing pair DRI-POOL

Processing pair DRI-PFG

Processing pair DRI-PG

Processing pair DRI-PGR

Processing pair DRI-PLD

Processing pair DRI-PRU

Processing pair DRI-PEG

Processing pair DRI-PTC

Processing pair DRI-PSA

Processing pair DRI-DGX

Processing pair DRI-RJF

Processing pair DRI-RTX

Processing pair DRI-O

Processing pair DRI-RF

Processing pair DRI-RSG

Processing pair DRI-RMD

Processing pair DRI-ROK

Processing pair DRI-ROL

Processing pair DRI-ROP

Processing pair DRI-ROST

Processing pair DRI-SPGI

Processing pair DRI-CRM

Processing pair DRI-SRE

Processing pair DRI-NOW
ADF test for DRI-NOW failed with LinAlgError

Processing pair DRI-SHW

Processing pair DRI-SNA

Processing pair DRI-SO

Processing pair DRI-SBUX

Processing pair DRI-STE

Processing pair DRI-SYK

Processing pair DRI-SNPS

Processing pair DRI-SYY

Processing pair DRI-TMUS

Processing pair DRI-TEL

Processing pair DRI-TDY

Processing pair DRI-TER

Processing pair DRI-TXN

Processing pair DRI-TXT

Processing pair DRI-TMO

Processing pair DRI-TJX

Processing pair DRI-TSCO

Processing pair DRI-TT

Processing pair DRI-TDG

Processing pair DRI-TRV

Processing pair DRI-TYL

Processing pair DRI-ULTA

Processing pair DRI-UNP

Processing pair DRI-UNH

Processing pair DRI-VLO

Processing pair DRI-VRSN

Processing pair DRI-VRSK

Processing pair DRI-VRTX

Processing pair DRI-V

Processing pair DRI-VMC

Processing pair DRI-WRB

Processing pair DRI-WMT

Processing pair DRI-WM

Processing pair DRI-WAT

Processing pair DRI-WEC

Processing pair DRI-WELL

Processing pair DRI-WST

Processing pair DRI-WTW

Processing pair DRI-XEL

Processing pair DRI-XYL
ADF test for DRI-XYL failed with LinAlgError

Processing pair DRI-YUM

Processing pair DRI-ZTS
ADF test for DRI-ZTS failed with LinAlgError

Processing pair DVA-LEN

Processing pair DVA-NXPI
ADF test for DVA-NXPI failed with LinAlgError

Processing pair DVA-PNR

Processing pair DVA-STX

Processing pair DVA-VLTO
ADF test for DVA-VLTO failed with LinAlgError

Processing pair DECK-DELL
ADF test for DECK-DELL failed with LinAlgError

Processing pair DECK-DHI

Processing pair DECK-ETN

Processing pair DECK-ERIE

Processing pair DECK-FICO

Processing pair DECK-FAST

Processing pair DECK-IT

Processing pair DECK-GS

Processing pair DECK-HCA
ADF test for DECK-HCA failed with LinAlgError

Processing pair DECK-HLT
ADF test for DECK-HLT failed with LinAlgError

Processing pair DECK-HWM
ADF test for DECK-HWM failed with LinAlgError

Processing pair DECK-HUBB

Processing pair DECK-IR
ADF test for DECK-IR failed with LinAlgError

Processing pair DECK-ISRG

Processing pair DECK-IRM

Processing pair DECK-JBL

Processing pair DECK-KKR
ADF test for DECK-KKR failed with LinAlgError

Processing pair DECK-KLAC

Processing pair DECK-LRCX

Processing pair DECK-LEN

Processing pair DECK-LII

Processing pair DECK-LLY

Processing pair DECK-LIN

Processing pair DECK-MPC
ADF test for DECK-MPC failed with LinAlgError

Processing pair DECK-MMC

Processing pair DECK-MLM

Processing pair DECK-MCK

Processing pair DECK-MSFT

Processing pair DECK-MPWR

Processing pair DECK-MSI

Processing pair DECK-NTAP

Processing pair DECK-NRG

Processing pair DECK-NVDA

Processing pair DECK-NVR

Processing pair DECK-ORLY

Processing pair DECK-ODFL

Processing pair DECK-ORCL

Processing pair DECK-PCAR

Processing pair DECK-PANW
ADF test for DECK-PANW failed with LinAlgError

Processing pair DECK-PH

Processing pair DECK-PGR

Processing pair DECK-PHM

Processing pair DECK-PWR

Processing pair DECK-RSG

Processing pair DECK-NOW
ADF test for DECK-NOW failed with LinAlgError

Processing pair DECK-STLD

Processing pair DECK-SNPS

Processing pair DECK-TJX

Processing pair DECK-TSCO

Processing pair DECK-TT

Processing pair DECK-TDG

Processing pair DECK-URI

Processing pair DECK-GWW

Processing pair DECK-WMT

Processing pair DE-DXCM

Processing pair DE-DFS

Processing pair DE-DOV

Processing pair DE-DHI

Processing pair DE-DUK

Processing pair DE-ELV

Processing pair DE-EMR

Processing pair DE-ETR

Processing pair DE-EFX

Processing pair DE-EQIX

Processing pair DE-EXC

Processing pair DE-EXPD

Processing pair DE-EXR

Processing pair DE-FDS

Processing pair DE-FAST

Processing pair DE-FTNT

Processing pair DE-GRMN

Processing pair DE-IT

Processing pair DE-GPC

Processing pair DE-GS

Processing pair DE-HCA
ADF test for DE-HCA failed with LinAlgError

Processing pair DE-HSY

Processing pair DE-HLT
ADF test for DE-HLT failed with LinAlgError

Processing pair DE-HOLX

Processing pair DE-HD

Processing pair DE-HON

Processing pair DE-HPQ

Processing pair DE-IEX

Processing pair DE-IDXX

Processing pair DE-ITW

Processing pair DE-PODD

Processing pair DE-ICE

Processing pair DE-IPG

Processing pair DE-INTU

Processing pair DE-ISRG

Processing pair DE-IQV
ADF test for DE-IQV failed with LinAlgError

Processing pair DE-JBHT

Processing pair DE-J

Processing pair DE-JCI

Processing pair DE-JPM

Processing pair DE-KDP

Processing pair DE-KEYS
ADF test for DE-KEYS failed with LinAlgError

Processing pair DE-KLAC

Processing pair DE-LH

Processing pair DE-LRCX

Processing pair DE-LIN

Processing pair DE-LYV

Processing pair DE-LOW

Processing pair DE-LULU

Processing pair DE-MMC

Processing pair DE-MLM

Processing pair DE-MA

Processing pair DE-MCD

Processing pair DE-MRK

Processing pair DE-MET

Processing pair DE-MTD

Processing pair DE-MCHP

Processing pair DE-MSFT

Processing pair DE-MAA

Processing pair DE-MOH

Processing pair DE-MDLZ

Processing pair DE-MPWR

Processing pair DE-MNST

Processing pair DE-MCO

Processing pair DE-MS

Processing pair DE-MSI

Processing pair DE-MSCI

Processing pair DE-NDAQ

Processing pair DE-NEE

Processing pair DE-NDSN

Processing pair DE-NSC

Processing pair DE-NOC

Processing pair DE-NUE

Processing pair DE-NVR

Processing pair DE-NXPI
ADF test for DE-NXPI failed with LinAlgError

Processing pair DE-ORLY

Processing pair DE-ODFL

Processing pair DE-ON

Processing pair DE-ORCL

Processing pair DE-PKG

Processing pair DE-PH

Processing pair DE-PAYX

Processing pair DE-PEP

Processing pair DE-POOL

Processing pair DE-PFG

Processing pair DE-PG

Processing pair DE-PGR

Processing pair DE-PLD

Processing pair DE-PEG

Processing pair DE-PTC

Processing pair DE-PSA

Processing pair DE-QCOM

Processing pair DE-DGX

Processing pair DE-RJF

Processing pair DE-RF

Processing pair DE-RSG

Processing pair DE-RMD

Processing pair DE-ROK

Processing pair DE-ROL

Processing pair DE-ROP

Processing pair DE-SPGI

Processing pair DE-NOW
ADF test for DE-NOW failed with LinAlgError

Processing pair DE-SHW

Processing pair DE-SNA

Processing pair DE-SO

Processing pair DE-STLD

Processing pair DE-STE

Processing pair DE-SYK

Processing pair DE-SNPS

Processing pair DE-TMUS

Processing pair DE-TEL

Processing pair DE-TDY

Processing pair DE-TER

Processing pair DE-TSLA
ADF test for DE-TSLA failed with LinAlgError

Processing pair DE-TXN

Processing pair DE-TPL

Processing pair DE-TMO

Processing pair DE-TJX

Processing pair DE-TSCO

Processing pair DE-TT

Processing pair DE-TRV

Processing pair DE-TYL

Processing pair DE-UNP

Processing pair DE-UPS

Processing pair DE-UNH

Processing pair DE-VRSK

Processing pair DE-VICI
ADF test for DE-VICI failed with LinAlgError

Processing pair DE-V

Processing pair DE-VMC

Processing pair DE-WRB

Processing pair DE-WMT

Processing pair DE-WM

Processing pair DE-WAT

Processing pair DE-WST

Processing pair DE-WTW

Processing pair DE-XYL
ADF test for DE-XYL failed with LinAlgError

Processing pair DE-YUM

Processing pair DE-ZTS
ADF test for DE-ZTS failed with LinAlgError

Processing pair DELL-DHI
ADF test for DELL-DHI failed with LinAlgError

Processing pair DELL-ETN
ADF test for DELL-ETN failed with LinAlgError

Processing pair DELL-FICO
ADF test for DELL-FICO failed with LinAlgError

Processing pair DELL-HIG
ADF test for DELL-HIG failed with LinAlgError

Processing pair DELL-HLT
ADF test for DELL-HLT failed with LinAlgError

Processing pair DELL-HWM
ADF test for DELL-HWM failed with LinAlgError

Processing pair DELL-HUBB
ADF test for DELL-HUBB failed with LinAlgError

Processing pair DELL-IR
ADF test for DELL-IR failed with LinAlgError

Processing pair DELL-IRM
ADF test for DELL-IRM failed with LinAlgError

Processing pair DELL-JPM
ADF test for DELL-JPM failed with LinAlgError

Processing pair DELL-KKR
ADF test for DELL-KKR failed with LinAlgError

Processing pair DELL-KLAC
ADF test for DELL-KLAC failed with LinAlgError

Processing pair DELL-LRCX
ADF test for DELL-LRCX failed with LinAlgError

Processing pair DELL-LEN
ADF test for DELL-LEN failed with LinAlgError

Processing pair DELL-LII
ADF test for DELL-LII failed with LinAlgError

Processing pair DELL-LLY
ADF test for DELL-LLY failed with LinAlgError

Processing pair DELL-MAR
ADF test for DELL-MAR failed with LinAlgError

Processing pair DELL-MLM
ADF test for DELL-MLM failed with LinAlgError

Processing pair DELL-META
ADF test for DELL-META failed with LinAlgError

Processing pair DELL-MPWR
ADF test for DELL-MPWR failed with LinAlgError

Processing pair DELL-MSI
ADF test for DELL-MSI failed with LinAlgError

Processing pair DELL-NTAP
ADF test for DELL-NTAP failed with LinAlgError

Processing pair DELL-NRG
ADF test for DELL-NRG failed with LinAlgError

Processing pair DELL-NVDA
ADF test for DELL-NVDA failed with LinAlgError

Processing pair DELL-NVR
ADF test for DELL-NVR failed with LinAlgError

Processing pair DELL-ORCL
ADF test for DELL-ORCL failed with LinAlgError

Processing pair DELL-PCAR
ADF test for DELL-PCAR failed with LinAlgError

Processing pair DELL-PKG
ADF test for DELL-PKG failed with LinAlgError

Processing pair DELL-PANW
ADF test for DELL-PANW failed with LinAlgError

Processing pair DELL-PH
ADF test for DELL-PH failed with LinAlgError

Processing pair DELL-PGR
ADF test for DELL-PGR failed with LinAlgError

Processing pair DELL-PHM
ADF test for DELL-PHM failed with LinAlgError

Processing pair DELL-PWR
ADF test for DELL-PWR failed with LinAlgError

Processing pair DELL-RSG
ADF test for DELL-RSG failed with LinAlgError

Processing pair DELL-TJX
ADF test for DELL-TJX failed with LinAlgError

Processing pair DELL-TT
ADF test for DELL-TT failed with LinAlgError

Processing pair DELL-TDG
ADF test for DELL-TDG failed with LinAlgError

Processing pair DELL-URI
ADF test for DELL-URI failed with LinAlgError

Processing pair DELL-VMC
ADF test for DELL-VMC failed with LinAlgError

Processing pair DELL-GWW
ADF test for DELL-GWW failed with LinAlgError

Processing pair DAL-LUV

Processing pair DAL-UAL

Processing pair DXCM-DPZ

Processing pair DXCM-DOV

Processing pair DXCM-EW

Processing pair DXCM-ELV

Processing pair DXCM-EFX

Processing pair DXCM-EQIX

Processing pair DXCM-EXPD

Processing pair DXCM-FDS

Processing pair DXCM-FAST

Processing pair DXCM-FTNT

Processing pair DXCM-HSY

Processing pair DXCM-HOLX

Processing pair DXCM-HD

Processing pair DXCM-HUM

Processing pair DXCM-IEX

Processing pair DXCM-IDXX

Processing pair DXCM-ITW

Processing pair DXCM-PODD

Processing pair DXCM-INTU

Processing pair DXCM-IQV
ADF test for DXCM-IQV failed with LinAlgError

Processing pair DXCM-JBHT

Processing pair DXCM-J

Processing pair DXCM-KDP

Processing pair DXCM-KEYS
ADF test for DXCM-KEYS failed with LinAlgError

Processing pair DXCM-LH

Processing pair DXCM-LOW

Processing pair DXCM-LULU

Processing pair DXCM-MA

Processing pair DXCM-MCD

Processing pair DXCM-MTD

Processing pair DXCM-MCHP

Processing pair DXCM-MSFT

Processing pair DXCM-MAA

Processing pair DXCM-MOH

Processing pair DXCM-MDLZ

Processing pair DXCM-MNST

Processing pair DXCM-MCO

Processing pair DXCM-MSCI

Processing pair DXCM-NDAQ

Processing pair DXCM-NEE

Processing pair DXCM-NKE

Processing pair DXCM-NDSN

Processing pair DXCM-NSC

Processing pair DXCM-ODFL

Processing pair DXCM-PAYX

Processing pair DXCM-PEP

Processing pair DXCM-POOL

Processing pair DXCM-PG

Processing pair DXCM-PLD

Processing pair DXCM-DGX

Processing pair DXCM-RMD

Processing pair DXCM-RVTY

Processing pair DXCM-ROK

Processing pair DXCM-ROL

Processing pair DXCM-ROP

Processing pair DXCM-SPGI

Processing pair DXCM-CRM

Processing pair DXCM-SHW

Processing pair DXCM-STE

Processing pair DXCM-TGT

Processing pair DXCM-TEL

Processing pair DXCM-TDY

Processing pair DXCM-TER

Processing pair DXCM-TXN

Processing pair DXCM-TMO

Processing pair DXCM-TYL

Processing pair DXCM-UNP

Processing pair DXCM-UPS

Processing pair DXCM-UNH

Processing pair DXCM-VRSK

Processing pair DXCM-V

Processing pair DXCM-WST

Processing pair DXCM-WTW

Processing pair DXCM-YUM

Processing pair DXCM-ZTS
ADF test for DXCM-ZTS failed with LinAlgError

Processing pair FANG-EOG
ADF test for FANG-EOG failed with LinAlgError

Processing pair FANG-GD
ADF test for FANG-GD failed with LinAlgError

Processing pair FANG-HIG
ADF test for FANG-HIG failed with LinAlgError

Processing pair FANG-MPC
ADF test for FANG-MPC failed with LinAlgError

Processing pair FANG-PSX
ADF test for FANG-PSX failed with LinAlgError

Processing pair FANG-STLD
ADF test for FANG-STLD failed with LinAlgError

Processing pair FANG-TXT
ADF test for FANG-TXT failed with LinAlgError

Processing pair FANG-VLO
ADF test for FANG-VLO failed with LinAlgError

Processing pair DLR-DPZ

Processing pair DLR-DOV

Processing pair DLR-DTE

Processing pair DLR-DUK

Processing pair DLR-EBAY

Processing pair DLR-ECL

Processing pair DLR-EW

Processing pair DLR-EA

Processing pair DLR-ETR

Processing pair DLR-EFX

Processing pair DLR-EQIX

Processing pair DLR-ESS

Processing pair DLR-EVRG

Processing pair DLR-EXPD

Processing pair DLR-EXR

Processing pair DLR-FDS

Processing pair DLR-FI

Processing pair DLR-GRMN

Processing pair DLR-GEV
ADF test for DLR-GEV failed with LinAlgError

Processing pair DLR-GEN

Processing pair DLR-HOLX

Processing pair DLR-HD

Processing pair DLR-HON

Processing pair DLR-IEX

Processing pair DLR-IDXX

Processing pair DLR-ITW

Processing pair DLR-ICE

Processing pair DLR-INTU

Processing pair DLR-ISRG

Processing pair DLR-JKHY

Processing pair DLR-JNJ

Processing pair DLR-JPM

Processing pair DLR-KDP

Processing pair DLR-KMB

Processing pair DLR-LHX

Processing pair DLR-LH

Processing pair DLR-LDOS

Processing pair DLR-LII

Processing pair DLR-LYV

Processing pair DLR-LMT

Processing pair DLR-LOW

Processing pair DLR-MAS

Processing pair DLR-MA

Processing pair DLR-MKC

Processing pair DLR-MCD

Processing pair DLR-META
ADF test for DLR-META failed with LinAlgError

Processing pair DLR-MTD

Processing pair DLR-MCHP

Processing pair DLR-MAA

Processing pair DLR-MDLZ

Processing pair DLR-MNST

Processing pair DLR-MCO

Processing pair DLR-MSCI

Processing pair DLR-NDAQ

Processing pair DLR-NFLX

Processing pair DLR-NEE

Processing pair DLR-NI

Processing pair DLR-NDSN

Processing pair DLR-NSC

Processing pair DLR-NOC

Processing pair DLR-NVR

Processing pair DLR-PKG

Processing pair DLR-PAYX

Processing pair DLR-PEP

Processing pair DLR-PNC

Processing pair DLR-POOL

Processing pair DLR-PG

Processing pair DLR-PLD

Processing pair DLR-PEG

Processing pair DLR-PTC

Processing pair DLR-DGX

Processing pair DLR-O

Processing pair DLR-RMD

Processing pair DLR-ROK

Processing pair DLR-ROL

Processing pair DLR-ROP

Processing pair DLR-ROST

Processing pair DLR-SPGI

Processing pair DLR-CRM

Processing pair DLR-NOW
ADF test for DLR-NOW failed with LinAlgError

Processing pair DLR-SHW

Processing pair DLR-SO

Processing pair DLR-SBUX

Processing pair DLR-STE

Processing pair DLR-SYK

Processing pair DLR-SYY

Processing pair DLR-TMUS

Processing pair DLR-TTWO

Processing pair DLR-TEL

Processing pair DLR-TDY

Processing pair DLR-TER

Processing pair DLR-TXN

Processing pair DLR-TMO

Processing pair DLR-TYL

Processing pair DLR-UDR

Processing pair DLR-UNP

Processing pair DLR-UNH

Processing pair DLR-VRSN

Processing pair DLR-VRSK

Processing pair DLR-V

Processing pair DLR-VMC

Processing pair DLR-WMT

Processing pair DLR-WM

Processing pair DLR-WAT

Processing pair DLR-WEC

Processing pair DLR-WTW

Processing pair DLR-XEL

Processing pair DLR-XYL
ADF test for DLR-XYL failed with LinAlgError

Processing pair DLR-YUM

Processing pair DLR-ZTS
ADF test for DLR-ZTS failed with LinAlgError

Processing pair DFS-DOV

Processing pair DFS-DHI

Processing pair DFS-DTE

Processing pair DFS-DUK

Processing pair DFS-EMN

Processing pair DFS-EBAY

Processing pair DFS-ELV

Processing pair DFS-EMR

Processing pair DFS-ETR

Processing pair DFS-EFX

Processing pair DFS-EQIX

Processing pair DFS-EG

Processing pair DFS-EXPD

Processing pair DFS-EXR

Processing pair DFS-FDS

Processing pair DFS-FAST

Processing pair DFS-FITB

Processing pair DFS-FI

Processing pair DFS-FTNT

Processing pair DFS-GRMN

Processing pair DFS-IT

Processing pair DFS-GEN

Processing pair DFS-GD

Processing pair DFS-GPC

Processing pair DFS-GS

Processing pair DFS-HIG

Processing pair DFS-HCA
ADF test for DFS-HCA failed with LinAlgError

Processing pair DFS-HLT
ADF test for DFS-HLT failed with LinAlgError

Processing pair DFS-HOLX

Processing pair DFS-HD

Processing pair DFS-HON

Processing pair DFS-HBAN

Processing pair DFS-IEX

Processing pair DFS-ITW

Processing pair DFS-ICE

Processing pair DFS-IPG

Processing pair DFS-INTU

Processing pair DFS-ISRG

Processing pair DFS-JBHT

Processing pair DFS-J

Processing pair DFS-JNJ

Processing pair DFS-JCI

Processing pair DFS-JPM

Processing pair DFS-KKR
ADF test for DFS-KKR failed with LinAlgError

Processing pair DFS-LHX

Processing pair DFS-LH

Processing pair DFS-LEN

Processing pair DFS-LII

Processing pair DFS-LIN

Processing pair DFS-LYV

Processing pair DFS-LMT

Processing pair DFS-L

Processing pair DFS-LOW

Processing pair DFS-LYB
ADF test for DFS-LYB failed with LinAlgError

Processing pair DFS-MAR

Processing pair DFS-MMC

Processing pair DFS-MLM

Processing pair DFS-MAS

Processing pair DFS-MA

Processing pair DFS-MCD

Processing pair DFS-MET

Processing pair DFS-MTD

Processing pair DFS-MGM

Processing pair DFS-MCHP

Processing pair DFS-MU

Processing pair DFS-MSFT

Processing pair DFS-MAA

Processing pair DFS-MDLZ

Processing pair DFS-MPWR

Processing pair DFS-MNST

Processing pair DFS-MCO

Processing pair DFS-MS

Processing pair DFS-MSI

Processing pair DFS-NDAQ

Processing pair DFS-NDSN

Processing pair DFS-NSC

Processing pair DFS-NOC

Processing pair DFS-NVR

Processing pair DFS-NXPI
ADF test for DFS-NXPI failed with LinAlgError

Processing pair DFS-ORLY

Processing pair DFS-ODFL

Processing pair DFS-OMC

Processing pair DFS-OKE

Processing pair DFS-ORCL

Processing pair DFS-PKG

Processing pair DFS-PH

Processing pair DFS-PAYX

Processing pair DFS-PNR

Processing pair DFS-PEP

Processing pair DFS-PM

Processing pair DFS-PNC

Processing pair DFS-PFG

Processing pair DFS-PG

Processing pair DFS-PLD

Processing pair DFS-PRU

Processing pair DFS-PEG

Processing pair DFS-PTC

Processing pair DFS-PSA

Processing pair DFS-QCOM

Processing pair DFS-DGX

Processing pair DFS-RJF

Processing pair DFS-RTX

Processing pair DFS-RF

Processing pair DFS-RSG

Processing pair DFS-ROK

Processing pair DFS-ROL

Processing pair DFS-ROP

Processing pair DFS-ROST

Processing pair DFS-SPGI

Processing pair DFS-STX

Processing pair DFS-SRE

Processing pair DFS-NOW
ADF test for DFS-NOW failed with LinAlgError

Processing pair DFS-SHW

Processing pair DFS-SNA

Processing pair DFS-SO

Processing pair DFS-STE

Processing pair DFS-SYK

Processing pair DFS-SYF
ADF test for DFS-SYF failed with LinAlgError

Processing pair DFS-SYY

Processing pair DFS-TMUS

Processing pair DFS-TEL

Processing pair DFS-TDY

Processing pair DFS-TXN

Processing pair DFS-TPL

Processing pair DFS-TXT

Processing pair DFS-TMO

Processing pair DFS-TJX

Processing pair DFS-TSCO

Processing pair DFS-TT

Processing pair DFS-TDG

Processing pair DFS-TRV

Processing pair DFS-TYL

Processing pair DFS-UNP

Processing pair DFS-URI

Processing pair DFS-UNH

Processing pair DFS-VRSK

Processing pair DFS-V

Processing pair DFS-VMC

Processing pair DFS-WRB

Processing pair DFS-WMT

Processing pair DFS-WM

Processing pair DFS-WAT

Processing pair DFS-WELL

Processing pair DFS-WY

Processing pair DFS-WTW

Processing pair DFS-XYL
ADF test for DFS-XYL failed with LinAlgError

Processing pair DFS-YUM

Processing pair DG-EW

Processing pair DG-EL

Processing pair DG-ES

Processing pair DG-FMC

Processing pair DG-HUM

Processing pair DG-PODD

Processing pair DG-KDP

Processing pair DG-MKC

Processing pair DG-NEE

Processing pair DG-NKE

Processing pair DG-PAYC
ADF test for DG-PAYC failed with LinAlgError

Processing pair DG-PFE

Processing pair DG-RMD

Processing pair DG-RVTY

Processing pair DG-SBAC

Processing pair DG-TDY

Processing pair DG-UPS

Processing pair DG-VRSN

Processing pair DG-WEC

Processing pair DG-XEL

Processing pair DLTR-GPC

Processing pair DLTR-HUM

Processing pair DLTR-JNJ

Processing pair DLTR-PFE

Processing pair DLTR-SJM

Processing pair DLTR-ULTA

Processing pair D-ES

Processing pair D-FIS

Processing pair D-HRL

Processing pair D-IFF

Processing pair D-MDT

Processing pair D-TSN

Processing pair D-VLTO
ADF test for D-VLTO failed with LinAlgError

Processing pair D-VZ

Processing pair DPZ-DOV

Processing pair DPZ-DTE

Processing pair DPZ-DUK

Processing pair DPZ-EBAY

Processing pair DPZ-ECL

Processing pair DPZ-EW

Processing pair DPZ-EA

Processing pair DPZ-ELV

Processing pair DPZ-EMR

Processing pair DPZ-ETR

Processing pair DPZ-EFX

Processing pair DPZ-EQIX

Processing pair DPZ-EVRG

Processing pair DPZ-ES

Processing pair DPZ-EXPD

Processing pair DPZ-EXR

Processing pair DPZ-FDS

Processing pair DPZ-FAST

Processing pair DPZ-FITB

Processing pair DPZ-FI

Processing pair DPZ-GRMN

Processing pair DPZ-GEN

Processing pair DPZ-HOLX

Processing pair DPZ-HD

Processing pair DPZ-HON

Processing pair DPZ-HUM

Processing pair DPZ-IEX

Processing pair DPZ-IDXX

Processing pair DPZ-ITW

Processing pair DPZ-PODD

Processing pair DPZ-ICE

Processing pair DPZ-INTU

Processing pair DPZ-ISRG

Processing pair DPZ-IQV
ADF test for DPZ-IQV failed with LinAlgError

Processing pair DPZ-JBHT

Processing pair DPZ-JKHY

Processing pair DPZ-J

Processing pair DPZ-JNJ

Processing pair DPZ-JPM

Processing pair DPZ-KDP

Processing pair DPZ-KEYS
ADF test for DPZ-KEYS failed with LinAlgError

Processing pair DPZ-KMB

Processing pair DPZ-LHX

Processing pair DPZ-LH

Processing pair DPZ-LDOS

Processing pair DPZ-LII

Processing pair DPZ-LYV

Processing pair DPZ-LMT

Processing pair DPZ-LOW

Processing pair DPZ-LULU

Processing pair DPZ-MMC

Processing pair DPZ-MLM

Processing pair DPZ-MAS

Processing pair DPZ-MA

Processing pair DPZ-MKC

Processing pair DPZ-MCD

Processing pair DPZ-MTD

Processing pair DPZ-MCHP

Processing pair DPZ-MU

Processing pair DPZ-MSFT

Processing pair DPZ-MAA

Processing pair DPZ-MOH

Processing pair DPZ-MDLZ

Processing pair DPZ-MNST

Processing pair DPZ-MCO

Processing pair DPZ-MS

Processing pair DPZ-MSCI

Processing pair DPZ-NDAQ

Processing pair DPZ-NFLX

Processing pair DPZ-NEE

Processing pair DPZ-NKE

Processing pair DPZ-NDSN

Processing pair DPZ-NSC

Processing pair DPZ-NOC

Processing pair DPZ-NVR

Processing pair DPZ-NXPI
ADF test for DPZ-NXPI failed with LinAlgError

Processing pair DPZ-ODFL

Processing pair DPZ-PKG

Processing pair DPZ-PAYX

Processing pair DPZ-PEP

Processing pair DPZ-PNC

Processing pair DPZ-POOL

Processing pair DPZ-PG

Processing pair DPZ-PLD

Processing pair DPZ-PEG

Processing pair DPZ-PTC

Processing pair DPZ-PSA

Processing pair DPZ-DGX

Processing pair DPZ-O

Processing pair DPZ-RF

Processing pair DPZ-RSG

Processing pair DPZ-RMD

Processing pair DPZ-RVTY

Processing pair DPZ-ROK

Processing pair DPZ-ROL

Processing pair DPZ-ROP

Processing pair DPZ-ROST

Processing pair DPZ-SPGI

Processing pair DPZ-CRM

Processing pair DPZ-SBAC

Processing pair DPZ-STX

Processing pair DPZ-SRE

Processing pair DPZ-NOW
ADF test for DPZ-NOW failed with LinAlgError

Processing pair DPZ-SHW

Processing pair DPZ-SO

Processing pair DPZ-SBUX

Processing pair DPZ-STE

Processing pair DPZ-SYK

Processing pair DPZ-SYY

Processing pair DPZ-TMUS

Processing pair DPZ-TROW

Processing pair DPZ-TTWO

Processing pair DPZ-TEL

Processing pair DPZ-TDY

Processing pair DPZ-TER

Processing pair DPZ-TXN

Processing pair DPZ-TMO

Processing pair DPZ-TJX

Processing pair DPZ-TYL

Processing pair DPZ-UDR

Processing pair DPZ-UNP

Processing pair DPZ-UPS

Processing pair DPZ-UNH

Processing pair DPZ-VRSN

Processing pair DPZ-VRSK

Processing pair DPZ-V

Processing pair DPZ-VMC

Processing pair DPZ-WMT

Processing pair DPZ-WM

Processing pair DPZ-WAT

Processing pair DPZ-WEC

Processing pair DPZ-WST

Processing pair DPZ-WTW

Processing pair DPZ-WDAY
ADF test for DPZ-WDAY failed with LinAlgError

Processing pair DPZ-XEL

Processing pair DPZ-XYL
ADF test for DPZ-XYL failed with LinAlgError

Processing pair DPZ-YUM

Processing pair DPZ-ZBRA

Processing pair DPZ-ZTS
ADF test for DPZ-ZTS failed with LinAlgError

Processing pair DOV-DHI

Processing pair DOV-DTE

Processing pair DOV-DUK

Processing pair DOV-ETN

Processing pair DOV-EBAY

Processing pair DOV-ECL

Processing pair DOV-EW

Processing pair DOV-ELV

Processing pair DOV-EMR

Processing pair DOV-ETR

Processing pair DOV-EFX

Processing pair DOV-EQIX

Processing pair DOV-ERIE

Processing pair DOV-EG

Processing pair DOV-EXC

Processing pair DOV-EXPD

Processing pair DOV-EXR

Processing pair DOV-FDS

Processing pair DOV-FAST

Processing pair DOV-FITB

Processing pair DOV-FI

Processing pair DOV-FTNT

Processing pair DOV-GRMN

Processing pair DOV-IT

Processing pair DOV-GEN

Processing pair DOV-GPC

Processing pair DOV-GS

Processing pair DOV-HIG

Processing pair DOV-HCA
ADF test for DOV-HCA failed with LinAlgError

Processing pair DOV-HSY

Processing pair DOV-HLT
ADF test for DOV-HLT failed with LinAlgError

Processing pair DOV-HOLX

Processing pair DOV-HD

Processing pair DOV-HON

Processing pair DOV-HPQ

Processing pair DOV-HUBB

Processing pair DOV-IEX

Processing pair DOV-IDXX

Processing pair DOV-ITW

Processing pair DOV-IR
ADF test for DOV-IR failed with LinAlgError

Processing pair DOV-PODD

Processing pair DOV-ICE

Processing pair DOV-IPG

Processing pair DOV-INTU

Processing pair DOV-ISRG

Processing pair DOV-INVH
ADF test for DOV-INVH failed with LinAlgError

Processing pair DOV-IQV
ADF test for DOV-IQV failed with LinAlgError

Processing pair DOV-JBHT

Processing pair DOV-JKHY

Processing pair DOV-J

Processing pair DOV-JNJ

Processing pair DOV-JCI

Processing pair DOV-JPM

Processing pair DOV-KDP

Processing pair DOV-KEYS
ADF test for DOV-KEYS failed with LinAlgError

Processing pair DOV-KKR
ADF test for DOV-KKR failed with LinAlgError

Processing pair DOV-KLAC

Processing pair DOV-LHX

Processing pair DOV-LH

Processing pair DOV-LRCX

Processing pair DOV-LDOS

Processing pair DOV-LEN

Processing pair DOV-LII

Processing pair DOV-LIN

Processing pair DOV-LYV

Processing pair DOV-LMT

Processing pair DOV-LOW

Processing pair DOV-LULU

Processing pair DOV-MAR

Processing pair DOV-MMC

Processing pair DOV-MLM

Processing pair DOV-MAS

Processing pair DOV-MA

Processing pair DOV-MCD

Processing pair DOV-MRK

Processing pair DOV-MET

Processing pair DOV-MTD

Processing pair DOV-MCHP

Processing pair DOV-MU

Processing pair DOV-MSFT

Processing pair DOV-MAA

Processing pair DOV-MOH

Processing pair DOV-MDLZ

Processing pair DOV-MPWR

Processing pair DOV-MNST

Processing pair DOV-MCO

Processing pair DOV-MS

Processing pair DOV-MSI

Processing pair DOV-MSCI

Processing pair DOV-NDAQ

Processing pair DOV-NTAP

Processing pair DOV-NFLX

Processing pair DOV-NEE

Processing pair DOV-NDSN

Processing pair DOV-NSC

Processing pair DOV-NOC

Processing pair DOV-NVR

Processing pair DOV-NXPI
ADF test for DOV-NXPI failed with LinAlgError

Processing pair DOV-ORLY

Processing pair DOV-ODFL

Processing pair DOV-ORCL

Processing pair DOV-OTIS
ADF test for DOV-OTIS failed with LinAlgError

Processing pair DOV-PCAR

Processing pair DOV-PKG

Processing pair DOV-PANW
ADF test for DOV-PANW failed with LinAlgError

Processing pair DOV-PH

Processing pair DOV-PAYX

Processing pair DOV-PNR

Processing pair DOV-PEP

Processing pair DOV-PNC

Processing pair DOV-POOL

Processing pair DOV-PFG

Processing pair DOV-PG

Processing pair DOV-PGR

Processing pair DOV-PLD

Processing pair DOV-PEG

Processing pair DOV-PTC

Processing pair DOV-PSA

Processing pair DOV-QCOM

Processing pair DOV-DGX

Processing pair DOV-RJF

Processing pair DOV-RTX

Processing pair DOV-RF

Processing pair DOV-RSG

Processing pair DOV-RMD

Processing pair DOV-RVTY

Processing pair DOV-ROK

Processing pair DOV-ROL

Processing pair DOV-ROP

Processing pair DOV-ROST

Processing pair DOV-SPGI

Processing pair DOV-CRM

Processing pair DOV-STX

Processing pair DOV-SRE

Processing pair DOV-NOW
ADF test for DOV-NOW failed with LinAlgError

Processing pair DOV-SHW

Processing pair DOV-SNA

Processing pair DOV-SO

Processing pair DOV-SBUX

Processing pair DOV-STE

Processing pair DOV-SYK

Processing pair DOV-SNPS

Processing pair DOV-SYY

Processing pair DOV-TMUS

Processing pair DOV-TGT

Processing pair DOV-TEL

Processing pair DOV-TDY

Processing pair DOV-TER

Processing pair DOV-TXN

Processing pair DOV-TPL

Processing pair DOV-TMO

Processing pair DOV-TJX

Processing pair DOV-TSCO

Processing pair DOV-TT

Processing pair DOV-TDG

Processing pair DOV-TRV

Processing pair DOV-TRMB

Processing pair DOV-TYL

Processing pair DOV-UNP

Processing pair DOV-UPS

Processing pair DOV-URI

Processing pair DOV-UNH

Processing pair DOV-VLTO
ADF test for DOV-VLTO failed with LinAlgError

Processing pair DOV-VRSK

Processing pair DOV-VRTX

Processing pair DOV-V

Processing pair DOV-VMC

Processing pair DOV-WRB

Processing pair DOV-GWW

Processing pair DOV-WMT

Processing pair DOV-WM

Processing pair DOV-WAT

Processing pair DOV-WEC

Processing pair DOV-WELL

Processing pair DOV-WST

Processing pair DOV-WTW

Processing pair DOV-WDAY
ADF test for DOV-WDAY failed with LinAlgError

Processing pair DOV-XEL

Processing pair DOV-XYL
ADF test for DOV-XYL failed with LinAlgError

Processing pair DOV-YUM

Processing pair DOV-ZBRA

Processing pair DOV-ZTS
ADF test for DOV-ZTS failed with LinAlgError

Processing pair DOW-LYB
ADF test for DOW-LYB failed with LinAlgError

Processing pair DHI-ETN

Processing pair DHI-ELV

Processing pair DHI-EMR

Processing pair DHI-EFX

Processing pair DHI-EQIX

Processing pair DHI-ERIE

Processing pair DHI-EG

Processing pair DHI-EXPD

Processing pair DHI-FDS

Processing pair DHI-FICO

Processing pair DHI-FAST

Processing pair DHI-FI

Processing pair DHI-FTNT

Processing pair DHI-GRMN

Processing pair DHI-IT

Processing pair DHI-GS

Processing pair DHI-HIG

Processing pair DHI-HCA
ADF test for DHI-HCA failed with LinAlgError

Processing pair DHI-HLT
ADF test for DHI-HLT failed with LinAlgError

Processing pair DHI-HD

Processing pair DHI-HWM
ADF test for DHI-HWM failed with LinAlgError

Processing pair DHI-HUBB

Processing pair DHI-ITW

Processing pair DHI-IR
ADF test for DHI-IR failed with LinAlgError

Processing pair DHI-ICE

Processing pair DHI-INTU

Processing pair DHI-ISRG

Processing pair DHI-IRM

Processing pair DHI-JBL

Processing pair DHI-J

Processing pair DHI-JCI

Processing pair DHI-JPM

Processing pair DHI-KKR
ADF test for DHI-KKR failed with LinAlgError

Processing pair DHI-KLAC

Processing pair DHI-LRCX

Processing pair DHI-LDOS

Processing pair DHI-LEN

Processing pair DHI-LII

Processing pair DHI-LLY

Processing pair DHI-LIN

Processing pair DHI-L

Processing pair DHI-LOW

Processing pair DHI-MPC
ADF test for DHI-MPC failed with LinAlgError

Processing pair DHI-MAR

Processing pair DHI-MMC

Processing pair DHI-MLM

Processing pair DHI-MAS

Processing pair DHI-MA

Processing pair DHI-MCD

Processing pair DHI-MRK

Processing pair DHI-META
ADF test for DHI-META failed with LinAlgError

Processing pair DHI-MET

Processing pair DHI-MCHP

Processing pair DHI-MU

Processing pair DHI-MSFT

Processing pair DHI-MOH

Processing pair DHI-MDLZ

Processing pair DHI-MPWR

Processing pair DHI-MCO

Processing pair DHI-MS

Processing pair DHI-MSI

Processing pair DHI-MSCI

Processing pair DHI-NDAQ

Processing pair DHI-NTAP

Processing pair DHI-NDSN

Processing pair DHI-NUE

Processing pair DHI-NVR

Processing pair DHI-NXPI
ADF test for DHI-NXPI failed with LinAlgError

Processing pair DHI-ORLY

Processing pair DHI-ODFL

Processing pair DHI-ON

Processing pair DHI-ORCL

Processing pair DHI-PCAR

Processing pair DHI-PKG

Processing pair DHI-PANW
ADF test for DHI-PANW failed with LinAlgError

Processing pair DHI-PH

Processing pair DHI-PAYX

Processing pair DHI-PNR

Processing pair DHI-PEP

Processing pair DHI-PG

Processing pair DHI-PGR

Processing pair DHI-PEG

Processing pair DHI-PTC

Processing pair DHI-PHM

Processing pair DHI-PWR

Processing pair DHI-QCOM

Processing pair DHI-RJF

Processing pair DHI-RSG

Processing pair DHI-ROL

Processing pair DHI-ROP

Processing pair DHI-SPGI

Processing pair DHI-STX

Processing pair DHI-NOW
ADF test for DHI-NOW failed with LinAlgError

Processing pair DHI-SHW

Processing pair DHI-SNA

Processing pair DHI-SO

Processing pair DHI-STLD

Processing pair DHI-STE

Processing pair DHI-SYK

Processing pair DHI-SNPS

Processing pair DHI-TMUS

Processing pair DHI-TEL

Processing pair DHI-TXN

Processing pair DHI-TPL

Processing pair DHI-TMO

Processing pair DHI-TJX

Processing pair DHI-TSCO

Processing pair DHI-TT

Processing pair DHI-TDG

Processing pair DHI-TRV

Processing pair DHI-TYL

Processing pair DHI-UNP

Processing pair DHI-URI

Processing pair DHI-UNH

Processing pair DHI-VRSK

Processing pair DHI-VRTX

Processing pair DHI-V

Processing pair DHI-VMC

Processing pair DHI-WRB

Processing pair DHI-GWW

Processing pair DHI-WMT

Processing pair DHI-WM

Processing pair DHI-WELL

Processing pair DHI-WTW

Processing pair DHI-XYL
ADF test for DHI-XYL failed with LinAlgError

Processing pair DHI-YUM

Processing pair DTE-DUK

Processing pair DTE-EBAY

Processing pair DTE-ECL

Processing pair DTE-EIX

Processing pair DTE-EW

Processing pair DTE-EA

Processing pair DTE-ELV

Processing pair DTE-EMR

Processing pair DTE-ETR

Processing pair DTE-EFX

Processing pair DTE-EQIX

Processing pair DTE-EQR

Processing pair DTE-ESS

Processing pair DTE-EG

Processing pair DTE-EVRG

Processing pair DTE-ES

Processing pair DTE-EXC

Processing pair DTE-EXPD

Processing pair DTE-EXR

Processing pair DTE-FDS

Processing pair DTE-FITB

Processing pair DTE-FI

Processing pair DTE-GEN

Processing pair DTE-GD

Processing pair DTE-GPC

Processing pair DTE-GL

Processing pair DTE-HCA
ADF test for DTE-HCA failed with LinAlgError

Processing pair DTE-HSIC

Processing pair DTE-HSY

Processing pair DTE-HOLX

Processing pair DTE-HD

Processing pair DTE-HON

Processing pair DTE-HUM

Processing pair DTE-HBAN

Processing pair DTE-HII
ADF test for DTE-HII failed with LinAlgError

Processing pair DTE-IEX

Processing pair DTE-IDXX

Processing pair DTE-ITW

Processing pair DTE-ICE

Processing pair DTE-IPG

Processing pair DTE-INTU

Processing pair DTE-INVH
ADF test for DTE-INVH failed with LinAlgError

Processing pair DTE-IQV
ADF test for DTE-IQV failed with LinAlgError

Processing pair DTE-JBHT

Processing pair DTE-JKHY

Processing pair DTE-J

Processing pair DTE-JNJ

Processing pair DTE-JCI

Processing pair DTE-JPM

Processing pair DTE-KDP

Processing pair DTE-KEYS
ADF test for DTE-KEYS failed with LinAlgError

Processing pair DTE-KMB

Processing pair DTE-LHX

Processing pair DTE-LH

Processing pair DTE-LDOS

Processing pair DTE-LYV

Processing pair DTE-LMT

Processing pair DTE-LOW

Processing pair DTE-MAR

Processing pair DTE-MMC

Processing pair DTE-MLM

Processing pair DTE-MAS

Processing pair DTE-MA

Processing pair DTE-MKC

Processing pair DTE-MCD

Processing pair DTE-MDT

Processing pair DTE-MRK

Processing pair DTE-MTD

Processing pair DTE-MCHP

Processing pair DTE-MAA

Processing pair DTE-MOH

Processing pair DTE-MDLZ

Processing pair DTE-MNST

Processing pair DTE-MCO

Processing pair DTE-MS

Processing pair DTE-MSCI

Processing pair DTE-NDAQ

Processing pair DTE-NEE

Processing pair DTE-NI

Processing pair DTE-NDSN

Processing pair DTE-NSC

Processing pair DTE-NTRS

Processing pair DTE-NOC

Processing pair DTE-NVR

Processing pair DTE-NXPI
ADF test for DTE-NXPI failed with LinAlgError

Processing pair DTE-PKG

Processing pair DTE-PAYX

Processing pair DTE-PEP

Processing pair DTE-PFE

Processing pair DTE-PM

Processing pair DTE-PNW

Processing pair DTE-PNC

Processing pair DTE-POOL

Processing pair DTE-PPG

Processing pair DTE-PFG

Processing pair DTE-PG

Processing pair DTE-PLD

Processing pair DTE-PRU

Processing pair DTE-PEG

Processing pair DTE-PTC

Processing pair DTE-PSA

Processing pair DTE-DGX

Processing pair DTE-RJF

Processing pair DTE-RTX

Processing pair DTE-O

Processing pair DTE-RF

Processing pair DTE-RSG

Processing pair DTE-RMD

Processing pair DTE-RVTY

Processing pair DTE-ROK

Processing pair DTE-ROL

Processing pair DTE-ROP

Processing pair DTE-ROST

Processing pair DTE-SPGI

Processing pair DTE-CRM

Processing pair DTE-SBAC

Processing pair DTE-SRE

Processing pair DTE-SHW

Processing pair DTE-SNA

Processing pair DTE-SO

Processing pair DTE-SBUX

Processing pair DTE-STE

Processing pair DTE-SYK

Processing pair DTE-SYY

Processing pair DTE-TMUS

Processing pair DTE-TTWO

Processing pair DTE-TEL

Processing pair DTE-TDY

Processing pair DTE-TXN

Processing pair DTE-TMO

Processing pair DTE-TJX

Processing pair DTE-TRV

Processing pair DTE-TYL

Processing pair DTE-UDR

Processing pair DTE-ULTA

Processing pair DTE-UNP

Processing pair DTE-UPS

Processing pair DTE-UNH

Processing pair DTE-VLTO
ADF test for DTE-VLTO failed with LinAlgError

Processing pair DTE-VRSN

Processing pair DTE-VRSK

Processing pair DTE-V

Processing pair DTE-VMC

Processing pair DTE-WRB

Processing pair DTE-WMT

Processing pair DTE-WM

Processing pair DTE-WAT

Processing pair DTE-WEC

Processing pair DTE-WELL

Processing pair DTE-WTW

Processing pair DTE-XEL

Processing pair DTE-XYL
ADF test for DTE-XYL failed with LinAlgError

Processing pair DTE-YUM

Processing pair DTE-ZTS
ADF test for DTE-ZTS failed with LinAlgError

Processing pair DUK-EBAY

Processing pair DUK-ECL

Processing pair DUK-EIX

Processing pair DUK-EW

Processing pair DUK-EA

Processing pair DUK-ELV

Processing pair DUK-EMR

Processing pair DUK-ETR

Processing pair DUK-EFX

Processing pair DUK-EQIX

Processing pair DUK-EQR

Processing pair DUK-ESS

Processing pair DUK-EG

Processing pair DUK-EVRG

Processing pair DUK-ES

Processing pair DUK-EXC

Processing pair DUK-EXPD

Processing pair DUK-EXR

Processing pair DUK-FDS

Processing pair DUK-FAST

Processing pair DUK-FITB

Processing pair DUK-FI

Processing pair DUK-GRMN

Processing pair DUK-IT

Processing pair DUK-GEN

Processing pair DUK-GD

Processing pair DUK-GIS

Processing pair DUK-GPC

Processing pair DUK-GL

Processing pair DUK-GS

Processing pair DUK-HIG

Processing pair DUK-HCA
ADF test for DUK-HCA failed with LinAlgError

Processing pair DUK-HSY

Processing pair DUK-HLT
ADF test for DUK-HLT failed with LinAlgError

Processing pair DUK-HOLX

Processing pair DUK-HD

Processing pair DUK-HON

Processing pair DUK-HUM

Processing pair DUK-HBAN

Processing pair DUK-IEX

Processing pair DUK-IDXX

Processing pair DUK-ITW

Processing pair DUK-ICE

Processing pair DUK-IPG

Processing pair DUK-INTU

Processing pair DUK-ISRG

Processing pair DUK-INVH
ADF test for DUK-INVH failed with LinAlgError

Processing pair DUK-IQV
ADF test for DUK-IQV failed with LinAlgError

Processing pair DUK-JBHT

Processing pair DUK-JKHY

Processing pair DUK-J

Processing pair DUK-JNJ

Processing pair DUK-JCI

Processing pair DUK-JPM

Processing pair DUK-KDP

Processing pair DUK-KEYS
ADF test for DUK-KEYS failed with LinAlgError

Processing pair DUK-KMB

Processing pair DUK-KR

Processing pair DUK-LHX

Processing pair DUK-LH

Processing pair DUK-LDOS

Processing pair DUK-LII

Processing pair DUK-LIN

Processing pair DUK-LYV

Processing pair DUK-LMT

Processing pair DUK-LOW

Processing pair DUK-MAR

Processing pair DUK-MMC

Processing pair DUK-MLM

Processing pair DUK-MAS

Processing pair DUK-MA

Processing pair DUK-MKC

Processing pair DUK-MCD

Processing pair DUK-MRK

Processing pair DUK-MET

Processing pair DUK-MTD

Processing pair DUK-MCHP

Processing pair DUK-MU

Processing pair DUK-MSFT

Processing pair DUK-MAA

Processing pair DUK-MOH

Processing pair DUK-MDLZ

Processing pair DUK-MNST

Processing pair DUK-MCO

Processing pair DUK-MS

Processing pair DUK-MSI

Processing pair DUK-MSCI

Processing pair DUK-NDAQ

Processing pair DUK-NEE

Processing pair DUK-NI

Processing pair DUK-NDSN

Processing pair DUK-NSC

Processing pair DUK-NOC

Processing pair DUK-NVR

Processing pair DUK-NXPI
ADF test for DUK-NXPI failed with LinAlgError

Processing pair DUK-ORLY

Processing pair DUK-ODFL

Processing pair DUK-PKG

Processing pair DUK-PAYX

Processing pair DUK-PEP

Processing pair DUK-PM

Processing pair DUK-PNW

Processing pair DUK-PNC

Processing pair DUK-POOL

Processing pair DUK-PPG

Processing pair DUK-PFG

Processing pair DUK-PG

Processing pair DUK-PLD

Processing pair DUK-PRU

Processing pair DUK-PEG

Processing pair DUK-PTC

Processing pair DUK-PSA

Processing pair DUK-DGX

Processing pair DUK-RJF

Processing pair DUK-RTX

Processing pair DUK-O

Processing pair DUK-RF

Processing pair DUK-RSG

Processing pair DUK-RMD

Processing pair DUK-RVTY

Processing pair DUK-ROK

Processing pair DUK-ROL

Processing pair DUK-ROP

Processing pair DUK-ROST

Processing pair DUK-SPGI

Processing pair DUK-CRM

Processing pair DUK-SBAC

Processing pair DUK-STX

Processing pair DUK-SRE

Processing pair DUK-NOW
ADF test for DUK-NOW failed with LinAlgError

Processing pair DUK-SHW

Processing pair DUK-SNA

Processing pair DUK-SO

Processing pair DUK-SBUX

Processing pair DUK-STE

Processing pair DUK-SYK

Processing pair DUK-SYY

Processing pair DUK-TMUS

Processing pair DUK-TEL

Processing pair DUK-TDY

Processing pair DUK-TER

Processing pair DUK-TXN

Processing pair DUK-TMO

Processing pair DUK-TJX

Processing pair DUK-TSCO

Processing pair DUK-TDG

Processing pair DUK-TRV

Processing pair DUK-TYL

Processing pair DUK-UDR

Processing pair DUK-ULTA

Processing pair DUK-UNP

Processing pair DUK-UPS

Processing pair DUK-UNH

Processing pair DUK-VLTO
ADF test for DUK-VLTO failed with LinAlgError

Processing pair DUK-VRSN

Processing pair DUK-VRSK

Processing pair DUK-VRTX

Processing pair DUK-VICI
ADF test for DUK-VICI failed with LinAlgError

Processing pair DUK-V

Processing pair DUK-VMC

Processing pair DUK-WRB

Processing pair DUK-WMT

Processing pair DUK-WM

Processing pair DUK-WAT

Processing pair DUK-WEC

Processing pair DUK-WELL

Processing pair DUK-WST

Processing pair DUK-WTW

Processing pair DUK-XEL

Processing pair DUK-XYL
ADF test for DUK-XYL failed with LinAlgError

Processing pair DUK-YUM

Processing pair DUK-ZTS
ADF test for DUK-ZTS failed with LinAlgError

Processing pair EMN-EBAY

Processing pair EMN-FDX

Processing pair EMN-FITB

Processing pair EMN-HON

Processing pair EMN-HBAN

Processing pair EMN-IP

Processing pair EMN-KEY

Processing pair EMN-LYB
ADF test for EMN-LYB failed with LinAlgError

Processing pair EMN-MGM

Processing pair EMN-NTRS

Processing pair EMN-PNC

Processing pair EMN-PPG

Processing pair EMN-PRU

Processing pair EMN-RF

Processing pair EMN-STX

Processing pair EMN-STT

Processing pair EMN-TEL

Processing pair EMN-VLTO
ADF test for EMN-VLTO failed with LinAlgError

Processing pair EMN-WY

Processing pair ETN-EMR

Processing pair ETN-ERIE

Processing pair ETN-FICO

Processing pair ETN-FAST

Processing pair ETN-FTNT

Processing pair ETN-GRMN

Processing pair ETN-IT

Processing pair ETN-GS

Processing pair ETN-HIG

Processing pair ETN-HCA
ADF test for ETN-HCA failed with LinAlgError

Processing pair ETN-HLT
ADF test for ETN-HLT failed with LinAlgError

Processing pair ETN-HWM
ADF test for ETN-HWM failed with LinAlgError

Processing pair ETN-HUBB

Processing pair ETN-IR
ADF test for ETN-IR failed with LinAlgError

Processing pair ETN-INTU

Processing pair ETN-ISRG

Processing pair ETN-IRM

Processing pair ETN-JBL

Processing pair ETN-J

Processing pair ETN-JPM

Processing pair ETN-KKR
ADF test for ETN-KKR failed with LinAlgError

Processing pair ETN-KLAC

Processing pair ETN-LRCX

Processing pair ETN-LEN

Processing pair ETN-LII

Processing pair ETN-LLY

Processing pair ETN-LIN

Processing pair ETN-L

Processing pair ETN-LOW

Processing pair ETN-MPC
ADF test for ETN-MPC failed with LinAlgError

Processing pair ETN-MAR

Processing pair ETN-MMC

Processing pair ETN-MLM

Processing pair ETN-MCK

Processing pair ETN-MRK

Processing pair ETN-MET

Processing pair ETN-MSFT

Processing pair ETN-MPWR

Processing pair ETN-MCO

Processing pair ETN-MS

Processing pair ETN-MSI

Processing pair ETN-NTAP

Processing pair ETN-NRG

Processing pair ETN-NUE

Processing pair ETN-NVDA

Processing pair ETN-NVR

Processing pair ETN-NXPI
ADF test for ETN-NXPI failed with LinAlgError

Processing pair ETN-ORLY

Processing pair ETN-ODFL

Processing pair ETN-ORCL

Processing pair ETN-PCAR

Processing pair ETN-PKG

Processing pair ETN-PANW
ADF test for ETN-PANW failed with LinAlgError

Processing pair ETN-PH

Processing pair ETN-PNR

Processing pair ETN-PGR

Processing pair ETN-PTC

Processing pair ETN-PHM

Processing pair ETN-PWR

Processing pair ETN-QCOM

Processing pair ETN-RJF

Processing pair ETN-RSG

Processing pair ETN-NOW
ADF test for ETN-NOW failed with LinAlgError

Processing pair ETN-SNA

Processing pair ETN-SO

Processing pair ETN-STLD

Processing pair ETN-SYK

Processing pair ETN-SNPS

Processing pair ETN-TMUS

Processing pair ETN-TPL

Processing pair ETN-TJX

Processing pair ETN-TSCO

Processing pair ETN-TT

Processing pair ETN-TDG

Processing pair ETN-TRV

Processing pair ETN-URI

Processing pair ETN-VRSK

Processing pair ETN-VRTX

Processing pair ETN-VMC

Processing pair ETN-WRB

Processing pair ETN-GWW

Processing pair ETN-WMT

Processing pair ETN-WM

Processing pair EBAY-ECL

Processing pair EBAY-EW

Processing pair EBAY-EA

Processing pair EBAY-EFX

Processing pair EBAY-EQIX

Processing pair EBAY-EXPD

Processing pair EBAY-EXR

Processing pair EBAY-FITB

Processing pair EBAY-GRMN

Processing pair EBAY-GEN

Processing pair EBAY-HOLX

Processing pair EBAY-HD

Processing pair EBAY-HON

Processing pair EBAY-IEX

Processing pair EBAY-IDXX

Processing pair EBAY-ITW

Processing pair EBAY-ICE

Processing pair EBAY-INTU

Processing pair EBAY-ISRG

Processing pair EBAY-IQV
ADF test for EBAY-IQV failed with LinAlgError

Processing pair EBAY-JBHT

Processing pair EBAY-JNJ

Processing pair EBAY-JCI

Processing pair EBAY-KDP

Processing pair EBAY-LHX

Processing pair EBAY-LH

Processing pair EBAY-LYV

Processing pair EBAY-LOW

Processing pair EBAY-MAS

Processing pair EBAY-MA

Processing pair EBAY-MKC

Processing pair EBAY-MTD

Processing pair EBAY-MCHP

Processing pair EBAY-MAA

Processing pair EBAY-MCO

Processing pair EBAY-MSCI

Processing pair EBAY-NDAQ

Processing pair EBAY-NFLX

Processing pair EBAY-NEE

Processing pair EBAY-NKE

Processing pair EBAY-NDSN

Processing pair EBAY-NSC

Processing pair EBAY-NXPI
ADF test for EBAY-NXPI failed with LinAlgError

Processing pair EBAY-PNC

Processing pair EBAY-POOL

Processing pair EBAY-PPG

Processing pair EBAY-PLD

Processing pair EBAY-DGX

Processing pair EBAY-RMD

Processing pair EBAY-RVTY

Processing pair EBAY-ROK

Processing pair EBAY-ROL

Processing pair EBAY-ROP

Processing pair EBAY-SPGI

Processing pair EBAY-CRM

Processing pair EBAY-SBAC

Processing pair EBAY-SHW

Processing pair EBAY-SWKS

Processing pair EBAY-SBUX

Processing pair EBAY-STE

Processing pair EBAY-SYK

Processing pair EBAY-TROW

Processing pair EBAY-TTWO

Processing pair EBAY-TGT

Processing pair EBAY-TEL

Processing pair EBAY-TDY

Processing pair EBAY-TER

Processing pair EBAY-TXN

Processing pair EBAY-TMO

Processing pair EBAY-TRMB

Processing pair EBAY-TYL

Processing pair EBAY-UDR

Processing pair EBAY-UNP

Processing pair EBAY-UPS

Processing pair EBAY-VLTO
ADF test for EBAY-VLTO failed with LinAlgError

Processing pair EBAY-VRSK

Processing pair EBAY-V

Processing pair EBAY-WAT

Processing pair EBAY-WEC

Processing pair EBAY-WST

Processing pair EBAY-WTW

Processing pair EBAY-XEL

Processing pair EBAY-XYL
ADF test for EBAY-XYL failed with LinAlgError

Processing pair EBAY-YUM

Processing pair EBAY-ZBRA

Processing pair EBAY-ZTS
ADF test for EBAY-ZTS failed with LinAlgError

Processing pair ECL-EA

Processing pair ECL-ETR

Processing pair ECL-EFX

Processing pair ECL-EQIX

Processing pair ECL-ESS

Processing pair ECL-EVRG

Processing pair ECL-ES

Processing pair ECL-FI

Processing pair ECL-GRMN

Processing pair ECL-HOLX

Processing pair ECL-HD

Processing pair ECL-HON

Processing pair ECL-IEX

Processing pair ECL-ITW

Processing pair ECL-ICE

Processing pair ECL-ISRG

Processing pair ECL-JKHY

Processing pair ECL-JNJ

Processing pair ECL-JPM

Processing pair ECL-KDP

Processing pair ECL-KMB

Processing pair ECL-LHX

Processing pair ECL-LDOS

Processing pair ECL-LII

Processing pair ECL-LYV

Processing pair ECL-LMT

Processing pair ECL-MAS

Processing pair ECL-MA

Processing pair ECL-MKC

Processing pair ECL-MCD

Processing pair ECL-MDT

Processing pair ECL-META
ADF test for ECL-META failed with LinAlgError

Processing pair ECL-MU

Processing pair ECL-MDLZ

Processing pair ECL-MNST

Processing pair ECL-MCO

Processing pair ECL-NDAQ

Processing pair ECL-NFLX

Processing pair ECL-NEE

Processing pair ECL-NI

Processing pair ECL-NDSN

Processing pair ECL-NSC

Processing pair ECL-NVR

Processing pair ECL-PKG

Processing pair ECL-PNW

Processing pair ECL-PNC

Processing pair ECL-PPG

Processing pair ECL-PG

Processing pair ECL-PEG

Processing pair ECL-PTC

Processing pair ECL-DGX

Processing pair ECL-O

Processing pair ECL-ROK

Processing pair ECL-ROL

Processing pair ECL-ROP

Processing pair ECL-ROST

Processing pair ECL-SPGI

Processing pair ECL-CRM

Processing pair ECL-SRE

Processing pair ECL-NOW
ADF test for ECL-NOW failed with LinAlgError

Processing pair ECL-SHW

Processing pair ECL-SBUX

Processing pair ECL-STE

Processing pair ECL-SYK

Processing pair ECL-SYY

Processing pair ECL-TMUS

Processing pair ECL-TTWO

Processing pair ECL-TEL

Processing pair ECL-TDY

Processing pair ECL-TXN

Processing pair ECL-TJX

Processing pair ECL-TYL

Processing pair ECL-UDR

Processing pair ECL-UNP

Processing pair ECL-VLTO
ADF test for ECL-VLTO failed with LinAlgError

Processing pair ECL-VRSN

Processing pair ECL-VRSK

Processing pair ECL-V

Processing pair ECL-VMC

Processing pair ECL-WMT

Processing pair ECL-WM

Processing pair ECL-WAT

Processing pair ECL-WEC

Processing pair ECL-WTW

Processing pair ECL-WDAY
ADF test for ECL-WDAY failed with LinAlgError

Processing pair ECL-XEL

Processing pair ECL-XYL
ADF test for ECL-XYL failed with LinAlgError

Processing pair ECL-YUM

Processing pair ECL-ZTS
ADF test for ECL-ZTS failed with LinAlgError

Processing pair EIX-EG

Processing pair EIX-GD

Processing pair EIX-HIG

Processing pair EIX-HII
ADF test for EIX-HII failed with LinAlgError

Processing pair EIX-K

Processing pair EIX-KMB

Processing pair EIX-LMT

Processing pair EIX-NI

Processing pair EIX-NOC

Processing pair EIX-OMC

Processing pair EIX-PKG

Processing pair EIX-PM

Processing pair EIX-PNW

Processing pair EIX-PPL

Processing pair EIX-PEG

Processing pair EIX-RTX

Processing pair EIX-REG

Processing pair EIX-SRE

Processing pair EIX-SNA

Processing pair EIX-TRV

Processing pair EIX-UHS

Processing pair EIX-VLTO
ADF test for EIX-VLTO failed with LinAlgError

Processing pair EIX-VMC

Processing pair EIX-WELL

Processing pair EW-ELV

Processing pair EW-ETR

Processing pair EW-EPAM
ADF test for EW-EPAM failed with LinAlgError

Processing pair EW-EFX

Processing pair EW-EQIX

Processing pair EW-EL

Processing pair EW-EVRG

Processing pair EW-ES

Processing pair EW-EXPD

Processing pair EW-EXR

Processing pair EW-FDS

Processing pair EW-HOLX

Processing pair EW-HD

Processing pair EW-HON

Processing pair EW-HUM

Processing pair EW-IEX

Processing pair EW-IDXX

Processing pair EW-ITW

Processing pair EW-PODD

Processing pair EW-ICE

Processing pair EW-INTU

Processing pair EW-IQV
ADF test for EW-IQV failed with LinAlgError

Processing pair EW-JBHT

Processing pair EW-JKHY

Processing pair EW-JNJ

Processing pair EW-KDP

Processing pair EW-KEYS
ADF test for EW-KEYS failed with LinAlgError

Processing pair EW-LHX

Processing pair EW-LH

Processing pair EW-LYV

Processing pair EW-LOW

Processing pair EW-LULU

Processing pair EW-MA

Processing pair EW-MKC

Processing pair EW-MCD

Processing pair EW-MDT

Processing pair EW-MTD

Processing pair EW-MCHP

Processing pair EW-MAA

Processing pair EW-MCO

Processing pair EW-MSCI

Processing pair EW-NDAQ

Processing pair EW-NEE

Processing pair EW-NKE

Processing pair EW-NDSN

Processing pair EW-NSC

Processing pair EW-PAYX

Processing pair EW-PAYC
ADF test for EW-PAYC failed with LinAlgError

Processing pair EW-PEP

Processing pair EW-PNC

Processing pair EW-POOL

Processing pair EW-PG

Processing pair EW-PLD

Processing pair EW-DGX

Processing pair EW-O

Processing pair EW-RMD

Processing pair EW-RVTY

Processing pair EW-ROK

Processing pair EW-ROP

Processing pair EW-SPGI

Processing pair EW-CRM

Processing pair EW-SBAC

Processing pair EW-SHW

Processing pair EW-SBUX

Processing pair EW-STE

Processing pair EW-SYY

Processing pair EW-TROW

Processing pair EW-TTWO

Processing pair EW-TGT

Processing pair EW-TEL

Processing pair EW-TDY

Processing pair EW-TER

Processing pair EW-TXN

Processing pair EW-TMO

Processing pair EW-TRMB

Processing pair EW-TYL

Processing pair EW-UDR

Processing pair EW-UNP

Processing pair EW-UPS

Processing pair EW-VRSN

Processing pair EW-VRSK

Processing pair EW-V

Processing pair EW-WAT

Processing pair EW-WEC

Processing pair EW-WST

Processing pair EW-WTW

Processing pair EW-XEL

Processing pair EW-YUM

Processing pair EW-ZBRA

Processing pair EW-ZTS
ADF test for EW-ZTS failed with LinAlgError

Processing pair EA-EFX

Processing pair EA-EQIX

Processing pair EA-EVRG

Processing pair EA-FDX

Processing pair EA-FI

Processing pair EA-GD

Processing pair EA-GL

Processing pair EA-HOLX

Processing pair EA-HD

Processing pair EA-HON

Processing pair EA-HUM

Processing pair EA-HBAN

Processing pair EA-HII
ADF test for EA-HII failed with LinAlgError

Processing pair EA-IEX

Processing pair EA-ITW

Processing pair EA-ICE

Processing pair EA-JKHY

Processing pair EA-JNJ

Processing pair EA-KDP

Processing pair EA-KMB

Processing pair EA-LHX

Processing pair EA-LH

Processing pair EA-LMT

Processing pair EA-MAS

Processing pair EA-MKC

Processing pair EA-MDT

Processing pair EA-MNST

Processing pair EA-NI

Processing pair EA-NDSN

Processing pair EA-NTRS

Processing pair EA-NOC

Processing pair EA-PKG

Processing pair EA-PNW

Processing pair EA-PNC

Processing pair EA-PEG

Processing pair EA-DGX

Processing pair EA-O

Processing pair EA-ROK

Processing pair EA-ROL

Processing pair EA-ROP

Processing pair EA-ROST

Processing pair EA-SPGI

Processing pair EA-SWKS

Processing pair EA-SBUX

Processing pair EA-SYK

Processing pair EA-SYY

Processing pair EA-TTWO

Processing pair EA-TEL

Processing pair EA-TXN

Processing pair EA-TYL

Processing pair EA-UNP

Processing pair EA-VRSN

Processing pair EA-V

Processing pair EA-WAT

Processing pair EA-WEC

Processing pair EA-WTW

Processing pair EA-XEL

Processing pair ELV-EMR

Processing pair ELV-ETR

Processing pair ELV-EFX

Processing pair ELV-EQIX

Processing pair ELV-EG

Processing pair ELV-EXC

Processing pair ELV-EXPD

Processing pair ELV-EXR

Processing pair ELV-FDS

Processing pair ELV-FAST

Processing pair ELV-FITB

Processing pair ELV-FI

Processing pair ELV-FTNT

Processing pair ELV-GRMN

Processing pair ELV-IT

Processing pair ELV-GEN

Processing pair ELV-GD

Processing pair ELV-GIS

Processing pair ELV-GPC

Processing pair ELV-GL

Processing pair ELV-GS

Processing pair ELV-HIG

Processing pair ELV-HCA
ADF test for ELV-HCA failed with LinAlgError

Processing pair ELV-HSY

Processing pair ELV-HLT
ADF test for ELV-HLT failed with LinAlgError

Processing pair ELV-HOLX

Processing pair ELV-HD

Processing pair ELV-HON

Processing pair ELV-HPQ

Processing pair ELV-HUM

Processing pair ELV-IEX

Processing pair ELV-IDXX

Processing pair ELV-ITW

Processing pair ELV-ICE

Processing pair ELV-IPG

Processing pair ELV-INTU

Processing pair ELV-ISRG

Processing pair ELV-IQV
ADF test for ELV-IQV failed with LinAlgError

Processing pair ELV-JBHT

Processing pair ELV-JKHY

Processing pair ELV-J

Processing pair ELV-JNJ

Processing pair ELV-JCI

Processing pair ELV-JPM

Processing pair ELV-KDP

Processing pair ELV-KEYS
ADF test for ELV-KEYS failed with LinAlgError

Processing pair ELV-KLAC

Processing pair ELV-KR

Processing pair ELV-LHX

Processing pair ELV-LH

Processing pair ELV-LRCX

Processing pair ELV-LDOS

Processing pair ELV-LIN

Processing pair ELV-LYV

Processing pair ELV-LMT

Processing pair ELV-LOW

Processing pair ELV-LULU

Processing pair ELV-MAR

Processing pair ELV-MMC

Processing pair ELV-MLM

Processing pair ELV-MAS

Processing pair ELV-MA

Processing pair ELV-MCD

Processing pair ELV-MRK

Processing pair ELV-MET

Processing pair ELV-MTD

Processing pair ELV-MCHP

Processing pair ELV-MU

Processing pair ELV-MSFT

Processing pair ELV-MAA

Processing pair ELV-MOH

Processing pair ELV-MDLZ

Processing pair ELV-MPWR

Processing pair ELV-MNST

Processing pair ELV-MCO

Processing pair ELV-MS

Processing pair ELV-MSI

Processing pair ELV-MSCI

Processing pair ELV-NDAQ

Processing pair ELV-NEE

Processing pair ELV-NDSN

Processing pair ELV-NSC

Processing pair ELV-NOC

Processing pair ELV-NUE

Processing pair ELV-NVR

Processing pair ELV-NXPI
ADF test for ELV-NXPI failed with LinAlgError

Processing pair ELV-ORLY

Processing pair ELV-ODFL

Processing pair ELV-ON

Processing pair ELV-PKG

Processing pair ELV-PAYX

Processing pair ELV-PEP

Processing pair ELV-PNC

Processing pair ELV-POOL

Processing pair ELV-PFG

Processing pair ELV-PG

Processing pair ELV-PGR

Processing pair ELV-PLD

Processing pair ELV-PEG

Processing pair ELV-PTC

Processing pair ELV-PSA

Processing pair ELV-DGX

Processing pair ELV-RJF

Processing pair ELV-RTX

Processing pair ELV-RF

Processing pair ELV-RSG

Processing pair ELV-RMD

Processing pair ELV-ROK

Processing pair ELV-ROL

Processing pair ELV-ROP

Processing pair ELV-ROST

Processing pair ELV-SPGI

Processing pair ELV-CRM

Processing pair ELV-STX

Processing pair ELV-SRE

Processing pair ELV-NOW
ADF test for ELV-NOW failed with LinAlgError

Processing pair ELV-SHW

Processing pair ELV-SNA

Processing pair ELV-SO

Processing pair ELV-SBUX

Processing pair ELV-STLD

Processing pair ELV-STE

Processing pair ELV-SYK

Processing pair ELV-SNPS

Processing pair ELV-SYY

Processing pair ELV-TMUS

Processing pair ELV-TEL

Processing pair ELV-TDY

Processing pair ELV-TER

Processing pair ELV-TXN

Processing pair ELV-TPL

Processing pair ELV-TXT

Processing pair ELV-TMO

Processing pair ELV-TJX

Processing pair ELV-TSCO

Processing pair ELV-TDG

Processing pair ELV-TRV

Processing pair ELV-TYL

Processing pair ELV-ULTA

Processing pair ELV-UNP

Processing pair ELV-UPS

Processing pair ELV-UNH

Processing pair ELV-VLO

Processing pair ELV-VRSK

Processing pair ELV-VRTX

Processing pair ELV-VICI
ADF test for ELV-VICI failed with LinAlgError

Processing pair ELV-V

Processing pair ELV-VMC

Processing pair ELV-WRB

Processing pair ELV-WMT

Processing pair ELV-WM

Processing pair ELV-WAT

Processing pair ELV-WEC

Processing pair ELV-WST

Processing pair ELV-WTW

Processing pair ELV-XEL

Processing pair ELV-XYL
ADF test for ELV-XYL failed with LinAlgError

Processing pair ELV-YUM

Processing pair ELV-ZTS
ADF test for ELV-ZTS failed with LinAlgError

Processing pair EMR-ETR

Processing pair EMR-EFX

Processing pair EMR-EQIX

Processing pair EMR-EG

Processing pair EMR-EXPD

Processing pair EMR-EXR

Processing pair EMR-FDS

Processing pair EMR-FAST

Processing pair EMR-FITB

Processing pair EMR-FI

Processing pair EMR-FTNT

Processing pair EMR-GRMN

Processing pair EMR-IT

Processing pair EMR-GEN

Processing pair EMR-GD

Processing pair EMR-GPC

Processing pair EMR-GS

Processing pair EMR-HIG

Processing pair EMR-HCA
ADF test for EMR-HCA failed with LinAlgError

Processing pair EMR-HLT
ADF test for EMR-HLT failed with LinAlgError

Processing pair EMR-HOLX

Processing pair EMR-HD

Processing pair EMR-HON

Processing pair EMR-HPQ

Processing pair EMR-HUBB

Processing pair EMR-IEX

Processing pair EMR-IDXX

Processing pair EMR-ITW

Processing pair EMR-IR
ADF test for EMR-IR failed with LinAlgError

Processing pair EMR-ICE

Processing pair EMR-IPG

Processing pair EMR-INTU

Processing pair EMR-ISRG

Processing pair EMR-IQV
ADF test for EMR-IQV failed with LinAlgError

Processing pair EMR-JBHT

Processing pair EMR-J

Processing pair EMR-JCI

Processing pair EMR-JPM

Processing pair EMR-KDP

Processing pair EMR-KKR
ADF test for EMR-KKR failed with LinAlgError

Processing pair EMR-KLAC

Processing pair EMR-LHX

Processing pair EMR-LH

Processing pair EMR-LRCX

Processing pair EMR-LDOS

Processing pair EMR-LEN

Processing pair EMR-LII

Processing pair EMR-LIN

Processing pair EMR-LYV

Processing pair EMR-LMT

Processing pair EMR-L

Processing pair EMR-LOW

Processing pair EMR-MAR

Processing pair EMR-MMC

Processing pair EMR-MLM

Processing pair EMR-MAS

Processing pair EMR-MA

Processing pair EMR-MCD

Processing pair EMR-MRK

Processing pair EMR-MET

Processing pair EMR-MTD

Processing pair EMR-MCHP

Processing pair EMR-MU

Processing pair EMR-MSFT

Processing pair EMR-MOH

Processing pair EMR-MDLZ

Processing pair EMR-MPWR

Processing pair EMR-MNST

Processing pair EMR-MCO

Processing pair EMR-MS

Processing pair EMR-MSI

Processing pair EMR-MSCI

Processing pair EMR-NDAQ

Processing pair EMR-NTAP

Processing pair EMR-NWS
ADF test for EMR-NWS failed with LinAlgError

Processing pair EMR-NEE

Processing pair EMR-NDSN

Processing pair EMR-NSC

Processing pair EMR-NOC

Processing pair EMR-NUE

Processing pair EMR-NVR

Processing pair EMR-NXPI
ADF test for EMR-NXPI failed with LinAlgError

Processing pair EMR-ORLY

Processing pair EMR-ODFL

Processing pair EMR-ON

Processing pair EMR-OKE

Processing pair EMR-ORCL

Processing pair EMR-OTIS
ADF test for EMR-OTIS failed with LinAlgError

Processing pair EMR-PCAR

Processing pair EMR-PKG

Processing pair EMR-PANW
ADF test for EMR-PANW failed with LinAlgError

Processing pair EMR-PH

Processing pair EMR-PAYX

Processing pair EMR-PNR

Processing pair EMR-PEP

Processing pair EMR-PNC

Processing pair EMR-POOL

Processing pair EMR-PFG

Processing pair EMR-PG

Processing pair EMR-PGR

Processing pair EMR-PLD

Processing pair EMR-PRU

Processing pair EMR-PEG

Processing pair EMR-PTC

Processing pair EMR-PSA

Processing pair EMR-PHM

Processing pair EMR-QCOM

Processing pair EMR-DGX

Processing pair EMR-RJF

Processing pair EMR-RTX

Processing pair EMR-RF

Processing pair EMR-RSG

Processing pair EMR-RMD

Processing pair EMR-ROK

Processing pair EMR-ROL

Processing pair EMR-ROP

Processing pair EMR-ROST

Processing pair EMR-SPGI

Processing pair EMR-CRM

Processing pair EMR-STX

Processing pair EMR-SRE

Processing pair EMR-NOW
ADF test for EMR-NOW failed with LinAlgError

Processing pair EMR-SHW

Processing pair EMR-SNA

Processing pair EMR-SO

Processing pair EMR-STLD

Processing pair EMR-STE

Processing pair EMR-SYK

Processing pair EMR-SNPS

Processing pair EMR-TMUS

Processing pair EMR-TEL

Processing pair EMR-TDY

Processing pair EMR-TER

Processing pair EMR-TXN

Processing pair EMR-TPL

Processing pair EMR-TXT

Processing pair EMR-TMO

Processing pair EMR-TJX

Processing pair EMR-TSCO

Processing pair EMR-TT

Processing pair EMR-TDG

Processing pair EMR-TRV

Processing pair EMR-TYL

Processing pair EMR-UNP

Processing pair EMR-URI

Processing pair EMR-UNH

Processing pair EMR-VRSK

Processing pair EMR-VRTX

Processing pair EMR-V

Processing pair EMR-VMC

Processing pair EMR-WRB

Processing pair EMR-GWW

Processing pair EMR-WMT

Processing pair EMR-WM

Processing pair EMR-WAT

Processing pair EMR-WST

Processing pair EMR-WTW

Processing pair EMR-XYL
ADF test for EMR-XYL failed with LinAlgError

Processing pair EMR-YUM

Processing pair ETR-EFX

Processing pair ETR-EQIX

Processing pair ETR-ERIE

Processing pair ETR-EG

Processing pair ETR-EVRG

Processing pair ETR-EXC

Processing pair ETR-EXPD

Processing pair ETR-EXR

Processing pair ETR-FDS

Processing pair ETR-FAST

Processing pair ETR-FI

Processing pair ETR-FTNT

Processing pair ETR-GRMN

Processing pair ETR-IT

Processing pair ETR-GEV
ADF test for ETR-GEV failed with LinAlgError

Processing pair ETR-GEN

Processing pair ETR-GD

Processing pair ETR-GL

Processing pair ETR-HIG

Processing pair ETR-HCA
ADF test for ETR-HCA failed with LinAlgError

Processing pair ETR-HSY

Processing pair ETR-HLT
ADF test for ETR-HLT failed with LinAlgError

Processing pair ETR-HOLX

Processing pair ETR-HD

Processing pair ETR-HON

Processing pair ETR-IEX

Processing pair ETR-IDXX

Processing pair ETR-ITW

Processing pair ETR-PODD

Processing pair ETR-ICE

Processing pair ETR-INTU

Processing pair ETR-ISRG

Processing pair ETR-IQV
ADF test for ETR-IQV failed with LinAlgError

Processing pair ETR-JBHT

Processing pair ETR-JKHY

Processing pair ETR-J

Processing pair ETR-JNJ

Processing pair ETR-JPM

Processing pair ETR-KDP

Processing pair ETR-LHX

Processing pair ETR-LH

Processing pair ETR-LDOS

Processing pair ETR-LII

Processing pair ETR-LIN

Processing pair ETR-LYV

Processing pair ETR-LMT

Processing pair ETR-LOW

Processing pair ETR-MAR

Processing pair ETR-MMC

Processing pair ETR-MLM

Processing pair ETR-MAS

Processing pair ETR-MA

Processing pair ETR-MKC

Processing pair ETR-MCD

Processing pair ETR-MRK

Processing pair ETR-MET

Processing pair ETR-MTD

Processing pair ETR-MCHP

Processing pair ETR-MSFT

Processing pair ETR-MAA

Processing pair ETR-MOH

Processing pair ETR-MDLZ

Processing pair ETR-MNST

Processing pair ETR-MCO

Processing pair ETR-MS

Processing pair ETR-MSI

Processing pair ETR-MSCI

Processing pair ETR-NDAQ

Processing pair ETR-NEE

Processing pair ETR-NI

Processing pair ETR-NDSN

Processing pair ETR-NSC

Processing pair ETR-NOC

Processing pair ETR-NVR

Processing pair ETR-NXPI
ADF test for ETR-NXPI failed with LinAlgError

Processing pair ETR-ORLY

Processing pair ETR-ODFL

Processing pair ETR-PKG

Processing pair ETR-PAYX

Processing pair ETR-PEP

Processing pair ETR-PNC

Processing pair ETR-POOL

Processing pair ETR-PG

Processing pair ETR-PGR

Processing pair ETR-PLD

Processing pair ETR-PEG

Processing pair ETR-PTC

Processing pair ETR-PSA

Processing pair ETR-DGX

Processing pair ETR-RJF

Processing pair ETR-RTX

Processing pair ETR-O

Processing pair ETR-RF

Processing pair ETR-RSG

Processing pair ETR-RMD

Processing pair ETR-ROK

Processing pair ETR-ROL

Processing pair ETR-ROP

Processing pair ETR-ROST

Processing pair ETR-SPGI

Processing pair ETR-CRM

Processing pair ETR-SRE

Processing pair ETR-NOW
ADF test for ETR-NOW failed with LinAlgError

Processing pair ETR-SHW

Processing pair ETR-SNA

Processing pair ETR-SO

Processing pair ETR-SBUX

Processing pair ETR-STE

Processing pair ETR-SYK

Processing pair ETR-SYY

Processing pair ETR-TMUS

Processing pair ETR-TEL

Processing pair ETR-TDY

Processing pair ETR-TER

Processing pair ETR-TXN

Processing pair ETR-TPL

Processing pair ETR-TMO

Processing pair ETR-TJX

Processing pair ETR-TSCO

Processing pair ETR-TT

Processing pair ETR-TDG

Processing pair ETR-TRV

Processing pair ETR-TYL

Processing pair ETR-UDR

Processing pair ETR-UNP

Processing pair ETR-UNH

Processing pair ETR-VRSN

Processing pair ETR-VRSK

Processing pair ETR-VRTX

Processing pair ETR-V

Processing pair ETR-VMC

Processing pair ETR-WRB

Processing pair ETR-WMT

Processing pair ETR-WM

Processing pair ETR-WAT

Processing pair ETR-WEC

Processing pair ETR-WELL

Processing pair ETR-WTW

Processing pair ETR-XEL

Processing pair ETR-XYL
ADF test for ETR-XYL failed with LinAlgError

Processing pair ETR-YUM

Processing pair ETR-ZTS
ADF test for ETR-ZTS failed with LinAlgError

Processing pair EOG-XOM

Processing pair EOG-VLO

Processing pair EPAM-EL
ADF test for EPAM-EL failed with LinAlgError

Processing pair EPAM-GNRC
ADF test for EPAM-GNRC failed with LinAlgError

Processing pair EPAM-IDXX
ADF test for EPAM-IDXX failed with LinAlgError

Processing pair EPAM-NKE
ADF test for EPAM-NKE failed with LinAlgError

Processing pair EPAM-PAYC
ADF test for EPAM-PAYC failed with LinAlgError

Processing pair EPAM-POOL
ADF test for EPAM-POOL failed with LinAlgError

Processing pair EPAM-RMD
ADF test for EPAM-RMD failed with LinAlgError

Processing pair EPAM-RVTY
ADF test for EPAM-RVTY failed with LinAlgError

Processing pair EPAM-SBAC
ADF test for EPAM-SBAC failed with LinAlgError

Processing pair EPAM-TROW
ADF test for EPAM-TROW failed with LinAlgError

Processing pair EPAM-TGT
ADF test for EPAM-TGT failed with LinAlgError

Processing pair EPAM-TRMB
ADF test for EPAM-TRMB failed with LinAlgError

Processing pair EPAM-ZBRA
ADF test for EPAM-ZBRA failed with LinAlgError

Processing pair EFX-EQIX

Processing pair EFX-EG

Processing pair EFX-EVRG

Processing pair EFX-EXPD

Processing pair EFX-EXR

Processing pair EFX-FDS

Processing pair EFX-FAST

Processing pair EFX-FITB

Processing pair EFX-FI

Processing pair EFX-FTNT

Processing pair EFX-GRMN

Processing pair EFX-IT

Processing pair EFX-GEN

Processing pair EFX-GD

Processing pair EFX-GPC

Processing pair EFX-GS

Processing pair EFX-HIG

Processing pair EFX-HCA
ADF test for EFX-HCA failed with LinAlgError

Processing pair EFX-HSY

Processing pair EFX-HLT
ADF test for EFX-HLT failed with LinAlgError

Processing pair EFX-HOLX

Processing pair EFX-HD

Processing pair EFX-HON

Processing pair EFX-IEX

Processing pair EFX-IDXX

Processing pair EFX-ITW

Processing pair EFX-ICE

Processing pair EFX-IPG

Processing pair EFX-INTU

Processing pair EFX-ISRG

Processing pair EFX-INVH
ADF test for EFX-INVH failed with LinAlgError

Processing pair EFX-IQV
ADF test for EFX-IQV failed with LinAlgError

Processing pair EFX-JBHT

Processing pair EFX-JKHY

Processing pair EFX-J

Processing pair EFX-JNJ

Processing pair EFX-JCI

Processing pair EFX-JPM

Processing pair EFX-KDP

Processing pair EFX-KMB

Processing pair EFX-KR

Processing pair EFX-LHX

Processing pair EFX-LH

Processing pair EFX-LRCX

Processing pair EFX-LDOS

Processing pair EFX-LEN

Processing pair EFX-LII

Processing pair EFX-LIN

Processing pair EFX-LYV

Processing pair EFX-LMT

Processing pair EFX-LOW

Processing pair EFX-MAR

Processing pair EFX-MMC

Processing pair EFX-MLM

Processing pair EFX-MAS

Processing pair EFX-MA

Processing pair EFX-MCD

Processing pair EFX-MRK

Processing pair EFX-MET

Processing pair EFX-MTD

Processing pair EFX-MGM

Processing pair EFX-MCHP

Processing pair EFX-MU

Processing pair EFX-MSFT

Processing pair EFX-MAA

Processing pair EFX-MOH

Processing pair EFX-MDLZ

Processing pair EFX-MPWR

Processing pair EFX-MNST

Processing pair EFX-MCO

Processing pair EFX-MS

Processing pair EFX-MSI

Processing pair EFX-MSCI

Processing pair EFX-NDAQ

Processing pair EFX-NEE

Processing pair EFX-NI

Processing pair EFX-NDSN

Processing pair EFX-NSC

Processing pair EFX-NOC

Processing pair EFX-NVR

Processing pair EFX-NXPI
ADF test for EFX-NXPI failed with LinAlgError

Processing pair EFX-ORLY

Processing pair EFX-ODFL

Processing pair EFX-PKG

Processing pair EFX-PAYX

Processing pair EFX-PNR

Processing pair EFX-PEP

Processing pair EFX-PM

Processing pair EFX-PNC

Processing pair EFX-POOL

Processing pair EFX-PPG

Processing pair EFX-PFG

Processing pair EFX-PG

Processing pair EFX-PLD

Processing pair EFX-PEG

Processing pair EFX-PTC

Processing pair EFX-PSA

Processing pair EFX-QCOM

Processing pair EFX-DGX

Processing pair EFX-RJF

Processing pair EFX-O

Processing pair EFX-RF

Processing pair EFX-RSG

Processing pair EFX-RMD

Processing pair EFX-RVTY

Processing pair EFX-ROK

Processing pair EFX-ROL

Processing pair EFX-ROP

Processing pair EFX-ROST

Processing pair EFX-SPGI

Processing pair EFX-CRM

Processing pair EFX-STX

Processing pair EFX-SRE

Processing pair EFX-NOW
ADF test for EFX-NOW failed with LinAlgError

Processing pair EFX-SHW

Processing pair EFX-SNA

Processing pair EFX-SO

Processing pair EFX-SBUX

Processing pair EFX-STE

Processing pair EFX-SYK

Processing pair EFX-SYY

Processing pair EFX-TMUS

Processing pair EFX-TEL

Processing pair EFX-TDY

Processing pair EFX-TER

Processing pair EFX-TXN

Processing pair EFX-TMO

Processing pair EFX-TJX

Processing pair EFX-TSCO

Processing pair EFX-TT

Processing pair EFX-TDG

Processing pair EFX-TRV

Processing pair EFX-TYL

Processing pair EFX-UDR

Processing pair EFX-ULTA

Processing pair EFX-UNP

Processing pair EFX-UPS

Processing pair EFX-UNH

Processing pair EFX-VRSK

Processing pair EFX-V

Processing pair EFX-VMC

Processing pair EFX-WRB

Processing pair EFX-WMT

Processing pair EFX-WM

Processing pair EFX-WAT

Processing pair EFX-WEC

Processing pair EFX-WELL

Processing pair EFX-WST

Processing pair EFX-WTW

Processing pair EFX-XEL

Processing pair EFX-XYL
ADF test for EFX-XYL failed with LinAlgError

Processing pair EFX-YUM

Processing pair EFX-ZTS
ADF test for EFX-ZTS failed with LinAlgError

Processing pair EQIX-EG

Processing pair EQIX-EVRG

Processing pair EQIX-ES

Processing pair EQIX-EXPD

Processing pair EQIX-EXR

Processing pair EQIX-FDS

Processing pair EQIX-FAST

Processing pair EQIX-FI

Processing pair EQIX-GRMN

Processing pair EQIX-GEN

Processing pair EQIX-GL

Processing pair EQIX-HCA
ADF test for EQIX-HCA failed with LinAlgError

Processing pair EQIX-HSY

Processing pair EQIX-HOLX

Processing pair EQIX-HD

Processing pair EQIX-HON

Processing pair EQIX-HUM

Processing pair EQIX-IEX

Processing pair EQIX-IDXX

Processing pair EQIX-ITW

Processing pair EQIX-PODD

Processing pair EQIX-ICE

Processing pair EQIX-IPG

Processing pair EQIX-INTU

Processing pair EQIX-ISRG

Processing pair EQIX-IQV
ADF test for EQIX-IQV failed with LinAlgError

Processing pair EQIX-JBHT

Processing pair EQIX-JKHY

Processing pair EQIX-J

Processing pair EQIX-JNJ

Processing pair EQIX-JCI

Processing pair EQIX-JPM

Processing pair EQIX-KDP

Processing pair EQIX-KEYS
ADF test for EQIX-KEYS failed with LinAlgError

Processing pair EQIX-KMB

Processing pair EQIX-LHX

Processing pair EQIX-LH

Processing pair EQIX-LRCX

Processing pair EQIX-LDOS

Processing pair EQIX-LII

Processing pair EQIX-LIN

Processing pair EQIX-LYV

Processing pair EQIX-LMT

Processing pair EQIX-LOW

Processing pair EQIX-LULU

Processing pair EQIX-MAR

Processing pair EQIX-MMC

Processing pair EQIX-MLM

Processing pair EQIX-MAS

Processing pair EQIX-MA

Processing pair EQIX-MKC

Processing pair EQIX-MCD

Processing pair EQIX-MRK

Processing pair EQIX-MTD

Processing pair EQIX-MCHP

Processing pair EQIX-MU

Processing pair EQIX-MSFT

Processing pair EQIX-MAA

Processing pair EQIX-MOH

Processing pair EQIX-MDLZ

Processing pair EQIX-MNST

Processing pair EQIX-MCO

Processing pair EQIX-MS

Processing pair EQIX-MSI

Processing pair EQIX-MSCI

Processing pair EQIX-NDAQ

Processing pair EQIX-NFLX

Processing pair EQIX-NEE

Processing pair EQIX-NKE

Processing pair EQIX-NI

Processing pair EQIX-NDSN

Processing pair EQIX-NSC

Processing pair EQIX-NOC

Processing pair EQIX-NVR

Processing pair EQIX-NXPI
ADF test for EQIX-NXPI failed with LinAlgError

Processing pair EQIX-ORLY

Processing pair EQIX-ODFL

Processing pair EQIX-PKG

Processing pair EQIX-PAYX

Processing pair EQIX-PEP

Processing pair EQIX-PNC

Processing pair EQIX-POOL

Processing pair EQIX-PG

Processing pair EQIX-PLD

Processing pair EQIX-PEG

Processing pair EQIX-PTC

Processing pair EQIX-PSA

Processing pair EQIX-DGX

Processing pair EQIX-RJF

Processing pair EQIX-O

Processing pair EQIX-RSG

Processing pair EQIX-RMD

Processing pair EQIX-RVTY

Processing pair EQIX-ROK

Processing pair EQIX-ROL

Processing pair EQIX-ROP

Processing pair EQIX-ROST

Processing pair EQIX-SPGI

Processing pair EQIX-CRM

Processing pair EQIX-SBAC

Processing pair EQIX-SRE

Processing pair EQIX-NOW
ADF test for EQIX-NOW failed with LinAlgError

Processing pair EQIX-SHW

Processing pair EQIX-SNA

Processing pair EQIX-SO

Processing pair EQIX-SBUX

Processing pair EQIX-STE

Processing pair EQIX-SYK

Processing pair EQIX-SYY

Processing pair EQIX-TMUS

Processing pair EQIX-TTWO

Processing pair EQIX-TEL

Processing pair EQIX-TDY

Processing pair EQIX-TER

Processing pair EQIX-TXN

Processing pair EQIX-TMO

Processing pair EQIX-TJX

Processing pair EQIX-TSCO

Processing pair EQIX-TDG

Processing pair EQIX-TRV

Processing pair EQIX-TYL

Processing pair EQIX-UDR

Processing pair EQIX-UNP

Processing pair EQIX-UPS

Processing pair EQIX-UNH

Processing pair EQIX-VRSN

Processing pair EQIX-VRSK

Processing pair EQIX-VRTX

Processing pair EQIX-V

Processing pair EQIX-VMC

Processing pair EQIX-WRB

Processing pair EQIX-WMT

Processing pair EQIX-WM

Processing pair EQIX-WAT

Processing pair EQIX-WEC

Processing pair EQIX-WST

Processing pair EQIX-WTW

Processing pair EQIX-WDAY
ADF test for EQIX-WDAY failed with LinAlgError

Processing pair EQIX-XEL

Processing pair EQIX-XYL
ADF test for EQIX-XYL failed with LinAlgError

Processing pair EQIX-YUM

Processing pair EQIX-ZTS
ADF test for EQIX-ZTS failed with LinAlgError

Processing pair EQR-ESS

Processing pair EQR-EVRG

Processing pair EQR-ES

Processing pair EQR-EXR

Processing pair EQR-HON

Processing pair EQR-HBAN

Processing pair EQR-LHX

Processing pair EQR-LYV

Processing pair EQR-MDT

Processing pair EQR-MAA

Processing pair EQR-NI

Processing pair EQR-NTRS

Processing pair EQR-PNC

Processing pair EQR-PSA

Processing pair EQR-O

Processing pair EQR-REG

Processing pair EQR-SRE

Processing pair EQR-SYY

Processing pair EQR-TSN

Processing pair EQR-USB

Processing pair EQR-UDR

Processing pair EQR-VLTO
ADF test for EQR-VLTO failed with LinAlgError

Processing pair EQR-WEC

Processing pair ERIE-FICO

Processing pair ERIE-FAST

Processing pair ERIE-FI

Processing pair ERIE-GRMN

Processing pair ERIE-IT

Processing pair ERIE-GDDY
ADF test for ERIE-GDDY failed with LinAlgError

Processing pair ERIE-HIG

Processing pair ERIE-HCA
ADF test for ERIE-HCA failed with LinAlgError

Processing pair ERIE-HLT
ADF test for ERIE-HLT failed with LinAlgError

Processing pair ERIE-HD

Processing pair ERIE-HUBB

Processing pair ERIE-ITW

Processing pair ERIE-IR
ADF test for ERIE-IR failed with LinAlgError

Processing pair ERIE-ICE

Processing pair ERIE-INTU

Processing pair ERIE-ISRG

Processing pair ERIE-IRM

Processing pair ERIE-JBL

Processing pair ERIE-JPM

Processing pair ERIE-KKR
ADF test for ERIE-KKR failed with LinAlgError

Processing pair ERIE-KLAC

Processing pair ERIE-LRCX

Processing pair ERIE-LDOS

Processing pair ERIE-LEN

Processing pair ERIE-LII

Processing pair ERIE-LLY

Processing pair ERIE-LIN

Processing pair ERIE-LOW

Processing pair ERIE-MAR

Processing pair ERIE-MMC

Processing pair ERIE-MLM

Processing pair ERIE-MAS

Processing pair ERIE-MA

Processing pair ERIE-MCD

Processing pair ERIE-MRK

Processing pair ERIE-MSFT

Processing pair ERIE-MPWR

Processing pair ERIE-MCO

Processing pair ERIE-MSI

Processing pair ERIE-NRG

Processing pair ERIE-NVR

Processing pair ERIE-ORLY

Processing pair ERIE-ODFL

Processing pair ERIE-ORCL

Processing pair ERIE-PCAR

Processing pair ERIE-PKG

Processing pair ERIE-PANW
ADF test for ERIE-PANW failed with LinAlgError

Processing pair ERIE-PH

Processing pair ERIE-PG

Processing pair ERIE-PGR

Processing pair ERIE-PEG

Processing pair ERIE-PTC

Processing pair ERIE-PHM

Processing pair ERIE-PWR

Processing pair ERIE-RSG

Processing pair ERIE-ROL

Processing pair ERIE-ROP

Processing pair ERIE-ROST

Processing pair ERIE-SPGI

Processing pair ERIE-NOW
ADF test for ERIE-NOW failed with LinAlgError

Processing pair ERIE-SHW

Processing pair ERIE-SO

Processing pair ERIE-SYK

Processing pair ERIE-SNPS

Processing pair ERIE-TMUS

Processing pair ERIE-TJX

Processing pair ERIE-TSCO

Processing pair ERIE-TT

Processing pair ERIE-TDG

Processing pair ERIE-TRV

Processing pair ERIE-URI

Processing pair ERIE-VRSK

Processing pair ERIE-VRTX

Processing pair ERIE-V

Processing pair ERIE-VMC

Processing pair ERIE-WRB

Processing pair ERIE-GWW

Processing pair ERIE-WMT

Processing pair ERIE-WM

Processing pair ERIE-WTW

Processing pair ESS-EVRG

Processing pair ESS-ES

Processing pair ESS-EXPE

Processing pair ESS-EXR

Processing pair ESS-HON

Processing pair ESS-HBAN

Processing pair ESS-ICE

Processing pair ESS-JKHY

Processing pair ESS-JNJ

Processing pair ESS-KEY

Processing pair ESS-KMB

Processing pair ESS-LHX

Processing pair ESS-LYV

Processing pair ESS-MDT

Processing pair ESS-MAA

Processing pair ESS-NI

Processing pair ESS-NTRS

Processing pair ESS-PNW

Processing pair ESS-PNC

Processing pair ESS-PPG

Processing pair ESS-PEG

Processing pair ESS-PSA

Processing pair ESS-O

Processing pair ESS-ROST

Processing pair ESS-SRE

Processing pair ESS-SBUX

Processing pair ESS-SYY

Processing pair ESS-TFC

Processing pair ESS-TSN

Processing pair ESS-USB

Processing pair ESS-UDR

Processing pair ESS-VLTO
ADF test for ESS-VLTO failed with LinAlgError

Processing pair ESS-WAT

Processing pair ESS-WEC

Processing pair ESS-XEL

Processing pair EL-ES

Processing pair EL-FMC

Processing pair EL-PODD

Processing pair EL-NKE

Processing pair EL-PAYC
ADF test for EL-PAYC failed with LinAlgError

Processing pair EL-RVTY

Processing pair EL-SBAC

Processing pair EL-TROW

Processing pair EL-ZBRA

Processing pair EG-EXPD

Processing pair EG-FDS

Processing pair EG-FAST

Processing pair EG-FI

Processing pair EG-IT

Processing pair EG-GD

Processing pair EG-GIS

Processing pair EG-GPC

Processing pair EG-GL

Processing pair EG-GS

Processing pair EG-HIG

Processing pair EG-HCA
ADF test for EG-HCA failed with LinAlgError

Processing pair EG-HSY

Processing pair EG-HLT
ADF test for EG-HLT failed with LinAlgError

Processing pair EG-HOLX

Processing pair EG-HD

Processing pair EG-HON

Processing pair EG-HUBB

Processing pair EG-IEX

Processing pair EG-ITW

Processing pair EG-ICE

Processing pair EG-IPG

Processing pair EG-INTU

Processing pair EG-JBHT

Processing pair EG-JNJ

Processing pair EG-JCI

Processing pair EG-JPM

Processing pair EG-KR

Processing pair EG-LDOS

Processing pair EG-LEN

Processing pair EG-LII

Processing pair EG-LIN

Processing pair EG-LMT

Processing pair EG-LOW

Processing pair EG-LYB
ADF test for EG-LYB failed with LinAlgError

Processing pair EG-MPC
ADF test for EG-MPC failed with LinAlgError

Processing pair EG-MAR

Processing pair EG-MMC

Processing pair EG-MLM

Processing pair EG-MAS

Processing pair EG-MA

Processing pair EG-MCD

Processing pair EG-MRK

Processing pair EG-MET

Processing pair EG-MGM

Processing pair EG-MCHP

Processing pair EG-MSFT

Processing pair EG-MOH

Processing pair EG-MDLZ

Processing pair EG-MNST

Processing pair EG-MCO

Processing pair EG-MS

Processing pair EG-MSI

Processing pair EG-NDAQ

Processing pair EG-NI

Processing pair EG-NDSN

Processing pair EG-NOC

Processing pair EG-NVR

Processing pair EG-NXPI
ADF test for EG-NXPI failed with LinAlgError

Processing pair EG-ORLY

Processing pair EG-ODFL

Processing pair EG-OMC

Processing pair EG-OKE

Processing pair EG-ORCL

Processing pair EG-PCAR

Processing pair EG-PKG

Processing pair EG-PANW
ADF test for EG-PANW failed with LinAlgError

Processing pair EG-PH

Processing pair EG-PAYX

Processing pair EG-PEP

Processing pair EG-PM

Processing pair EG-PSX
ADF test for EG-PSX failed with LinAlgError

Processing pair EG-PFG

Processing pair EG-PG

Processing pair EG-PGR

Processing pair EG-PRU

Processing pair EG-PEG

Processing pair EG-PTC

Processing pair EG-PSA

Processing pair EG-DGX

Processing pair EG-RJF

Processing pair EG-RTX

Processing pair EG-REGN

Processing pair EG-RF

Processing pair EG-RSG

Processing pair EG-ROK

Processing pair EG-ROL

Processing pair EG-ROP

Processing pair EG-ROST

Processing pair EG-SPGI

Processing pair EG-SRE

Processing pair EG-SHW

Processing pair EG-SNA

Processing pair EG-SO

Processing pair EG-STLD

Processing pair EG-STE

Processing pair EG-SYK

Processing pair EG-SNPS

Processing pair EG-SYY

Processing pair EG-TMUS

Processing pair EG-TEL

Processing pair EG-TXN

Processing pair EG-TXT

Processing pair EG-TJX

Processing pair EG-TSCO

Processing pair EG-TDG

Processing pair EG-TRV

Processing pair EG-ULTA

Processing pair EG-UNP

Processing pair EG-UNH

Processing pair EG-VLO

Processing pair EG-VRSK

Processing pair EG-VRTX

Processing pair EG-V

Processing pair EG-VMC

Processing pair EG-WRB

Processing pair EG-WMT

Processing pair EG-WM

Processing pair EG-WELL

Processing pair EG-WTW

Processing pair EG-XYL
ADF test for EG-XYL failed with LinAlgError

Processing pair EG-YUM

Processing pair EVRG-ES

Processing pair EVRG-EXR

Processing pair EVRG-FI

Processing pair EVRG-GL

Processing pair EVRG-HSIC

Processing pair EVRG-HOLX

Processing pair EVRG-HD

Processing pair EVRG-HON

Processing pair EVRG-HRL

Processing pair EVRG-HUM

Processing pair EVRG-HBAN

Processing pair EVRG-HII
ADF test for EVRG-HII failed with LinAlgError

Processing pair EVRG-IEX

Processing pair EVRG-ITW

Processing pair EVRG-ICE

Processing pair EVRG-JKHY

Processing pair EVRG-JNJ

Processing pair EVRG-KDP

Processing pair EVRG-KMB

Processing pair EVRG-LHX

Processing pair EVRG-LH

Processing pair EVRG-LYV

Processing pair EVRG-LMT

Processing pair EVRG-MAS

Processing pair EVRG-MKC

Processing pair EVRG-MCD

Processing pair EVRG-MDT

Processing pair EVRG-MTD

Processing pair EVRG-MAA

Processing pair EVRG-MDLZ

Processing pair EVRG-MNST

Processing pair EVRG-NDAQ

Processing pair EVRG-NEE

Processing pair EVRG-NI

Processing pair EVRG-NDSN

Processing pair EVRG-NSC

Processing pair EVRG-NTRS

Processing pair EVRG-NOC

Processing pair EVRG-PAYX

Processing pair EVRG-PEP

Processing pair EVRG-PFE

Processing pair EVRG-PNW

Processing pair EVRG-PNC

Processing pair EVRG-PPL

Processing pair EVRG-PLD

Processing pair EVRG-PEG

Processing pair EVRG-PSA

Processing pair EVRG-DGX

Processing pair EVRG-O

Processing pair EVRG-RVTY

Processing pair EVRG-ROP

Processing pair EVRG-ROST

Processing pair EVRG-SPGI

Processing pair EVRG-SBAC

Processing pair EVRG-SRE

Processing pair EVRG-SBUX

Processing pair EVRG-STE

Processing pair EVRG-SYK

Processing pair EVRG-SYY

Processing pair EVRG-TEL

Processing pair EVRG-TDY

Processing pair EVRG-TXN

Processing pair EVRG-TYL

Processing pair EVRG-TSN

Processing pair EVRG-UDR

Processing pair EVRG-ULTA

Processing pair EVRG-UNP

Processing pair EVRG-VRSN

Processing pair EVRG-V

Processing pair EVRG-WAT

Processing pair EVRG-WEC

Processing pair EVRG-WTW

Processing pair EVRG-XEL

Processing pair EVRG-YUM

Processing pair ES-FMC

Processing pair ES-GPN

Processing pair ES-HOLX

Processing pair ES-HON

Processing pair ES-HRL

Processing pair ES-HUM

Processing pair ES-IEX

Processing pair ES-PODD

Processing pair ES-JKHY

Processing pair ES-JNJ

Processing pair ES-KDP

Processing pair ES-KMB

Processing pair ES-LHX

Processing pair ES-MKTX

Processing pair ES-MKC

Processing pair ES-MDT

Processing pair ES-MTD

Processing pair ES-MAA

Processing pair ES-NEE

Processing pair ES-NKE

Processing pair ES-NSC

Processing pair ES-PAYC
ADF test for ES-PAYC failed with LinAlgError

Processing pair ES-PFE

Processing pair ES-O

Processing pair ES-RMD

Processing pair ES-RVTY

Processing pair ES-SBAC

Processing pair ES-SRE

Processing pair ES-SBUX

Processing pair ES-STE

Processing pair ES-SYY

Processing pair ES-TTWO

Processing pair ES-TDY

Processing pair ES-TFX

Processing pair ES-TSN

Processing pair ES-UDR

Processing pair ES-UNP

Processing pair ES-VRSN

Processing pair ES-VZ

Processing pair ES-WEC

Processing pair ES-XEL

Processing pair EXC-EXPD

Processing pair EXC-EXR

Processing pair EXC-FDS

Processing pair EXC-FTNT

Processing pair EXC-HCA
ADF test for EXC-HCA failed with LinAlgError

Processing pair EXC-HSY

Processing pair EXC-HD

Processing pair EXC-HPQ

Processing pair EXC-IEX

Processing pair EXC-ITW

Processing pair EXC-INTU

Processing pair EXC-IQV
ADF test for EXC-IQV failed with LinAlgError

Processing pair EXC-JBHT

Processing pair EXC-J

Processing pair EXC-KDP

Processing pair EXC-LHX

Processing pair EXC-LIN

Processing pair EXC-LYV

Processing pair EXC-LOW

Processing pair EXC-MMC

Processing pair EXC-MA

Processing pair EXC-MCD

Processing pair EXC-MTD

Processing pair EXC-MCHP

Processing pair EXC-MSFT

Processing pair EXC-MAA

Processing pair EXC-MOH

Processing pair EXC-MS

Processing pair EXC-MSI

Processing pair EXC-MSCI

Processing pair EXC-NDAQ

Processing pair EXC-NEE

Processing pair EXC-NDSN

Processing pair EXC-NSC

Processing pair EXC-NOC

Processing pair EXC-ORLY

Processing pair EXC-ODFL

Processing pair EXC-ON

Processing pair EXC-PAYX

Processing pair EXC-PEP

Processing pair EXC-PG

Processing pair EXC-PLD

Processing pair EXC-PEG

Processing pair EXC-PSA

Processing pair EXC-DGX

Processing pair EXC-RJF

Processing pair EXC-RSG

Processing pair EXC-ROL

Processing pair EXC-ROP

Processing pair EXC-SPGI

Processing pair EXC-SO

Processing pair EXC-STE

Processing pair EXC-SYK

Processing pair EXC-SYY

Processing pair EXC-TDY

Processing pair EXC-TXN

Processing pair EXC-TMO

Processing pair EXC-UNP

Processing pair EXC-UNH

Processing pair EXC-WRB

Processing pair EXC-WM

Processing pair EXC-WAT

Processing pair EXC-YUM

Processing pair EXPE-USB

Processing pair EXPD-EXR

Processing pair EXPD-FDS

Processing pair EXPD-FAST

Processing pair EXPD-FITB

Processing pair EXPD-FI

Processing pair EXPD-FTNT

Processing pair EXPD-GRMN

Processing pair EXPD-IT

Processing pair EXPD-GEN

Processing pair EXPD-GPC

Processing pair EXPD-GS

Processing pair EXPD-HCA
ADF test for EXPD-HCA failed with LinAlgError

Processing pair EXPD-HSY

Processing pair EXPD-HLT
ADF test for EXPD-HLT failed with LinAlgError

Processing pair EXPD-HOLX

Processing pair EXPD-HD

Processing pair EXPD-HON

Processing pair EXPD-HPQ

Processing pair EXPD-HUM

Processing pair EXPD-IEX

Processing pair EXPD-IDXX

Processing pair EXPD-ITW

Processing pair EXPD-PODD

Processing pair EXPD-ICE

Processing pair EXPD-IPG

Processing pair EXPD-INTU

Processing pair EXPD-ISRG

Processing pair EXPD-INVH
ADF test for EXPD-INVH failed with LinAlgError

Processing pair EXPD-IQV
ADF test for EXPD-IQV failed with LinAlgError

Processing pair EXPD-JBHT

Processing pair EXPD-JKHY

Processing pair EXPD-J

Processing pair EXPD-JNJ

Processing pair EXPD-JCI

Processing pair EXPD-JPM

Processing pair EXPD-KDP

Processing pair EXPD-KEYS
ADF test for EXPD-KEYS failed with LinAlgError

Processing pair EXPD-KLAC

Processing pair EXPD-LHX

Processing pair EXPD-LH

Processing pair EXPD-LRCX

Processing pair EXPD-LDOS

Processing pair EXPD-LEN

Processing pair EXPD-LII

Processing pair EXPD-LIN

Processing pair EXPD-LYV

Processing pair EXPD-LMT

Processing pair EXPD-LOW

Processing pair EXPD-LULU

Processing pair EXPD-MAR

Processing pair EXPD-MMC

Processing pair EXPD-MLM

Processing pair EXPD-MAS

Processing pair EXPD-MA

Processing pair EXPD-MCD

Processing pair EXPD-MRK

Processing pair EXPD-MET

Processing pair EXPD-MTD

Processing pair EXPD-MCHP

Processing pair EXPD-MU

Processing pair EXPD-MSFT

Processing pair EXPD-MAA

Processing pair EXPD-MOH

Processing pair EXPD-MDLZ

Processing pair EXPD-MPWR

Processing pair EXPD-MNST

Processing pair EXPD-MCO

Processing pair EXPD-MS

Processing pair EXPD-MSI

Processing pair EXPD-MSCI

Processing pair EXPD-NDAQ

Processing pair EXPD-NFLX

Processing pair EXPD-NEE

Processing pair EXPD-NDSN

Processing pair EXPD-NSC

Processing pair EXPD-NOC

Processing pair EXPD-NVR

Processing pair EXPD-NXPI
ADF test for EXPD-NXPI failed with LinAlgError

Processing pair EXPD-ORLY

Processing pair EXPD-ODFL

Processing pair EXPD-ON

Processing pair EXPD-ORCL

Processing pair EXPD-OTIS
ADF test for EXPD-OTIS failed with LinAlgError

Processing pair EXPD-PKG

Processing pair EXPD-PH

Processing pair EXPD-PAYX

Processing pair EXPD-PEP

Processing pair EXPD-PNC

Processing pair EXPD-POOL

Processing pair EXPD-PG

Processing pair EXPD-PGR

Processing pair EXPD-PLD

Processing pair EXPD-PEG

Processing pair EXPD-PTC

Processing pair EXPD-PSA

Processing pair EXPD-QCOM

Processing pair EXPD-DGX

Processing pair EXPD-RJF

Processing pair EXPD-RF

Processing pair EXPD-RSG

Processing pair EXPD-RMD

Processing pair EXPD-RVTY

Processing pair EXPD-ROK

Processing pair EXPD-ROL

Processing pair EXPD-ROP

Processing pair EXPD-ROST

Processing pair EXPD-SPGI

Processing pair EXPD-CRM

Processing pair EXPD-STX

Processing pair EXPD-NOW
ADF test for EXPD-NOW failed with LinAlgError

Processing pair EXPD-SHW

Processing pair EXPD-SNA

Processing pair EXPD-SO

Processing pair EXPD-SBUX

Processing pair EXPD-STE

Processing pair EXPD-SYK

Processing pair EXPD-SNPS

Processing pair EXPD-SYY

Processing pair EXPD-TMUS

Processing pair EXPD-TGT

Processing pair EXPD-TEL

Processing pair EXPD-TDY

Processing pair EXPD-TER

Processing pair EXPD-TXN

Processing pair EXPD-TMO

Processing pair EXPD-TJX

Processing pair EXPD-TSCO

Processing pair EXPD-TT

Processing pair EXPD-TDG

Processing pair EXPD-TRV

Processing pair EXPD-TYL

Processing pair EXPD-UNP

Processing pair EXPD-UPS

Processing pair EXPD-UNH

Processing pair EXPD-VRSK

Processing pair EXPD-VICI
ADF test for EXPD-VICI failed with LinAlgError

Processing pair EXPD-V

Processing pair EXPD-VMC

Processing pair EXPD-WRB

Processing pair EXPD-WMT

Processing pair EXPD-WM

Processing pair EXPD-WAT

Processing pair EXPD-WEC

Processing pair EXPD-WST

Processing pair EXPD-WTW

Processing pair EXPD-WDAY
ADF test for EXPD-WDAY failed with LinAlgError

Processing pair EXPD-XEL

Processing pair EXPD-XYL
ADF test for EXPD-XYL failed with LinAlgError

Processing pair EXPD-YUM

Processing pair EXPD-ZBRA

Processing pair EXPD-ZTS
ADF test for EXPD-ZTS failed with LinAlgError

Processing pair EXR-FDS

Processing pair EXR-FAST

Processing pair EXR-FITB

Processing pair EXR-FI

Processing pair EXR-FTNT

Processing pair EXR-GRMN

Processing pair EXR-IT

Processing pair EXR-GEN

Processing pair EXR-GIS

Processing pair EXR-GPC

Processing pair EXR-GS

Processing pair EXR-HCA
ADF test for EXR-HCA failed with LinAlgError

Processing pair EXR-HSY

Processing pair EXR-HOLX

Processing pair EXR-HD

Processing pair EXR-HON

Processing pair EXR-HPQ

Processing pair EXR-HUM

Processing pair EXR-IEX

Processing pair EXR-IDXX

Processing pair EXR-ITW

Processing pair EXR-PODD

Processing pair EXR-ICE

Processing pair EXR-IPG

Processing pair EXR-INTU

Processing pair EXR-ISRG

Processing pair EXR-INVH
ADF test for EXR-INVH failed with LinAlgError

Processing pair EXR-IQV
ADF test for EXR-IQV failed with LinAlgError

Processing pair EXR-JBHT

Processing pair EXR-JKHY

Processing pair EXR-J

Processing pair EXR-JNJ

Processing pair EXR-JCI

Processing pair EXR-JPM

Processing pair EXR-KDP

Processing pair EXR-KEYS
ADF test for EXR-KEYS failed with LinAlgError

Processing pair EXR-KR

Processing pair EXR-LHX

Processing pair EXR-LH

Processing pair EXR-LIN

Processing pair EXR-LYV

Processing pair EXR-LMT

Processing pair EXR-LOW

Processing pair EXR-MMC

Processing pair EXR-MLM

Processing pair EXR-MAS

Processing pair EXR-MA

Processing pair EXR-MKC

Processing pair EXR-MCD

Processing pair EXR-MET

Processing pair EXR-MTD

Processing pair EXR-MCHP

Processing pair EXR-MSFT

Processing pair EXR-MAA

Processing pair EXR-MOH

Processing pair EXR-MDLZ

Processing pair EXR-MNST

Processing pair EXR-MCO

Processing pair EXR-MS

Processing pair EXR-MSI

Processing pair EXR-MSCI

Processing pair EXR-NDAQ

Processing pair EXR-NEE

Processing pair EXR-NKE

Processing pair EXR-NI

Processing pair EXR-NDSN

Processing pair EXR-NSC

Processing pair EXR-NOC

Processing pair EXR-NVR

Processing pair EXR-NXPI
ADF test for EXR-NXPI failed with LinAlgError

Processing pair EXR-ORLY

Processing pair EXR-ODFL

Processing pair EXR-PKG

Processing pair EXR-PAYX

Processing pair EXR-PEP

Processing pair EXR-PFE

Processing pair EXR-PNC

Processing pair EXR-POOL

Processing pair EXR-PFG

Processing pair EXR-PG

Processing pair EXR-PLD

Processing pair EXR-PEG

Processing pair EXR-PTC

Processing pair EXR-PSA

Processing pair EXR-DGX

Processing pair EXR-RJF

Processing pair EXR-RTX

Processing pair EXR-O

Processing pair EXR-RF

Processing pair EXR-RSG

Processing pair EXR-RMD

Processing pair EXR-RVTY

Processing pair EXR-ROK

Processing pair EXR-ROL

Processing pair EXR-ROP

Processing pair EXR-SPGI

Processing pair EXR-CRM

Processing pair EXR-SBAC

Processing pair EXR-STX

Processing pair EXR-SRE

Processing pair EXR-SHW

Processing pair EXR-SNA

Processing pair EXR-SO

Processing pair EXR-SBUX

Processing pair EXR-STE

Processing pair EXR-SYK

Processing pair EXR-SYY

Processing pair EXR-TMUS

Processing pair EXR-TGT

Processing pair EXR-TEL

Processing pair EXR-TDY

Processing pair EXR-TER

Processing pair EXR-TXN

Processing pair EXR-TMO

Processing pair EXR-TJX

Processing pair EXR-TSCO

Processing pair EXR-TRV

Processing pair EXR-TYL

Processing pair EXR-UDR

Processing pair EXR-ULTA

Processing pair EXR-UNP

Processing pair EXR-UPS

Processing pair EXR-UNH

Processing pair EXR-VRSK

Processing pair EXR-V

Processing pair EXR-VMC

Processing pair EXR-WRB

Processing pair EXR-WM

Processing pair EXR-WAT

Processing pair EXR-WEC

Processing pair EXR-WST

Processing pair EXR-WTW

Processing pair EXR-XEL

Processing pair EXR-XYL
ADF test for EXR-XYL failed with LinAlgError

Processing pair EXR-YUM

Processing pair EXR-ZTS
ADF test for EXR-ZTS failed with LinAlgError

Processing pair XOM-HES

Processing pair XOM-MPC
ADF test for XOM-MPC failed with LinAlgError

Processing pair XOM-MCK

Processing pair FFIV-GEV
ADF test for FFIV-GEV failed with LinAlgError

Processing pair FDS-FAST

Processing pair FDS-FI

Processing pair FDS-FTNT

Processing pair FDS-GRMN

Processing pair FDS-IT

Processing pair FDS-GEN

Processing pair FDS-GIS

Processing pair FDS-GPC

Processing pair FDS-GL

Processing pair FDS-GS

Processing pair FDS-HIG

Processing pair FDS-HCA
ADF test for FDS-HCA failed with LinAlgError

Processing pair FDS-HSY

Processing pair FDS-HLT
ADF test for FDS-HLT failed with LinAlgError

Processing pair FDS-HOLX

Processing pair FDS-HD

Processing pair FDS-HON

Processing pair FDS-HPQ

Processing pair FDS-HUM

Processing pair FDS-IEX

Processing pair FDS-IDXX

Processing pair FDS-ITW

Processing pair FDS-PODD

Processing pair FDS-ICE

Processing pair FDS-IPG

Processing pair FDS-INTU

Processing pair FDS-ISRG

Processing pair FDS-INVH
ADF test for FDS-INVH failed with LinAlgError

Processing pair FDS-IQV
ADF test for FDS-IQV failed with LinAlgError

Processing pair FDS-JBHT

Processing pair FDS-JKHY

Processing pair FDS-J

Processing pair FDS-JNJ

Processing pair FDS-JCI

Processing pair FDS-JPM

Processing pair FDS-KDP

Processing pair FDS-KEYS
ADF test for FDS-KEYS failed with LinAlgError

Processing pair FDS-KR

Processing pair FDS-LHX

Processing pair FDS-LH

Processing pair FDS-LRCX

Processing pair FDS-LDOS

Processing pair FDS-LII

Processing pair FDS-LIN

Processing pair FDS-LYV

Processing pair FDS-LMT

Processing pair FDS-LOW

Processing pair FDS-LULU

Processing pair FDS-MAR

Processing pair FDS-MMC

Processing pair FDS-MLM

Processing pair FDS-MAS

Processing pair FDS-MA

Processing pair FDS-MKC

Processing pair FDS-MCD

Processing pair FDS-MRK

Processing pair FDS-MET

Processing pair FDS-MTD

Processing pair FDS-MCHP

Processing pair FDS-MSFT

Processing pair FDS-MAA

Processing pair FDS-MOH

Processing pair FDS-MDLZ

Processing pair FDS-MPWR

Processing pair FDS-MNST

Processing pair FDS-MCO

Processing pair FDS-MS

Processing pair FDS-MSI

Processing pair FDS-MSCI

Processing pair FDS-NDAQ

Processing pair FDS-NEE

Processing pair FDS-NDSN

Processing pair FDS-NSC

Processing pair FDS-NOC

Processing pair FDS-NVR

Processing pair FDS-NXPI
ADF test for FDS-NXPI failed with LinAlgError

Processing pair FDS-ORLY

Processing pair FDS-ODFL

Processing pair FDS-ON

Processing pair FDS-PKG

Processing pair FDS-PAYX

Processing pair FDS-PEP

Processing pair FDS-PNC

Processing pair FDS-POOL

Processing pair FDS-PFG

Processing pair FDS-PG

Processing pair FDS-PGR

Processing pair FDS-PLD

Processing pair FDS-PEG

Processing pair FDS-PTC

Processing pair FDS-PSA

Processing pair FDS-QCOM

Processing pair FDS-DGX

Processing pair FDS-RJF

Processing pair FDS-RF

Processing pair FDS-RSG

Processing pair FDS-RMD

Processing pair FDS-RVTY

Processing pair FDS-ROK

Processing pair FDS-ROL

Processing pair FDS-ROP

Processing pair FDS-ROST

Processing pair FDS-SPGI

Processing pair FDS-CRM

Processing pair FDS-STX

Processing pair FDS-SRE

Processing pair FDS-NOW
ADF test for FDS-NOW failed with LinAlgError

Processing pair FDS-SHW

Processing pair FDS-SNA

Processing pair FDS-SO

Processing pair FDS-SBUX

Processing pair FDS-STE

Processing pair FDS-SYK

Processing pair FDS-SNPS

Processing pair FDS-SYY

Processing pair FDS-TMUS

Processing pair FDS-TEL

Processing pair FDS-TDY

Processing pair FDS-TER

Processing pair FDS-TXN

Processing pair FDS-TMO

Processing pair FDS-TJX

Processing pair FDS-TSCO

Processing pair FDS-TDG

Processing pair FDS-TRV

Processing pair FDS-TYL

Processing pair FDS-ULTA

Processing pair FDS-UNP

Processing pair FDS-UPS

Processing pair FDS-UNH

Processing pair FDS-VRSN

Processing pair FDS-VRSK

Processing pair FDS-VRTX

Processing pair FDS-VICI
ADF test for FDS-VICI failed with LinAlgError

Processing pair FDS-V

Processing pair FDS-VMC

Processing pair FDS-WRB

Processing pair FDS-WMT

Processing pair FDS-WM

Processing pair FDS-WAT

Processing pair FDS-WEC

Processing pair FDS-WST

Processing pair FDS-WTW

Processing pair FDS-XEL

Processing pair FDS-XYL
ADF test for FDS-XYL failed with LinAlgError

Processing pair FDS-YUM

Processing pair FDS-ZTS
ADF test for FDS-ZTS failed with LinAlgError

Processing pair FICO-FAST

Processing pair FICO-IT

Processing pair FICO-GEV
ADF test for FICO-GEV failed with LinAlgError

Processing pair FICO-GDDY
ADF test for FICO-GDDY failed with LinAlgError

Processing pair FICO-HIG

Processing pair FICO-HCA
ADF test for FICO-HCA failed with LinAlgError

Processing pair FICO-HLT
ADF test for FICO-HLT failed with LinAlgError

Processing pair FICO-HWM
ADF test for FICO-HWM failed with LinAlgError

Processing pair FICO-HUBB

Processing pair FICO-IR
ADF test for FICO-IR failed with LinAlgError

Processing pair FICO-ISRG

Processing pair FICO-IRM

Processing pair FICO-JBL

Processing pair FICO-JPM

Processing pair FICO-KKR
ADF test for FICO-KKR failed with LinAlgError

Processing pair FICO-KLAC

Processing pair FICO-LRCX

Processing pair FICO-LEN

Processing pair FICO-LII

Processing pair FICO-LLY

Processing pair FICO-LIN

Processing pair FICO-MLM

Processing pair FICO-MSFT

Processing pair FICO-MPWR

Processing pair FICO-MSI

Processing pair FICO-NRG

Processing pair FICO-NVDA

Processing pair FICO-NVR

Processing pair FICO-ORLY

Processing pair FICO-ORCL

Processing pair FICO-PCAR

Processing pair FICO-PANW
ADF test for FICO-PANW failed with LinAlgError

Processing pair FICO-PH

Processing pair FICO-PGR

Processing pair FICO-PHM

Processing pair FICO-PWR

Processing pair FICO-RSG

Processing pair FICO-STLD

Processing pair FICO-SNPS

Processing pair FICO-TJX

Processing pair FICO-TT

Processing pair FICO-TDG

Processing pair FICO-URI

Processing pair FICO-VRTX

Processing pair FICO-VST
ADF test for FICO-VST failed with LinAlgError

Processing pair FICO-WRB

Processing pair FICO-GWW

Processing pair FICO-WMT

Processing pair FAST-FI

Processing pair FAST-FTNT

Processing pair FAST-GRMN

Processing pair FAST-IT

Processing pair FAST-GEN

Processing pair FAST-GS

Processing pair FAST-HIG

Processing pair FAST-HCA
ADF test for FAST-HCA failed with LinAlgError

Processing pair FAST-HSY

Processing pair FAST-HLT
ADF test for FAST-HLT failed with LinAlgError

Processing pair FAST-HOLX

Processing pair FAST-HD

Processing pair FAST-HON

Processing pair FAST-HUBB

Processing pair FAST-IEX

Processing pair FAST-IDXX

Processing pair FAST-ITW

Processing pair FAST-IR
ADF test for FAST-IR failed with LinAlgError

Processing pair FAST-ICE

Processing pair FAST-INTU

Processing pair FAST-ISRG

Processing pair FAST-IQV
ADF test for FAST-IQV failed with LinAlgError

Processing pair FAST-JBHT

Processing pair FAST-JBL

Processing pair FAST-J

Processing pair FAST-JCI

Processing pair FAST-JPM

Processing pair FAST-KDP

Processing pair FAST-KEYS
ADF test for FAST-KEYS failed with LinAlgError

Processing pair FAST-KKR
ADF test for FAST-KKR failed with LinAlgError

Processing pair FAST-KLAC

Processing pair FAST-LH

Processing pair FAST-LRCX

Processing pair FAST-LDOS

Processing pair FAST-LEN

Processing pair FAST-LII

Processing pair FAST-LIN

Processing pair FAST-LYV

Processing pair FAST-LMT

Processing pair FAST-LOW

Processing pair FAST-LULU

Processing pair FAST-MAR

Processing pair FAST-MMC

Processing pair FAST-MLM

Processing pair FAST-MAS

Processing pair FAST-MA

Processing pair FAST-MCD

Processing pair FAST-MRK

Processing pair FAST-MET

Processing pair FAST-MTD

Processing pair FAST-MCHP

Processing pair FAST-MU

Processing pair FAST-MSFT

Processing pair FAST-MOH

Processing pair FAST-MDLZ

Processing pair FAST-MPWR

Processing pair FAST-MNST

Processing pair FAST-MCO

Processing pair FAST-MS

Processing pair FAST-MSI

Processing pair FAST-MSCI

Processing pair FAST-NDAQ

Processing pair FAST-NEE

Processing pair FAST-NDSN

Processing pair FAST-NSC

Processing pair FAST-NUE

Processing pair FAST-NVR

Processing pair FAST-NXPI
ADF test for FAST-NXPI failed with LinAlgError

Processing pair FAST-ORLY

Processing pair FAST-ODFL

Processing pair FAST-ON

Processing pair FAST-ORCL

Processing pair FAST-OTIS
ADF test for FAST-OTIS failed with LinAlgError

Processing pair FAST-PCAR

Processing pair FAST-PKG

Processing pair FAST-PANW
ADF test for FAST-PANW failed with LinAlgError

Processing pair FAST-PH

Processing pair FAST-PAYX

Processing pair FAST-PNR

Processing pair FAST-PEP

Processing pair FAST-POOL

Processing pair FAST-PG

Processing pair FAST-PGR

Processing pair FAST-PLD

Processing pair FAST-PEG

Processing pair FAST-PTC

Processing pair FAST-PSA

Processing pair FAST-PHM

Processing pair FAST-PWR

Processing pair FAST-QCOM

Processing pair FAST-DGX

Processing pair FAST-RJF

Processing pair FAST-RSG

Processing pair FAST-RMD

Processing pair FAST-ROK

Processing pair FAST-ROL

Processing pair FAST-ROP

Processing pair FAST-SPGI

Processing pair FAST-CRM

Processing pair FAST-STX

Processing pair FAST-NOW
ADF test for FAST-NOW failed with LinAlgError

Processing pair FAST-SHW

Processing pair FAST-SNA

Processing pair FAST-SO

Processing pair FAST-STLD

Processing pair FAST-STE

Processing pair FAST-SYK

Processing pair FAST-SNPS

Processing pair FAST-TMUS

Processing pair FAST-TEL

Processing pair FAST-TDY

Processing pair FAST-TER

Processing pair FAST-TXN

Processing pair FAST-TPL

Processing pair FAST-TMO

Processing pair FAST-TJX

Processing pair FAST-TSCO

Processing pair FAST-TT

Processing pair FAST-TDG

Processing pair FAST-TRV

Processing pair FAST-TYL

Processing pair FAST-UNP

Processing pair FAST-URI

Processing pair FAST-UNH

Processing pair FAST-VRSK

Processing pair FAST-VRTX

Processing pair FAST-V

Processing pair FAST-VMC

Processing pair FAST-WRB

Processing pair FAST-GWW

Processing pair FAST-WMT

Processing pair FAST-WM

Processing pair FAST-WAT

Processing pair FAST-WST

Processing pair FAST-WTW

Processing pair FAST-XYL
ADF test for FAST-XYL failed with LinAlgError

Processing pair FAST-YUM

Processing pair FAST-ZTS
ADF test for FAST-ZTS failed with LinAlgError

Processing pair FRT-REG

Processing pair FRT-SPG

Processing pair FDX-LYB
ADF test for FDX-LYB failed with LinAlgError

Processing pair FDX-MAS

Processing pair FDX-NXPI
ADF test for FDX-NXPI failed with LinAlgError

Processing pair FDX-PKG

Processing pair FDX-PPG

Processing pair FDX-TEL

Processing pair FDX-TXT

Processing pair FIS-GPN

Processing pair FIS-INTC

Processing pair FIS-MKTX

Processing pair FIS-MDT

Processing pair FIS-SWK

Processing pair FIS-TFX

Processing pair FIS-VLTO
ADF test for FIS-VLTO failed with LinAlgError

Processing pair FIS-VZ

Processing pair FIS-DIS

Processing pair FITB-GRMN

Processing pair FITB-GEN

Processing pair FITB-GD

Processing pair FITB-GS

Processing pair FITB-HIG

Processing pair FITB-HCA
ADF test for FITB-HCA failed with LinAlgError

Processing pair FITB-HD

Processing pair FITB-HON

Processing pair FITB-HPQ

Processing pair FITB-HBAN

Processing pair FITB-IEX

Processing pair FITB-ITW

Processing pair FITB-ICE

Processing pair FITB-IPG

Processing pair FITB-INTU

Processing pair FITB-ISRG

Processing pair FITB-JBHT

Processing pair FITB-J

Processing pair FITB-JNJ

Processing pair FITB-JCI

Processing pair FITB-JPM

Processing pair FITB-KDP

Processing pair FITB-KEY

Processing pair FITB-LHX

Processing pair FITB-LH

Processing pair FITB-LYV

Processing pair FITB-LOW

Processing pair FITB-MTB

Processing pair FITB-MAR

Processing pair FITB-MMC

Processing pair FITB-MLM

Processing pair FITB-MAS

Processing pair FITB-MET

Processing pair FITB-MTD

Processing pair FITB-MGM

Processing pair FITB-MCHP

Processing pair FITB-MU

Processing pair FITB-MAA

Processing pair FITB-MCO

Processing pair FITB-MS

Processing pair FITB-NDAQ

Processing pair FITB-NDSN

Processing pair FITB-NSC

Processing pair FITB-NTRS

Processing pair FITB-NVR

Processing pair FITB-NXPI
ADF test for FITB-NXPI failed with LinAlgError

Processing pair FITB-PKG

Processing pair FITB-PAYX

Processing pair FITB-PNC

Processing pair FITB-POOL

Processing pair FITB-PFG

Processing pair FITB-PLD

Processing pair FITB-PRU

Processing pair FITB-PEG

Processing pair FITB-PTC

Processing pair FITB-PSA

Processing pair FITB-DGX

Processing pair FITB-RJF

Processing pair FITB-RTX

Processing pair FITB-RF

Processing pair FITB-ROK

Processing pair FITB-ROP

Processing pair FITB-SPGI

Processing pair FITB-STX

Processing pair FITB-SHW

Processing pair FITB-STE

Processing pair FITB-SYK

Processing pair FITB-SYY

Processing pair FITB-TMUS

Processing pair FITB-TEL

Processing pair FITB-TDY

Processing pair FITB-TXN

Processing pair FITB-TXT

Processing pair FITB-TMO

Processing pair FITB-TRV

Processing pair FITB-TFC

Processing pair FITB-TYL

Processing pair FITB-UDR

Processing pair FITB-UNP

Processing pair FITB-UNH

Processing pair FITB-V

Processing pair FITB-VMC

Processing pair FITB-WRB

Processing pair FITB-WM

Processing pair FITB-WAT

Processing pair FITB-WTW

Processing pair FITB-XYL
ADF test for FITB-XYL failed with LinAlgError

Processing pair FITB-YUM

Processing pair FE-VLTO
ADF test for FE-VLTO failed with LinAlgError

Processing pair FI-GRMN

Processing pair FI-GEV
ADF test for FI-GEV failed with LinAlgError

Processing pair FI-GD

Processing pair FI-GL

Processing pair FI-GDDY
ADF test for FI-GDDY failed with LinAlgError

Processing pair FI-HIG

Processing pair FI-HCA
ADF test for FI-HCA failed with LinAlgError

Processing pair FI-HLT
ADF test for FI-HLT failed with LinAlgError

Processing pair FI-HOLX

Processing pair FI-HD

Processing pair FI-HON

Processing pair FI-IEX

Processing pair FI-ITW

Processing pair FI-ICE

Processing pair FI-INTU

Processing pair FI-ISRG

Processing pair FI-JBHT

Processing pair FI-JKHY

Processing pair FI-J

Processing pair FI-JNJ

Processing pair FI-JPM

Processing pair FI-KDP

Processing pair FI-KMB

Processing pair FI-LHX

Processing pair FI-LH

Processing pair FI-LDOS

Processing pair FI-LEN

Processing pair FI-LII

Processing pair FI-LIN

Processing pair FI-LYV

Processing pair FI-LMT

Processing pair FI-LOW

Processing pair FI-MAR

Processing pair FI-MMC

Processing pair FI-MLM

Processing pair FI-MAS

Processing pair FI-MA

Processing pair FI-MKC

Processing pair FI-MCD

Processing pair FI-MRK

Processing pair FI-META
ADF test for FI-META failed with LinAlgError

Processing pair FI-MTD

Processing pair FI-MCHP

Processing pair FI-MU

Processing pair FI-MSFT

Processing pair FI-MDLZ

Processing pair FI-MNST

Processing pair FI-MCO

Processing pair FI-MSI

Processing pair FI-MSCI

Processing pair FI-NDAQ

Processing pair FI-NFLX

Processing pair FI-NEE

Processing pair FI-NI

Processing pair FI-NDSN

Processing pair FI-NSC

Processing pair FI-NOC

Processing pair FI-NVR

Processing pair FI-NXPI
ADF test for FI-NXPI failed with LinAlgError

Processing pair FI-ORLY

Processing pair FI-ORCL

Processing pair FI-PCAR

Processing pair FI-PKG

Processing pair FI-PH

Processing pair FI-PAYX

Processing pair FI-PEP

Processing pair FI-PNW

Processing pair FI-PNC

Processing pair FI-PG

Processing pair FI-PGR

Processing pair FI-PLD

Processing pair FI-PEG

Processing pair FI-PTC

Processing pair FI-DGX

Processing pair FI-RJF

Processing pair FI-RTX

Processing pair FI-O

Processing pair FI-RF

Processing pair FI-RSG

Processing pair FI-RMD

Processing pair FI-ROK

Processing pair FI-ROL

Processing pair FI-ROP

Processing pair FI-ROST

Processing pair FI-SPGI

Processing pair FI-CRM

Processing pair FI-SRE

Processing pair FI-NOW
ADF test for FI-NOW failed with LinAlgError

Processing pair FI-SHW

Processing pair FI-SNA

Processing pair FI-SO

Processing pair FI-SBUX

Processing pair FI-STE

Processing pair FI-SYK

Processing pair FI-SYY

Processing pair FI-TMUS

Processing pair FI-TTWO

Processing pair FI-TEL

Processing pair FI-TDY

Processing pair FI-TXN

Processing pair FI-TMO

Processing pair FI-TJX

Processing pair FI-TT

Processing pair FI-TDG

Processing pair FI-TRV

Processing pair FI-TYL

Processing pair FI-UNP

Processing pair FI-UNH

Processing pair FI-VRSN

Processing pair FI-VRSK

Processing pair FI-VRTX

Processing pair FI-V

Processing pair FI-VMC

Processing pair FI-WRB

Processing pair FI-WMT

Processing pair FI-WM

Processing pair FI-WAT

Processing pair FI-WEC

Processing pair FI-WELL

Processing pair FI-WTW

Processing pair FI-XEL

Processing pair FI-XYL
ADF test for FI-XYL failed with LinAlgError

Processing pair FI-YUM

Processing pair FMC-SBAC

Processing pair FTNT-GRMN

Processing pair FTNT-IT

Processing pair FTNT-GS

Processing pair FTNT-HCA
ADF test for FTNT-HCA failed with LinAlgError

Processing pair FTNT-HSY

Processing pair FTNT-HLT
ADF test for FTNT-HLT failed with LinAlgError

Processing pair FTNT-HOLX

Processing pair FTNT-HD

Processing pair FTNT-HPQ

Processing pair FTNT-HUBB

Processing pair FTNT-IDXX

Processing pair FTNT-ITW

Processing pair FTNT-ICE

Processing pair FTNT-IPG

Processing pair FTNT-INTU

Processing pair FTNT-ISRG

Processing pair FTNT-INVH
ADF test for FTNT-INVH failed with LinAlgError

Processing pair FTNT-IQV
ADF test for FTNT-IQV failed with LinAlgError

Processing pair FTNT-JBHT

Processing pair FTNT-JBL

Processing pair FTNT-J

Processing pair FTNT-JCI

Processing pair FTNT-JPM

Processing pair FTNT-KEYS
ADF test for FTNT-KEYS failed with LinAlgError

Processing pair FTNT-KKR
ADF test for FTNT-KKR failed with LinAlgError

Processing pair FTNT-KLAC

Processing pair FTNT-LH

Processing pair FTNT-LRCX

Processing pair FTNT-LEN

Processing pair FTNT-LIN

Processing pair FTNT-LYV

Processing pair FTNT-LOW

Processing pair FTNT-LULU

Processing pair FTNT-MMC

Processing pair FTNT-MLM

Processing pair FTNT-MA

Processing pair FTNT-MCD

Processing pair FTNT-MET

Processing pair FTNT-MTD

Processing pair FTNT-MCHP

Processing pair FTNT-MSFT

Processing pair FTNT-MAA

Processing pair FTNT-MOH

Processing pair FTNT-MDLZ

Processing pair FTNT-MPWR

Processing pair FTNT-MCO

Processing pair FTNT-MS

Processing pair FTNT-MSI

Processing pair FTNT-MSCI

Processing pair FTNT-NDAQ

Processing pair FTNT-NDSN

Processing pair FTNT-NUE

Processing pair FTNT-NVR

Processing pair FTNT-NXPI
ADF test for FTNT-NXPI failed with LinAlgError

Processing pair FTNT-ORLY

Processing pair FTNT-ODFL

Processing pair FTNT-ON

Processing pair FTNT-ORCL

Processing pair FTNT-PANW
ADF test for FTNT-PANW failed with LinAlgError

Processing pair FTNT-PH

Processing pair FTNT-PAYX

Processing pair FTNT-PEP

Processing pair FTNT-POOL

Processing pair FTNT-PG

Processing pair FTNT-PGR

Processing pair FTNT-PLD

Processing pair FTNT-PTC

Processing pair FTNT-PSA

Processing pair FTNT-PWR

Processing pair FTNT-QCOM

Processing pair FTNT-DGX

Processing pair FTNT-RJF

Processing pair FTNT-RSG

Processing pair FTNT-RMD

Processing pair FTNT-ROK

Processing pair FTNT-ROL

Processing pair FTNT-ROP

Processing pair FTNT-SPGI

Processing pair FTNT-STX

Processing pair FTNT-NOW
ADF test for FTNT-NOW failed with LinAlgError

Processing pair FTNT-SHW

Processing pair FTNT-SO

Processing pair FTNT-STLD

Processing pair FTNT-STE

Processing pair FTNT-SYK

Processing pair FTNT-SNPS

Processing pair FTNT-TMUS

Processing pair FTNT-TEL

Processing pair FTNT-TDY

Processing pair FTNT-TER

Processing pair FTNT-TSLA
ADF test for FTNT-TSLA failed with LinAlgError

Processing pair FTNT-TXN

Processing pair FTNT-TPL

Processing pair FTNT-TMO

Processing pair FTNT-TJX

Processing pair FTNT-TSCO

Processing pair FTNT-TT

Processing pair FTNT-TDG

Processing pair FTNT-TYL

Processing pair FTNT-UNP

Processing pair FTNT-URI

Processing pair FTNT-UNH

Processing pair FTNT-VRSK

Processing pair FTNT-VICI
ADF test for FTNT-VICI failed with LinAlgError

Processing pair FTNT-V

Processing pair FTNT-VMC

Processing pair FTNT-WRB

Processing pair FTNT-GWW

Processing pair FTNT-WMT

Processing pair FTNT-WM

Processing pair FTNT-WAT

Processing pair FTNT-WST

Processing pair FTNT-WTW

Processing pair FTNT-YUM

Processing pair FTNT-ZTS
ADF test for FTNT-ZTS failed with LinAlgError

Processing pair FOXA-FOX
ADF test for FOXA-FOX failed with LinAlgError

Processing pair GRMN-IT

Processing pair GRMN-GEN

Processing pair GRMN-GS

Processing pair GRMN-HIG

Processing pair GRMN-HCA
ADF test for GRMN-HCA failed with LinAlgError

Processing pair GRMN-HLT
ADF test for GRMN-HLT failed with LinAlgError

Processing pair GRMN-HOLX

Processing pair GRMN-HD

Processing pair GRMN-HON

Processing pair GRMN-IEX

Processing pair GRMN-IDXX

Processing pair GRMN-ITW

Processing pair GRMN-ICE

Processing pair GRMN-INTU

Processing pair GRMN-ISRG

Processing pair GRMN-IQV
ADF test for GRMN-IQV failed with LinAlgError

Processing pair GRMN-J

Processing pair GRMN-JCI

Processing pair GRMN-JPM

Processing pair GRMN-KDP

Processing pair GRMN-KKR
ADF test for GRMN-KKR failed with LinAlgError

Processing pair GRMN-KLAC

Processing pair GRMN-LHX

Processing pair GRMN-LH

Processing pair GRMN-LRCX

Processing pair GRMN-LDOS

Processing pair GRMN-LEN

Processing pair GRMN-LII

Processing pair GRMN-LIN

Processing pair GRMN-LYV

Processing pair GRMN-LOW

Processing pair GRMN-MAR

Processing pair GRMN-MMC

Processing pair GRMN-MLM

Processing pair GRMN-MAS

Processing pair GRMN-MA

Processing pair GRMN-MCD

Processing pair GRMN-META
ADF test for GRMN-META failed with LinAlgError

Processing pair GRMN-MTD

Processing pair GRMN-MCHP

Processing pair GRMN-MU

Processing pair GRMN-MSFT

Processing pair GRMN-MOH

Processing pair GRMN-MPWR

Processing pair GRMN-MCO

Processing pair GRMN-MS

Processing pair GRMN-MSI

Processing pair GRMN-MSCI

Processing pair GRMN-NDAQ

Processing pair GRMN-NTAP

Processing pair GRMN-NFLX

Processing pair GRMN-NEE

Processing pair GRMN-NDSN

Processing pair GRMN-NSC

Processing pair GRMN-NVR

Processing pair GRMN-NXPI
ADF test for GRMN-NXPI failed with LinAlgError

Processing pair GRMN-ORLY

Processing pair GRMN-ODFL

Processing pair GRMN-ORCL

Processing pair GRMN-PKG

Processing pair GRMN-PH

Processing pair GRMN-PAYX

Processing pair GRMN-PNR

Processing pair GRMN-PNC

Processing pair GRMN-POOL

Processing pair GRMN-PG

Processing pair GRMN-PGR

Processing pair GRMN-PLD

Processing pair GRMN-PEG

Processing pair GRMN-PTC

Processing pair GRMN-PHM

Processing pair GRMN-QCOM

Processing pair GRMN-DGX

Processing pair GRMN-RJF

Processing pair GRMN-RSG

Processing pair GRMN-RMD

Processing pair GRMN-ROK

Processing pair GRMN-ROL

Processing pair GRMN-ROP

Processing pair GRMN-ROST

Processing pair GRMN-SPGI

Processing pair GRMN-CRM

Processing pair GRMN-STX

Processing pair GRMN-NOW
ADF test for GRMN-NOW failed with LinAlgError

Processing pair GRMN-SHW

Processing pair GRMN-SO

Processing pair GRMN-STE

Processing pair GRMN-SYK

Processing pair GRMN-SNPS

Processing pair GRMN-TMUS

Processing pair GRMN-TEL

Processing pair GRMN-TDY

Processing pair GRMN-TER

Processing pair GRMN-TXN

Processing pair GRMN-TMO

Processing pair GRMN-TJX

Processing pair GRMN-TSCO

Processing pair GRMN-TT

Processing pair GRMN-TDG

Processing pair GRMN-TRV

Processing pair GRMN-TYL

Processing pair GRMN-UNP

Processing pair GRMN-URI

Processing pair GRMN-UNH

Processing pair GRMN-VRSK

Processing pair GRMN-V

Processing pair GRMN-VMC

Processing pair GRMN-WRB

Processing pair GRMN-WMT

Processing pair GRMN-WM

Processing pair GRMN-WAT

Processing pair GRMN-WELL

Processing pair GRMN-WST

Processing pair GRMN-WTW

Processing pair GRMN-WDAY
ADF test for GRMN-WDAY failed with LinAlgError

Processing pair GRMN-XYL
ADF test for GRMN-XYL failed with LinAlgError

Processing pair GRMN-YUM

Processing pair GRMN-ZBRA

Processing pair GRMN-ZTS
ADF test for GRMN-ZTS failed with LinAlgError

Processing pair IT-GD

Processing pair IT-GPC

Processing pair IT-GS

Processing pair IT-HIG

Processing pair IT-HCA
ADF test for IT-HCA failed with LinAlgError

Processing pair IT-HLT
ADF test for IT-HLT failed with LinAlgError

Processing pair IT-HD

Processing pair IT-HUBB

Processing pair IT-ITW

Processing pair IT-IR
ADF test for IT-IR failed with LinAlgError

Processing pair IT-ICE

Processing pair IT-IPG

Processing pair IT-INTU

Processing pair IT-ISRG

Processing pair IT-IRM

Processing pair IT-JBHT

Processing pair IT-JBL

Processing pair IT-J

Processing pair IT-JCI

Processing pair IT-JPM

Processing pair IT-KKR
ADF test for IT-KKR failed with LinAlgError

Processing pair IT-KLAC

Processing pair IT-LH

Processing pair IT-LRCX

Processing pair IT-LDOS

Processing pair IT-LEN

Processing pair IT-LII

Processing pair IT-LLY

Processing pair IT-LIN

Processing pair IT-LYV

Processing pair IT-L

Processing pair IT-LOW

Processing pair IT-MPC
ADF test for IT-MPC failed with LinAlgError

Processing pair IT-MAR

Processing pair IT-MMC

Processing pair IT-MLM

Processing pair IT-MAS

Processing pair IT-MA

Processing pair IT-MCD

Processing pair IT-MCK

Processing pair IT-MRK

Processing pair IT-MET

Processing pair IT-MCHP

Processing pair IT-MSFT

Processing pair IT-MOH

Processing pair IT-MDLZ

Processing pair IT-MPWR

Processing pair IT-MCO

Processing pair IT-MS

Processing pair IT-MSI

Processing pair IT-MSCI

Processing pair IT-NDAQ

Processing pair IT-NTAP

Processing pair IT-NDSN

Processing pair IT-NOC

Processing pair IT-NUE

Processing pair IT-NVR

Processing pair IT-NXPI
ADF test for IT-NXPI failed with LinAlgError

Processing pair IT-ORLY

Processing pair IT-ODFL

Processing pair IT-ON

Processing pair IT-OKE

Processing pair IT-ORCL

Processing pair IT-OTIS
ADF test for IT-OTIS failed with LinAlgError

Processing pair IT-PCAR

Processing pair IT-PKG

Processing pair IT-PANW
ADF test for IT-PANW failed with LinAlgError

Processing pair IT-PH

Processing pair IT-PAYX

Processing pair IT-PNR

Processing pair IT-PEP

Processing pair IT-PFG

Processing pair IT-PG

Processing pair IT-PGR

Processing pair IT-PEG

Processing pair IT-PTC

Processing pair IT-PSA

Processing pair IT-PHM

Processing pair IT-PWR

Processing pair IT-QCOM

Processing pair IT-DGX

Processing pair IT-RJF

Processing pair IT-RTX

Processing pair IT-RF

Processing pair IT-RSG

Processing pair IT-ROK

Processing pair IT-ROL

Processing pair IT-ROP

Processing pair IT-SPGI

Processing pair IT-STX

Processing pair IT-NOW
ADF test for IT-NOW failed with LinAlgError

Processing pair IT-SHW

Processing pair IT-SNA

Processing pair IT-SO

Processing pair IT-STLD

Processing pair IT-STE

Processing pair IT-SYK

Processing pair IT-SNPS

Processing pair IT-TMUS

Processing pair IT-TEL

Processing pair IT-TXN

Processing pair IT-TPL

Processing pair IT-TXT

Processing pair IT-TMO

Processing pair IT-TJX

Processing pair IT-TSCO

Processing pair IT-TT

Processing pair IT-TDG

Processing pair IT-TRV

Processing pair IT-UNP

Processing pair IT-URI

Processing pair IT-UNH

Processing pair IT-VLO

Processing pair IT-VRSK

Processing pair IT-VRTX

Processing pair IT-V

Processing pair IT-VMC

Processing pair IT-WRB

Processing pair IT-GWW

Processing pair IT-WMT

Processing pair IT-WM

Processing pair IT-WELL

Processing pair IT-WTW

Processing pair IT-XYL
ADF test for IT-XYL failed with LinAlgError

Processing pair IT-YUM

Processing pair GE-VLTO
ADF test for GE-VLTO failed with LinAlgError

Processing pair GEV-GILD
ADF test for GEV-GILD failed with LinAlgError

Processing pair GEV-HLT
ADF test for GEV-HLT failed with LinAlgError

Processing pair GEV-HWM
ADF test for GEV-HWM failed with LinAlgError

Processing pair GEV-PODD
ADF test for GEV-PODD failed with LinAlgError

Processing pair GEV-JCI
ADF test for GEV-JCI failed with LinAlgError

Processing pair GEV-KMI
ADF test for GEV-KMI failed with LinAlgError

Processing pair GEV-KKR
ADF test for GEV-KKR failed with LinAlgError

Processing pair GEV-LYV
ADF test for GEV-LYV failed with LinAlgError

Processing pair GEV-MTB
ADF test for GEV-MTB failed with LinAlgError

Processing pair GEV-MS
ADF test for GEV-MS failed with LinAlgError

Processing pair GEV-MSI
ADF test for GEV-MSI failed with LinAlgError

Processing pair GEV-NFLX
ADF test for GEV-NFLX failed with LinAlgError

Processing pair GEV-NI
ADF test for GEV-NI failed with LinAlgError

Processing pair GEV-NTRS
ADF test for GEV-NTRS failed with LinAlgError

Processing pair GEV-OKE
ADF test for GEV-OKE failed with LinAlgError

Processing pair GEV-ORCL
ADF test for GEV-ORCL failed with LinAlgError

Processing pair GEV-PKG
ADF test for GEV-PKG failed with LinAlgError

Processing pair GEV-PLTR
ADF test for GEV-PLTR failed with LinAlgError

Processing pair GEV-PH
ADF test for GEV-PH failed with LinAlgError

Processing pair GEV-PAYX
ADF test for GEV-PAYX failed with LinAlgError

Processing pair GEV-PYPL
ADF test for GEV-PYPL failed with LinAlgError

Processing pair GEV-PNR
ADF test for GEV-PNR failed with LinAlgError

Processing pair GEV-PCG
ADF test for GEV-PCG failed with LinAlgError

Processing pair GEV-PWR
ADF test for GEV-PWR failed with LinAlgError

Processing pair GEV-RL
ADF test for GEV-RL failed with LinAlgError

Processing pair GEV-RCL
ADF test for GEV-RCL failed with LinAlgError

Processing pair GEV-SRE
ADF test for GEV-SRE failed with LinAlgError

Processing pair GEV-NOW
ADF test for GEV-NOW failed with LinAlgError

Processing pair GEV-SPG
ADF test for GEV-SPG failed with LinAlgError

Processing pair GEV-STT
ADF test for GEV-STT failed with LinAlgError

Processing pair GEV-SYF
ADF test for GEV-SYF failed with LinAlgError

Processing pair GEV-TMUS
ADF test for GEV-TMUS failed with LinAlgError

Processing pair GEV-TRGP
ADF test for GEV-TRGP failed with LinAlgError

Processing pair GEV-TPL
ADF test for GEV-TPL failed with LinAlgError

Processing pair GEV-TT
ADF test for GEV-TT failed with LinAlgError

Processing pair GEV-VST
ADF test for GEV-VST failed with LinAlgError

Processing pair GEV-GWW
ADF test for GEV-GWW failed with LinAlgError

Processing pair GEV-WAB
ADF test for GEV-WAB failed with LinAlgError

Processing pair GEV-WMT
ADF test for GEV-WMT failed with LinAlgError

Processing pair GEV-WELL
ADF test for GEV-WELL failed with LinAlgError

Processing pair GEV-WMB
ADF test for GEV-WMB failed with LinAlgError

Processing pair GEV-XEL
ADF test for GEV-XEL failed with LinAlgError

Processing pair GEV-ZBRA
ADF test for GEV-ZBRA failed with LinAlgError

Processing pair GEN-GS

Processing pair GEN-HOLX

Processing pair GEN-HD

Processing pair GEN-HON

Processing pair GEN-IEX

Processing pair GEN-IDXX

Processing pair GEN-ITW

Processing pair GEN-ICE

Processing pair GEN-INTU

Processing pair GEN-ISRG

Processing pair GEN-IQV
ADF test for GEN-IQV failed with LinAlgError

Processing pair GEN-JBHT

Processing pair GEN-JKHY

Processing pair GEN-J

Processing pair GEN-JNJ

Processing pair GEN-JCI

Processing pair GEN-JPM

Processing pair GEN-KDP

Processing pair GEN-LHX

Processing pair GEN-LH

Processing pair GEN-LDOS

Processing pair GEN-LYV

Processing pair GEN-LOW

Processing pair GEN-MMC

Processing pair GEN-MAS

Processing pair GEN-MA

Processing pair GEN-MCD

Processing pair GEN-MTD

Processing pair GEN-MCHP

Processing pair GEN-MSFT

Processing pair GEN-MAA

Processing pair GEN-MOH

Processing pair GEN-MDLZ

Processing pair GEN-MCO

Processing pair GEN-MS

Processing pair GEN-MSCI

Processing pair GEN-NDAQ

Processing pair GEN-NEE

Processing pair GEN-NDSN

Processing pair GEN-NSC

Processing pair GEN-NXPI
ADF test for GEN-NXPI failed with LinAlgError

Processing pair GEN-PKG

Processing pair GEN-PAYX

Processing pair GEN-PEP

Processing pair GEN-PNC

Processing pair GEN-POOL

Processing pair GEN-PG

Processing pair GEN-PLD

Processing pair GEN-PEG

Processing pair GEN-PSA

Processing pair GEN-QCOM

Processing pair GEN-DGX

Processing pair GEN-RJF

Processing pair GEN-RF

Processing pair GEN-RMD

Processing pair GEN-RVTY

Processing pair GEN-ROK

Processing pair GEN-ROL

Processing pair GEN-ROP

Processing pair GEN-SPGI

Processing pair GEN-CRM

Processing pair GEN-STX

Processing pair GEN-NOW
ADF test for GEN-NOW failed with LinAlgError

Processing pair GEN-SHW

Processing pair GEN-SO

Processing pair GEN-STE

Processing pair GEN-SYK

Processing pair GEN-TMUS

Processing pair GEN-TEL

Processing pair GEN-TDY

Processing pair GEN-TER

Processing pair GEN-TXN

Processing pair GEN-TMO

Processing pair GEN-TYL

Processing pair GEN-UNP

Processing pair GEN-UPS

Processing pair GEN-UNH

Processing pair GEN-VRSK

Processing pair GEN-V

Processing pair GEN-WMT

Processing pair GEN-WM

Processing pair GEN-WAT

Processing pair GEN-WEC

Processing pair GEN-WST

Processing pair GEN-WTW

Processing pair GEN-XEL

Processing pair GEN-ZTS
ADF test for GEN-ZTS failed with LinAlgError

Processing pair GNRC-TROW
ADF test for GNRC-TROW failed with LinAlgError

Processing pair GNRC-TGT
ADF test for GNRC-TGT failed with LinAlgError

Processing pair GNRC-TRMB
ADF test for GNRC-TRMB failed with LinAlgError

Processing pair GNRC-ZBRA
ADF test for GNRC-ZBRA failed with LinAlgError

Processing pair GD-GPC

Processing pair GD-GL

Processing pair GD-GS

Processing pair GD-HIG

Processing pair GD-HCA
ADF test for GD-HCA failed with LinAlgError

Processing pair GD-HLT
ADF test for GD-HLT failed with LinAlgError

Processing pair GD-HD

Processing pair GD-HON

Processing pair GD-HWM
ADF test for GD-HWM failed with LinAlgError

Processing pair GD-HBAN

Processing pair GD-HII
ADF test for GD-HII failed with LinAlgError

Processing pair GD-IEX

Processing pair GD-ITW

Processing pair GD-ICE

Processing pair GD-IPG

Processing pair GD-JBHT

Processing pair GD-JNJ

Processing pair GD-JPM

Processing pair GD-KR

Processing pair GD-LHX

Processing pair GD-LDOS

Processing pair GD-LII

Processing pair GD-LMT

Processing pair GD-LOW

Processing pair GD-LYB
ADF test for GD-LYB failed with LinAlgError

Processing pair GD-MTB

Processing pair GD-MAR

Processing pair GD-MMC

Processing pair GD-MLM

Processing pair GD-MAS

Processing pair GD-MCD

Processing pair GD-MRK

Processing pair GD-MET

Processing pair GD-MGM

Processing pair GD-MCHP

Processing pair GD-MDLZ

Processing pair GD-MNST

Processing pair GD-MS

Processing pair GD-MSI

Processing pair GD-NDAQ

Processing pair GD-NI

Processing pair GD-NDSN

Processing pair GD-NOC

Processing pair GD-NVR

Processing pair GD-NXPI
ADF test for GD-NXPI failed with LinAlgError

Processing pair GD-ORLY

Processing pair GD-OMC

Processing pair GD-OKE

Processing pair GD-PKG

Processing pair GD-PAYX

Processing pair GD-PEP

Processing pair GD-PM

Processing pair GD-PSX
ADF test for GD-PSX failed with LinAlgError

Processing pair GD-PNC

Processing pair GD-PFG

Processing pair GD-PRU

Processing pair GD-PEG

Processing pair GD-PTC

Processing pair GD-PSA

Processing pair GD-DGX

Processing pair GD-RJF

Processing pair GD-RTX

Processing pair GD-REGN

Processing pair GD-RF

Processing pair GD-RSG

Processing pair GD-ROL

Processing pair GD-ROP

Processing pair GD-ROST

Processing pair GD-SRE

Processing pair GD-SHW

Processing pair GD-SNA

Processing pair GD-SO

Processing pair GD-SYK

Processing pair GD-SYY

Processing pair GD-TMUS

Processing pair GD-TEL

Processing pair GD-TXN

Processing pair GD-TXT

Processing pair GD-TJX

Processing pair GD-TDG

Processing pair GD-TRV

Processing pair GD-ULTA

Processing pair GD-UNP

Processing pair GD-UNH

Processing pair GD-VLO

Processing pair GD-VLTO
ADF test for GD-VLTO failed with LinAlgError

Processing pair GD-VRTX

Processing pair GD-V

Processing pair GD-VMC

Processing pair GD-WRB

Processing pair GD-WM

Processing pair GD-WAT

Processing pair GD-WELL

Processing pair GD-WTW

Processing pair GD-YUM

Processing pair GIS-GPC

Processing pair GIS-HSY

Processing pair GIS-HOLX

Processing pair GIS-ITW

Processing pair GIS-IPG

Processing pair GIS-JBHT

Processing pair GIS-JNJ

Processing pair GIS-KMB

Processing pair GIS-KR

Processing pair GIS-LKQ

Processing pair GIS-LMT

Processing pair GIS-LOW

Processing pair GIS-MMC

Processing pair GIS-MCD

Processing pair GIS-MRK

Processing pair GIS-MDLZ

Processing pair GIS-MNST

Processing pair GIS-NDAQ

Processing pair GIS-NDSN

Processing pair GIS-NOC

Processing pair GIS-ORLY

Processing pair GIS-PAYX

Processing pair GIS-PEP

Processing pair GIS-PFG

Processing pair GIS-PG

Processing pair GIS-PSA

Processing pair GIS-DGX

Processing pair GIS-REGN

Processing pair GIS-SRE

Processing pair GIS-SJM

Processing pair GIS-SNA

Processing pair GIS-SO

Processing pair GIS-TMO

Processing pair GIS-TSCO

Processing pair GIS-TRV

Processing pair GIS-ULTA

Processing pair GIS-UNH

Processing pair GM-PNC
ADF test for GM-PNC failed with LinAlgError

Processing pair GPC-GL

Processing pair GPC-HCA
ADF test for GPC-HCA failed with LinAlgError

Processing pair GPC-HSY

Processing pair GPC-HOLX

Processing pair GPC-HD

Processing pair GPC-HON

Processing pair GPC-IEX

Processing pair GPC-ITW

Processing pair GPC-IPG

Processing pair GPC-JBHT

Processing pair GPC-JNJ

Processing pair GPC-JCI

Processing pair GPC-KDP

Processing pair GPC-KR

Processing pair GPC-LIN

Processing pair GPC-LKQ

Processing pair GPC-LMT

Processing pair GPC-LOW

Processing pair GPC-MMC

Processing pair GPC-MLM

Processing pair GPC-MCD

Processing pair GPC-MRK

Processing pair GPC-MET

Processing pair GPC-MTD

Processing pair GPC-MCHP

Processing pair GPC-MOH

Processing pair GPC-MDLZ

Processing pair GPC-MNST

Processing pair GPC-MS

Processing pair GPC-NDAQ

Processing pair GPC-NDSN

Processing pair GPC-NOC

Processing pair GPC-NUE

Processing pair GPC-NXPI
ADF test for GPC-NXPI failed with LinAlgError

Processing pair GPC-ORLY

Processing pair GPC-ODFL

Processing pair GPC-ON

Processing pair GPC-PAYX

Processing pair GPC-PEP

Processing pair GPC-PFG

Processing pair GPC-PG

Processing pair GPC-PLD

Processing pair GPC-PSA

Processing pair GPC-DGX

Processing pair GPC-RJF

Processing pair GPC-RTX

Processing pair GPC-RF

Processing pair GPC-RSG

Processing pair GPC-ROK

Processing pair GPC-ROL

Processing pair GPC-ROP

Processing pair GPC-SRE

Processing pair GPC-SJM

Processing pair GPC-SNA

Processing pair GPC-SO

Processing pair GPC-STLD

Processing pair GPC-STE

Processing pair GPC-SYK

Processing pair GPC-SYY

Processing pair GPC-TMUS

Processing pair GPC-TEL

Processing pair GPC-TXN

Processing pair GPC-TXT

Processing pair GPC-TMO

Processing pair GPC-TJX

Processing pair GPC-TSCO

Processing pair GPC-TRV

Processing pair GPC-ULTA

Processing pair GPC-UNP

Processing pair GPC-UPS

Processing pair GPC-UNH

Processing pair GPC-VLO

Processing pair GPC-VICI
ADF test for GPC-VICI failed with LinAlgError

Processing pair GPC-VMC

Processing pair GPC-WRB

Processing pair GPC-WM

Processing pair GPC-WAT

Processing pair GPC-WTW

Processing pair GPC-YUM

Processing pair GPN-INTC

Processing pair GPN-MKTX

Processing pair GPN-MKC

Processing pair GPN-MDT

Processing pair GPN-TTWO

Processing pair GPN-TFX

Processing pair GPN-VRSN

Processing pair GL-HSIC

Processing pair GL-HOLX

Processing pair GL-HD

Processing pair GL-HON

Processing pair GL-HUM

Processing pair GL-HBAN

Processing pair GL-HII
ADF test for GL-HII failed with LinAlgError

Processing pair GL-IEX

Processing pair GL-ITW

Processing pair GL-ICE

Processing pair GL-IPG

Processing pair GL-JBHT

Processing pair GL-JKHY

Processing pair GL-JNJ

Processing pair GL-KDP

Processing pair GL-KMB

Processing pair GL-LHX

Processing pair GL-LH

Processing pair GL-LYV

Processing pair GL-LMT

Processing pair GL-LYB
ADF test for GL-LYB failed with LinAlgError

Processing pair GL-MAR

Processing pair GL-MAS

Processing pair GL-MA

Processing pair GL-MKC

Processing pair GL-MCD

Processing pair GL-MGM

Processing pair GL-MCHP

Processing pair GL-MDLZ

Processing pair GL-MNST

Processing pair GL-NI

Processing pair GL-NDSN

Processing pair GL-NSC

Processing pair GL-NOC

Processing pair GL-PKG

Processing pair GL-PAYX

Processing pair GL-PEP

Processing pair GL-PNW

Processing pair GL-PNC

Processing pair GL-PPG

Processing pair GL-PFG

Processing pair GL-PEG

Processing pair GL-DGX

Processing pair GL-O

Processing pair GL-RF

Processing pair GL-ROK

Processing pair GL-ROL

Processing pair GL-ROP

Processing pair GL-ROST

Processing pair GL-SRE

Processing pair GL-SJM

Processing pair GL-SNA

Processing pair GL-SBUX

Processing pair GL-STE

Processing pair GL-SYK

Processing pair GL-SYY

Processing pair GL-TEL

Processing pair GL-TDY

Processing pair GL-TXN

Processing pair GL-TRV

Processing pair GL-ULTA

Processing pair GL-UNP

Processing pair GL-UNH

Processing pair GL-VRSN

Processing pair GL-V

Processing pair GL-WAT

Processing pair GL-WEC

Processing pair GL-WTW

Processing pair GL-XEL

Processing pair GL-YUM

Processing pair GDDY-HLT
ADF test for GDDY-HLT failed with LinAlgError

Processing pair GDDY-ISRG
ADF test for GDDY-ISRG failed with LinAlgError

Processing pair GDDY-JPM
ADF test for GDDY-JPM failed with LinAlgError

Processing pair GDDY-LDOS
ADF test for GDDY-LDOS failed with LinAlgError

Processing pair GDDY-LII
ADF test for GDDY-LII failed with LinAlgError

Processing pair GDDY-NTAP
ADF test for GDDY-NTAP failed with LinAlgError

Processing pair GDDY-NRG
ADF test for GDDY-NRG failed with LinAlgError

Processing pair GDDY-NVR
ADF test for GDDY-NVR failed with LinAlgError

Processing pair GDDY-PKG
ADF test for GDDY-PKG failed with LinAlgError

Processing pair GDDY-PGR
ADF test for GDDY-PGR failed with LinAlgError

Processing pair GDDY-PEG
ADF test for GDDY-PEG failed with LinAlgError

Processing pair GDDY-TJX
ADF test for GDDY-TJX failed with LinAlgError

Processing pair GDDY-TT
ADF test for GDDY-TT failed with LinAlgError

Processing pair GDDY-TDG
ADF test for GDDY-TDG failed with LinAlgError

Processing pair GDDY-VLTO
ADF test for GDDY-VLTO failed with LinAlgError

Processing pair GDDY-WMT
ADF test for GDDY-WMT failed with LinAlgError

Processing pair GS-HIG

Processing pair GS-HCA
ADF test for GS-HCA failed with LinAlgError

Processing pair GS-HLT
ADF test for GS-HLT failed with LinAlgError

Processing pair GS-HD

Processing pair GS-HPQ

Processing pair GS-HUBB

Processing pair GS-ITW

Processing pair GS-IR
ADF test for GS-IR failed with LinAlgError

Processing pair GS-ICE

Processing pair GS-IPG

Processing pair GS-INTU

Processing pair GS-ISRG

Processing pair GS-IRM

Processing pair GS-JBHT

Processing pair GS-J

Processing pair GS-JCI

Processing pair GS-JPM

Processing pair GS-KKR
ADF test for GS-KKR failed with LinAlgError

Processing pair GS-KLAC

Processing pair GS-LH

Processing pair GS-LRCX

Processing pair GS-LDOS

Processing pair GS-LEN

Processing pair GS-LII

Processing pair GS-LIN

Processing pair GS-LYV

Processing pair GS-L

Processing pair GS-LOW

Processing pair GS-MAR

Processing pair GS-MMC

Processing pair GS-MLM

Processing pair GS-MAS

Processing pair GS-MA

Processing pair GS-MCD

Processing pair GS-MET

Processing pair GS-MTD

Processing pair GS-MCHP

Processing pair GS-MU

Processing pair GS-MSFT

Processing pair GS-MOH

Processing pair GS-MPWR

Processing pair GS-MCO

Processing pair GS-MS

Processing pair GS-MSI

Processing pair GS-MSCI

Processing pair GS-NDAQ

Processing pair GS-NTAP

Processing pair GS-NWS
ADF test for GS-NWS failed with LinAlgError

Processing pair GS-NDSN

Processing pair GS-NUE

Processing pair GS-NVR

Processing pair GS-NXPI
ADF test for GS-NXPI failed with LinAlgError

Processing pair GS-ORLY

Processing pair GS-ODFL

Processing pair GS-OKE

Processing pair GS-ORCL

Processing pair GS-OTIS
ADF test for GS-OTIS failed with LinAlgError

Processing pair GS-PCAR

Processing pair GS-PKG

Processing pair GS-PANW
ADF test for GS-PANW failed with LinAlgError

Processing pair GS-PH

Processing pair GS-PAYX

Processing pair GS-PNR

Processing pair GS-PNC

Processing pair GS-PFG

Processing pair GS-PG

Processing pair GS-PGR

Processing pair GS-PRU

Processing pair GS-PEG

Processing pair GS-PTC

Processing pair GS-PSA

Processing pair GS-PHM

Processing pair GS-PWR

Processing pair GS-QCOM

Processing pair GS-DGX

Processing pair GS-RJF

Processing pair GS-RTX

Processing pair GS-RF

Processing pair GS-RSG

Processing pair GS-ROK

Processing pair GS-ROL

Processing pair GS-ROP

Processing pair GS-SPGI

Processing pair GS-STX

Processing pair GS-NOW
ADF test for GS-NOW failed with LinAlgError

Processing pair GS-SHW

Processing pair GS-SNA

Processing pair GS-SO

Processing pair GS-STLD

Processing pair GS-SYK

Processing pair GS-SNPS

Processing pair GS-TMUS

Processing pair GS-TEL

Processing pair GS-TXN

Processing pair GS-TPL

Processing pair GS-TXT

Processing pair GS-TMO

Processing pair GS-TJX

Processing pair GS-TSCO

Processing pair GS-TT

Processing pair GS-TDG

Processing pair GS-TRV

Processing pair GS-TYL

Processing pair GS-UNP

Processing pair GS-URI

Processing pair GS-UNH

Processing pair GS-VLTO
ADF test for GS-VLTO failed with LinAlgError

Processing pair GS-VRSK

Processing pair GS-VMC

Processing pair GS-WRB

Processing pair GS-GWW

Processing pair GS-WMT

Processing pair GS-WM

Processing pair GS-WAT

Processing pair GS-WELL

Processing pair GS-WTW

Processing pair GS-XYL
ADF test for GS-XYL failed with LinAlgError

Processing pair GS-YUM

Processing pair HIG-HCA
ADF test for HIG-HCA failed with LinAlgError

Processing pair HIG-HLT
ADF test for HIG-HLT failed with LinAlgError

Processing pair HIG-HD

Processing pair HIG-HWM
ADF test for HIG-HWM failed with LinAlgError

Processing pair HIG-HUBB

Processing pair HIG-ITW

Processing pair HIG-IR
ADF test for HIG-IR failed with LinAlgError

Processing pair HIG-ICE

Processing pair HIG-IPG

Processing pair HIG-INTU

Processing pair HIG-ISRG

Processing pair HIG-IRM

Processing pair HIG-JCI

Processing pair HIG-JPM

Processing pair HIG-KKR
ADF test for HIG-KKR failed with LinAlgError

Processing pair HIG-KLAC

Processing pair HIG-KR

Processing pair HIG-LRCX

Processing pair HIG-LDOS

Processing pair HIG-LEN

Processing pair HIG-LII

Processing pair HIG-LLY

Processing pair HIG-LIN

Processing pair HIG-LYV

Processing pair HIG-LMT

Processing pair HIG-L

Processing pair HIG-LOW

Processing pair HIG-MPC
ADF test for HIG-MPC failed with LinAlgError

Processing pair HIG-MAR

Processing pair HIG-MMC

Processing pair HIG-MLM

Processing pair HIG-MAS

Processing pair HIG-MA

Processing pair HIG-MCD

Processing pair HIG-MCK

Processing pair HIG-MRK

Processing pair HIG-MET

Processing pair HIG-MCHP

Processing pair HIG-MU

Processing pair HIG-MSFT

Processing pair HIG-MDLZ

Processing pair HIG-MPWR

Processing pair HIG-MCO

Processing pair HIG-MS

Processing pair HIG-MSI

Processing pair HIG-NDAQ

Processing pair HIG-NDSN

Processing pair HIG-NOC

Processing pair HIG-NVR

Processing pair HIG-NXPI
ADF test for HIG-NXPI failed with LinAlgError

Processing pair HIG-ORLY

Processing pair HIG-ODFL

Processing pair HIG-OMC

Processing pair HIG-OKE

Processing pair HIG-ORCL

Processing pair HIG-OTIS
ADF test for HIG-OTIS failed with LinAlgError

Processing pair HIG-PCAR

Processing pair HIG-PKG

Processing pair HIG-PANW
ADF test for HIG-PANW failed with LinAlgError

Processing pair HIG-PH

Processing pair HIG-PAYX

Processing pair HIG-PNR

Processing pair HIG-PEP

Processing pair HIG-PM

Processing pair HIG-PSX
ADF test for HIG-PSX failed with LinAlgError

Processing pair HIG-PFG

Processing pair HIG-PG

Processing pair HIG-PGR

Processing pair HIG-PRU

Processing pair HIG-PEG

Processing pair HIG-PTC

Processing pair HIG-PSA

Processing pair HIG-PHM

Processing pair HIG-PWR

Processing pair HIG-DGX

Processing pair HIG-RJF

Processing pair HIG-RTX

Processing pair HIG-REGN

Processing pair HIG-RF

Processing pair HIG-RSG

Processing pair HIG-ROL

Processing pair HIG-ROP

Processing pair HIG-ROST

Processing pair HIG-SPGI

Processing pair HIG-STX

Processing pair HIG-SRE

Processing pair HIG-SHW

Processing pair HIG-SNA

Processing pair HIG-SO

Processing pair HIG-STLD

Processing pair HIG-SYK

Processing pair HIG-SNPS

Processing pair HIG-TMUS

Processing pair HIG-TEL

Processing pair HIG-TXN

Processing pair HIG-TPL

Processing pair HIG-TXT

Processing pair HIG-TJX

Processing pair HIG-TSCO

Processing pair HIG-TT

Processing pair HIG-TDG

Processing pair HIG-TRV

Processing pair HIG-UNP

Processing pair HIG-URI

Processing pair HIG-UNH

Processing pair HIG-VLO

Processing pair HIG-VLTO
ADF test for HIG-VLTO failed with LinAlgError

Processing pair HIG-VRSK

Processing pair HIG-VRTX

Processing pair HIG-V

Processing pair HIG-VMC

Processing pair HIG-WRB

Processing pair HIG-GWW

Processing pair HIG-WAB

Processing pair HIG-WMT

Processing pair HIG-WM

Processing pair HIG-WELL

Processing pair HIG-WTW

Processing pair HIG-XYL
ADF test for HIG-XYL failed with LinAlgError

Processing pair HIG-YUM

Processing pair HAS-IFF

Processing pair HAS-LUV

Processing pair HAS-TSN

Processing pair HAS-VLTO
ADF test for HAS-VLTO failed with LinAlgError

Processing pair HCA-HSY
ADF test for HCA-HSY failed with LinAlgError

Processing pair HCA-HLT
ADF test for HCA-HLT failed with LinAlgError

Processing pair HCA-HOLX
ADF test for HCA-HOLX failed with LinAlgError

Processing pair HCA-HD
ADF test for HCA-HD failed with LinAlgError

Processing pair HCA-HON
ADF test for HCA-HON failed with LinAlgError

Processing pair HCA-HPQ
ADF test for HCA-HPQ failed with LinAlgError

Processing pair HCA-HUBB
ADF test for HCA-HUBB failed with LinAlgError

Processing pair HCA-IEX
ADF test for HCA-IEX failed with LinAlgError

Processing pair HCA-IDXX
ADF test for HCA-IDXX failed with LinAlgError

Processing pair HCA-ITW
ADF test for HCA-ITW failed with LinAlgError

Processing pair HCA-IR
ADF test for HCA-IR failed with LinAlgError

Processing pair HCA-ICE
ADF test for HCA-ICE failed with LinAlgError

Processing pair HCA-IPG
ADF test for HCA-IPG failed with LinAlgError

Processing pair HCA-INTU
ADF test for HCA-INTU failed with LinAlgError

Processing pair HCA-ISRG
ADF test for HCA-ISRG failed with LinAlgError

Processing pair HCA-IQV
ADF test for HCA-IQV failed with LinAlgError

Processing pair HCA-IRM
ADF test for HCA-IRM failed with LinAlgError

Processing pair HCA-JBHT
ADF test for HCA-JBHT failed with LinAlgError

Processing pair HCA-JBL
ADF test for HCA-JBL failed with LinAlgError

Processing pair HCA-J
ADF test for HCA-J failed with LinAlgError

Processing pair HCA-JCI
ADF test for HCA-JCI failed with LinAlgError

Processing pair HCA-JPM
ADF test for HCA-JPM failed with LinAlgError

Processing pair HCA-KDP
ADF test for HCA-KDP failed with LinAlgError

Processing pair HCA-KKR
ADF test for HCA-KKR failed with LinAlgError

Processing pair HCA-KLAC
ADF test for HCA-KLAC failed with LinAlgError

Processing pair HCA-KR
ADF test for HCA-KR failed with LinAlgError

Processing pair HCA-LH
ADF test for HCA-LH failed with LinAlgError

Processing pair HCA-LRCX
ADF test for HCA-LRCX failed with LinAlgError

Processing pair HCA-LDOS
ADF test for HCA-LDOS failed with LinAlgError

Processing pair HCA-LEN
ADF test for HCA-LEN failed with LinAlgError

Processing pair HCA-LII
ADF test for HCA-LII failed with LinAlgError

Processing pair HCA-LLY
ADF test for HCA-LLY failed with LinAlgError

Processing pair HCA-LIN
ADF test for HCA-LIN failed with LinAlgError

Processing pair HCA-LYV
ADF test for HCA-LYV failed with LinAlgError

Processing pair HCA-LMT
ADF test for HCA-LMT failed with LinAlgError

Processing pair HCA-L
ADF test for HCA-L failed with LinAlgError

Processing pair HCA-LOW
ADF test for HCA-LOW failed with LinAlgError

Processing pair HCA-MPC
ADF test for HCA-MPC failed with LinAlgError

Processing pair HCA-MAR
ADF test for HCA-MAR failed with LinAlgError

Processing pair HCA-MMC
ADF test for HCA-MMC failed with LinAlgError

Processing pair HCA-MLM
ADF test for HCA-MLM failed with LinAlgError

Processing pair HCA-MAS
ADF test for HCA-MAS failed with LinAlgError

Processing pair HCA-MA
ADF test for HCA-MA failed with LinAlgError

Processing pair HCA-MCD
ADF test for HCA-MCD failed with LinAlgError

Processing pair HCA-MRK
ADF test for HCA-MRK failed with LinAlgError

Processing pair HCA-MET
ADF test for HCA-MET failed with LinAlgError

Processing pair HCA-MTD
ADF test for HCA-MTD failed with LinAlgError

Processing pair HCA-MCHP
ADF test for HCA-MCHP failed with LinAlgError

Processing pair HCA-MU
ADF test for HCA-MU failed with LinAlgError

Processing pair HCA-MSFT
ADF test for HCA-MSFT failed with LinAlgError

Processing pair HCA-MOH
ADF test for HCA-MOH failed with LinAlgError

Processing pair HCA-MDLZ
ADF test for HCA-MDLZ failed with LinAlgError

Processing pair HCA-MPWR
ADF test for HCA-MPWR failed with LinAlgError

Processing pair HCA-MNST
ADF test for HCA-MNST failed with LinAlgError

Processing pair HCA-MCO
ADF test for HCA-MCO failed with LinAlgError

Processing pair HCA-MS
ADF test for HCA-MS failed with LinAlgError

Processing pair HCA-MSI
ADF test for HCA-MSI failed with LinAlgError

Processing pair HCA-MSCI
ADF test for HCA-MSCI failed with LinAlgError

Processing pair HCA-NDAQ
ADF test for HCA-NDAQ failed with LinAlgError

Processing pair HCA-NTAP
ADF test for HCA-NTAP failed with LinAlgError

Processing pair HCA-NDSN
ADF test for HCA-NDSN failed with LinAlgError

Processing pair HCA-NSC
ADF test for HCA-NSC failed with LinAlgError

Processing pair HCA-NOC
ADF test for HCA-NOC failed with LinAlgError

Processing pair HCA-NUE
ADF test for HCA-NUE failed with LinAlgError

Processing pair HCA-NVR
ADF test for HCA-NVR failed with LinAlgError

Processing pair HCA-NXPI
ADF test for HCA-NXPI failed with LinAlgError

Processing pair HCA-ORLY
ADF test for HCA-ORLY failed with LinAlgError

Processing pair HCA-ODFL
ADF test for HCA-ODFL failed with LinAlgError

Processing pair HCA-ON
ADF test for HCA-ON failed with LinAlgError

Processing pair HCA-OKE
ADF test for HCA-OKE failed with LinAlgError

Processing pair HCA-ORCL
ADF test for HCA-ORCL failed with LinAlgError

Processing pair HCA-OTIS
ADF test for HCA-OTIS failed with LinAlgError

Processing pair HCA-PCAR
ADF test for HCA-PCAR failed with LinAlgError

Processing pair HCA-PKG
ADF test for HCA-PKG failed with LinAlgError

Processing pair HCA-PANW
ADF test for HCA-PANW failed with LinAlgError

Processing pair HCA-PH
ADF test for HCA-PH failed with LinAlgError

Processing pair HCA-PAYX
ADF test for HCA-PAYX failed with LinAlgError

Processing pair HCA-PNR
ADF test for HCA-PNR failed with LinAlgError

Processing pair HCA-PEP
ADF test for HCA-PEP failed with LinAlgError

Processing pair HCA-PM
ADF test for HCA-PM failed with LinAlgError

Processing pair HCA-PFG
ADF test for HCA-PFG failed with LinAlgError

Processing pair HCA-PG
ADF test for HCA-PG failed with LinAlgError

Processing pair HCA-PGR
ADF test for HCA-PGR failed with LinAlgError

Processing pair HCA-PLD
ADF test for HCA-PLD failed with LinAlgError

Processing pair HCA-PEG
ADF test for HCA-PEG failed with LinAlgError

Processing pair HCA-PTC
ADF test for HCA-PTC failed with LinAlgError

Processing pair HCA-PSA
ADF test for HCA-PSA failed with LinAlgError

Processing pair HCA-PHM
ADF test for HCA-PHM failed with LinAlgError

Processing pair HCA-PWR
ADF test for HCA-PWR failed with LinAlgError

Processing pair HCA-QCOM
ADF test for HCA-QCOM failed with LinAlgError

Processing pair HCA-DGX
ADF test for HCA-DGX failed with LinAlgError

Processing pair HCA-RJF
ADF test for HCA-RJF failed with LinAlgError

Processing pair HCA-RTX
ADF test for HCA-RTX failed with LinAlgError

Processing pair HCA-REGN
ADF test for HCA-REGN failed with LinAlgError

Processing pair HCA-RF
ADF test for HCA-RF failed with LinAlgError

Processing pair HCA-RSG
ADF test for HCA-RSG failed with LinAlgError

Processing pair HCA-ROK
ADF test for HCA-ROK failed with LinAlgError

Processing pair HCA-ROL
ADF test for HCA-ROL failed with LinAlgError

Processing pair HCA-ROP
ADF test for HCA-ROP failed with LinAlgError

Processing pair HCA-ROST
ADF test for HCA-ROST failed with LinAlgError

Processing pair HCA-SPGI
ADF test for HCA-SPGI failed with LinAlgError

Processing pair HCA-CRM
ADF test for HCA-CRM failed with LinAlgError

Processing pair HCA-STX
ADF test for HCA-STX failed with LinAlgError

Processing pair HCA-SRE
ADF test for HCA-SRE failed with LinAlgError

Processing pair HCA-NOW
ADF test for HCA-NOW failed with LinAlgError

Processing pair HCA-SHW
ADF test for HCA-SHW failed with LinAlgError

Processing pair HCA-SNA
ADF test for HCA-SNA failed with LinAlgError

Processing pair HCA-SO
ADF test for HCA-SO failed with LinAlgError

Processing pair HCA-STLD
ADF test for HCA-STLD failed with LinAlgError

Processing pair HCA-STE
ADF test for HCA-STE failed with LinAlgError

Processing pair HCA-SYK
ADF test for HCA-SYK failed with LinAlgError

Processing pair HCA-SNPS
ADF test for HCA-SNPS failed with LinAlgError

Processing pair HCA-TMUS
ADF test for HCA-TMUS failed with LinAlgError

Processing pair HCA-TEL
ADF test for HCA-TEL failed with LinAlgError

Processing pair HCA-TDY
ADF test for HCA-TDY failed with LinAlgError

Processing pair HCA-TER
ADF test for HCA-TER failed with LinAlgError

Processing pair HCA-TXN
ADF test for HCA-TXN failed with LinAlgError

Processing pair HCA-TPL
ADF test for HCA-TPL failed with LinAlgError

Processing pair HCA-TXT
ADF test for HCA-TXT failed with LinAlgError

Processing pair HCA-TMO
ADF test for HCA-TMO failed with LinAlgError

Processing pair HCA-TJX
ADF test for HCA-TJX failed with LinAlgError

Processing pair HCA-TSCO
ADF test for HCA-TSCO failed with LinAlgError

Processing pair HCA-TT
ADF test for HCA-TT failed with LinAlgError

Processing pair HCA-TDG
ADF test for HCA-TDG failed with LinAlgError

Processing pair HCA-TRV
ADF test for HCA-TRV failed with LinAlgError

Processing pair HCA-TYL
ADF test for HCA-TYL failed with LinAlgError

Processing pair HCA-UNP
ADF test for HCA-UNP failed with LinAlgError

Processing pair HCA-URI
ADF test for HCA-URI failed with LinAlgError

Processing pair HCA-UNH
ADF test for HCA-UNH failed with LinAlgError

Processing pair HCA-VLO
ADF test for HCA-VLO failed with LinAlgError

Processing pair HCA-VLTO
ADF test for HCA-VLTO failed with LinAlgError

Processing pair HCA-VRSK
ADF test for HCA-VRSK failed with LinAlgError

Processing pair HCA-VRTX
ADF test for HCA-VRTX failed with LinAlgError

Processing pair HCA-V
ADF test for HCA-V failed with LinAlgError

Processing pair HCA-VMC
ADF test for HCA-VMC failed with LinAlgError

Processing pair HCA-WRB
ADF test for HCA-WRB failed with LinAlgError

Processing pair HCA-GWW
ADF test for HCA-GWW failed with LinAlgError

Processing pair HCA-WMT
ADF test for HCA-WMT failed with LinAlgError

Processing pair HCA-WM
ADF test for HCA-WM failed with LinAlgError

Processing pair HCA-WAT
ADF test for HCA-WAT failed with LinAlgError

Processing pair HCA-WELL
ADF test for HCA-WELL failed with LinAlgError

Processing pair HCA-WST
ADF test for HCA-WST failed with LinAlgError

Processing pair HCA-WTW
ADF test for HCA-WTW failed with LinAlgError

Processing pair HCA-XYL
ADF test for HCA-XYL failed with LinAlgError

Processing pair HCA-YUM
ADF test for HCA-YUM failed with LinAlgError

Processing pair HSIC-HRL

Processing pair HSIC-JNJ

Processing pair HSIC-KMB

Processing pair HSIC-MDT

Processing pair HSIC-NI

Processing pair HSIC-PPG

Processing pair HSIC-PPL

Processing pair HSIC-O

Processing pair HSIC-REG

Processing pair HSIC-SRE

Processing pair HSIC-SJM

Processing pair HSIC-TSN

Processing pair HSIC-UDR

Processing pair HSIC-ULTA

Processing pair HSIC-ZBH

Processing pair HSY-HOLX

Processing pair HSY-HD

Processing pair HSY-HON

Processing pair HSY-HUM

Processing pair HSY-IEX

Processing pair HSY-ITW

Processing pair HSY-PODD

Processing pair HSY-ICE

Processing pair HSY-IPG

Processing pair HSY-INTU

Processing pair HSY-JBHT

Processing pair HSY-J

Processing pair HSY-JNJ

Processing pair HSY-JCI

Processing pair HSY-KDP

Processing pair HSY-KEYS
ADF test for HSY-KEYS failed with LinAlgError

Processing pair HSY-LHX

Processing pair HSY-LH

Processing pair HSY-LIN

Processing pair HSY-LYV

Processing pair HSY-LKQ

Processing pair HSY-LMT

Processing pair HSY-LOW

Processing pair HSY-MMC

Processing pair HSY-MA

Processing pair HSY-MCD

Processing pair HSY-MRK

Processing pair HSY-MET

Processing pair HSY-MTD

Processing pair HSY-MCHP

Processing pair HSY-MSFT

Processing pair HSY-MAA

Processing pair HSY-MOH

Processing pair HSY-MDLZ

Processing pair HSY-MNST

Processing pair HSY-MCO

Processing pair HSY-MS

Processing pair HSY-MSI

Processing pair HSY-MSCI

Processing pair HSY-NDAQ

Processing pair HSY-NEE

Processing pair HSY-NDSN

Processing pair HSY-NSC

Processing pair HSY-NOC

Processing pair HSY-ORLY

Processing pair HSY-ODFL

Processing pair HSY-ON

Processing pair HSY-PAYX

Processing pair HSY-PEP

Processing pair HSY-POOL

Processing pair HSY-PFG

Processing pair HSY-PG

Processing pair HSY-PLD

Processing pair HSY-PEG

Processing pair HSY-PSA

Processing pair HSY-DGX

Processing pair HSY-RJF

Processing pair HSY-RSG

Processing pair HSY-RMD

Processing pair HSY-ROK

Processing pair HSY-ROL

Processing pair HSY-ROP

Processing pair HSY-SPGI

Processing pair HSY-SRE

Processing pair HSY-SHW

Processing pair HSY-SNA

Processing pair HSY-SO

Processing pair HSY-SBUX

Processing pair HSY-STE

Processing pair HSY-SYK

Processing pair HSY-SYY

Processing pair HSY-TMUS

Processing pair HSY-TEL

Processing pair HSY-TDY

Processing pair HSY-TXN

Processing pair HSY-TMO

Processing pair HSY-TJX

Processing pair HSY-TSCO

Processing pair HSY-TRV

Processing pair HSY-ULTA

Processing pair HSY-UNP

Processing pair HSY-UPS

Processing pair HSY-UNH

Processing pair HSY-VRSK

Processing pair HSY-VICI
ADF test for HSY-VICI failed with LinAlgError

Processing pair HSY-V

Processing pair HSY-WRB

Processing pair HSY-WM

Processing pair HSY-WAT

Processing pair HSY-WEC

Processing pair HSY-WST

Processing pair HSY-WTW

Processing pair HSY-XEL

Processing pair HSY-YUM

Processing pair HES-MPC
ADF test for HES-MPC failed with LinAlgError

Processing pair HES-MCK

Processing pair HES-NUE

Processing pair HES-PWR

Processing pair HES-STLD

Processing pair HPE-L
ADF test for HPE-L failed with LinAlgError

Processing pair HPE-MAR
ADF test for HPE-MAR failed with LinAlgError

Processing pair HPE-OKE
ADF test for HPE-OKE failed with LinAlgError

Processing pair HPE-PRU
ADF test for HPE-PRU failed with LinAlgError

Processing pair HLT-HD
ADF test for HLT-HD failed with LinAlgError

Processing pair HLT-HWM
ADF test for HLT-HWM failed with LinAlgError

Processing pair HLT-HPQ
ADF test for HLT-HPQ failed with LinAlgError

Processing pair HLT-HUBB
ADF test for HLT-HUBB failed with LinAlgError

Processing pair HLT-ITW
ADF test for HLT-ITW failed with LinAlgError

Processing pair HLT-IR
ADF test for HLT-IR failed with LinAlgError

Processing pair HLT-ICE
ADF test for HLT-ICE failed with LinAlgError

Processing pair HLT-INTU
ADF test for HLT-INTU failed with LinAlgError

Processing pair HLT-ISRG
ADF test for HLT-ISRG failed with LinAlgError

Processing pair HLT-IRM
ADF test for HLT-IRM failed with LinAlgError

Processing pair HLT-JBL
ADF test for HLT-JBL failed with LinAlgError

Processing pair HLT-J
ADF test for HLT-J failed with LinAlgError

Processing pair HLT-JPM
ADF test for HLT-JPM failed with LinAlgError

Processing pair HLT-KKR
ADF test for HLT-KKR failed with LinAlgError

Processing pair HLT-KLAC
ADF test for HLT-KLAC failed with LinAlgError

Processing pair HLT-LRCX
ADF test for HLT-LRCX failed with LinAlgError

Processing pair HLT-LDOS
ADF test for HLT-LDOS failed with LinAlgError

Processing pair HLT-LEN
ADF test for HLT-LEN failed with LinAlgError

Processing pair HLT-LII
ADF test for HLT-LII failed with LinAlgError

Processing pair HLT-LLY
ADF test for HLT-LLY failed with LinAlgError

Processing pair HLT-LIN
ADF test for HLT-LIN failed with LinAlgError

Processing pair HLT-LYV
ADF test for HLT-LYV failed with LinAlgError

Processing pair HLT-LMT
ADF test for HLT-LMT failed with LinAlgError

Processing pair HLT-L
ADF test for HLT-L failed with LinAlgError

Processing pair HLT-LOW
ADF test for HLT-LOW failed with LinAlgError

Processing pair HLT-MAR
ADF test for HLT-MAR failed with LinAlgError

Processing pair HLT-MMC
ADF test for HLT-MMC failed with LinAlgError

Processing pair HLT-MLM
ADF test for HLT-MLM failed with LinAlgError

Processing pair HLT-MAS
ADF test for HLT-MAS failed with LinAlgError

Processing pair HLT-MA
ADF test for HLT-MA failed with LinAlgError

Processing pair HLT-MCD
ADF test for HLT-MCD failed with LinAlgError

Processing pair HLT-MRK
ADF test for HLT-MRK failed with LinAlgError

Processing pair HLT-MET
ADF test for HLT-MET failed with LinAlgError

Processing pair HLT-MCHP
ADF test for HLT-MCHP failed with LinAlgError

Processing pair HLT-MU
ADF test for HLT-MU failed with LinAlgError

Processing pair HLT-MSFT
ADF test for HLT-MSFT failed with LinAlgError

Processing pair HLT-MOH
ADF test for HLT-MOH failed with LinAlgError

Processing pair HLT-MDLZ
ADF test for HLT-MDLZ failed with LinAlgError

Processing pair HLT-MPWR
ADF test for HLT-MPWR failed with LinAlgError

Processing pair HLT-MCO
ADF test for HLT-MCO failed with LinAlgError

Processing pair HLT-MS
ADF test for HLT-MS failed with LinAlgError

Processing pair HLT-MSI
ADF test for HLT-MSI failed with LinAlgError

Processing pair HLT-MSCI
ADF test for HLT-MSCI failed with LinAlgError

Processing pair HLT-NDAQ
ADF test for HLT-NDAQ failed with LinAlgError

Processing pair HLT-NTAP
ADF test for HLT-NTAP failed with LinAlgError

Processing pair HLT-NDSN
ADF test for HLT-NDSN failed with LinAlgError

Processing pair HLT-NUE
ADF test for HLT-NUE failed with LinAlgError

Processing pair HLT-NVR
ADF test for HLT-NVR failed with LinAlgError

Processing pair HLT-NXPI
ADF test for HLT-NXPI failed with LinAlgError

Processing pair HLT-ORLY
ADF test for HLT-ORLY failed with LinAlgError

Processing pair HLT-ODFL
ADF test for HLT-ODFL failed with LinAlgError

Processing pair HLT-OKE
ADF test for HLT-OKE failed with LinAlgError

Processing pair HLT-ORCL
ADF test for HLT-ORCL failed with LinAlgError

Processing pair HLT-OTIS
ADF test for HLT-OTIS failed with LinAlgError

Processing pair HLT-PCAR
ADF test for HLT-PCAR failed with LinAlgError

Processing pair HLT-PKG
ADF test for HLT-PKG failed with LinAlgError

Processing pair HLT-PANW
ADF test for HLT-PANW failed with LinAlgError

Processing pair HLT-PH
ADF test for HLT-PH failed with LinAlgError

Processing pair HLT-PAYX
ADF test for HLT-PAYX failed with LinAlgError

Processing pair HLT-PEP
ADF test for HLT-PEP failed with LinAlgError

Processing pair HLT-PFG
ADF test for HLT-PFG failed with LinAlgError

Processing pair HLT-PG
ADF test for HLT-PG failed with LinAlgError

Processing pair HLT-PGR
ADF test for HLT-PGR failed with LinAlgError

Processing pair HLT-PEG
ADF test for HLT-PEG failed with LinAlgError

Processing pair HLT-PTC
ADF test for HLT-PTC failed with LinAlgError

Processing pair HLT-PHM
ADF test for HLT-PHM failed with LinAlgError

Processing pair HLT-PWR
ADF test for HLT-PWR failed with LinAlgError

Processing pair HLT-QCOM
ADF test for HLT-QCOM failed with LinAlgError

Processing pair HLT-RJF
ADF test for HLT-RJF failed with LinAlgError

Processing pair HLT-RTX
ADF test for HLT-RTX failed with LinAlgError

Processing pair HLT-RSG
ADF test for HLT-RSG failed with LinAlgError

Processing pair HLT-ROL
ADF test for HLT-ROL failed with LinAlgError

Processing pair HLT-ROP
ADF test for HLT-ROP failed with LinAlgError

Processing pair HLT-SPGI
ADF test for HLT-SPGI failed with LinAlgError

Processing pair HLT-STX
ADF test for HLT-STX failed with LinAlgError

Processing pair HLT-SRE
ADF test for HLT-SRE failed with LinAlgError

Processing pair HLT-NOW
ADF test for HLT-NOW failed with LinAlgError

Processing pair HLT-SHW
ADF test for HLT-SHW failed with LinAlgError

Processing pair HLT-SNA
ADF test for HLT-SNA failed with LinAlgError

Processing pair HLT-SO
ADF test for HLT-SO failed with LinAlgError

Processing pair HLT-STLD
ADF test for HLT-STLD failed with LinAlgError

Processing pair HLT-STE
ADF test for HLT-STE failed with LinAlgError

Processing pair HLT-SYK
ADF test for HLT-SYK failed with LinAlgError

Processing pair HLT-SNPS
ADF test for HLT-SNPS failed with LinAlgError

Processing pair HLT-TMUS
ADF test for HLT-TMUS failed with LinAlgError

Processing pair HLT-TEL
ADF test for HLT-TEL failed with LinAlgError

Processing pair HLT-TXN
ADF test for HLT-TXN failed with LinAlgError

Processing pair HLT-TPL
ADF test for HLT-TPL failed with LinAlgError

Processing pair HLT-TJX
ADF test for HLT-TJX failed with LinAlgError

Processing pair HLT-TSCO
ADF test for HLT-TSCO failed with LinAlgError

Processing pair HLT-TT
ADF test for HLT-TT failed with LinAlgError

Processing pair HLT-TDG
ADF test for HLT-TDG failed with LinAlgError

Processing pair HLT-TRV
ADF test for HLT-TRV failed with LinAlgError

Processing pair HLT-UNP
ADF test for HLT-UNP failed with LinAlgError

Processing pair HLT-URI
ADF test for HLT-URI failed with LinAlgError

Processing pair HLT-UNH
ADF test for HLT-UNH failed with LinAlgError

Processing pair HLT-VRSK
ADF test for HLT-VRSK failed with LinAlgError

Processing pair HLT-VRTX
ADF test for HLT-VRTX failed with LinAlgError

Processing pair HLT-V
ADF test for HLT-V failed with LinAlgError

Processing pair HLT-VMC
ADF test for HLT-VMC failed with LinAlgError

Processing pair HLT-WRB
ADF test for HLT-WRB failed with LinAlgError

Processing pair HLT-GWW
ADF test for HLT-GWW failed with LinAlgError

Processing pair HLT-WMT
ADF test for HLT-WMT failed with LinAlgError

Processing pair HLT-WM
ADF test for HLT-WM failed with LinAlgError

Processing pair HLT-WELL
ADF test for HLT-WELL failed with LinAlgError

Processing pair HLT-WTW
ADF test for HLT-WTW failed with LinAlgError

Processing pair HLT-XYL
ADF test for HLT-XYL failed with LinAlgError

Processing pair HLT-YUM
ADF test for HLT-YUM failed with LinAlgError

Processing pair HOLX-HD

Processing pair HOLX-HON

Processing pair HOLX-HUM

Processing pair HOLX-IEX

Processing pair HOLX-IDXX

Processing pair HOLX-ITW

Processing pair HOLX-PODD

Processing pair HOLX-ICE

Processing pair HOLX-IPG

Processing pair HOLX-INTU

Processing pair HOLX-ISRG

Processing pair HOLX-IQV
ADF test for HOLX-IQV failed with LinAlgError

Processing pair HOLX-JBHT

Processing pair HOLX-JKHY

Processing pair HOLX-J

Processing pair HOLX-JNJ

Processing pair HOLX-JCI

Processing pair HOLX-JPM

Processing pair HOLX-KDP

Processing pair HOLX-KEYS
ADF test for HOLX-KEYS failed with LinAlgError

Processing pair HOLX-KMB

Processing pair HOLX-KR

Processing pair HOLX-LHX

Processing pair HOLX-LH

Processing pair HOLX-LDOS

Processing pair HOLX-LIN

Processing pair HOLX-LYV

Processing pair HOLX-LMT

Processing pair HOLX-LOW

Processing pair HOLX-LULU

Processing pair HOLX-MAR

Processing pair HOLX-MMC

Processing pair HOLX-MLM

Processing pair HOLX-MAS

Processing pair HOLX-MA

Processing pair HOLX-MKC

Processing pair HOLX-MCD

Processing pair HOLX-MRK

Processing pair HOLX-MET

Processing pair HOLX-MTD

Processing pair HOLX-MCHP

Processing pair HOLX-MSFT

Processing pair HOLX-MAA

Processing pair HOLX-MOH

Processing pair HOLX-MDLZ

Processing pair HOLX-MNST

Processing pair HOLX-MCO

Processing pair HOLX-MS

Processing pair HOLX-MSI

Processing pair HOLX-MSCI

Processing pair HOLX-NDAQ

Processing pair HOLX-NEE

Processing pair HOLX-NKE

Processing pair HOLX-NI

Processing pair HOLX-NDSN

Processing pair HOLX-NSC

Processing pair HOLX-NOC

Processing pair HOLX-NVR

Processing pair HOLX-NXPI
ADF test for HOLX-NXPI failed with LinAlgError

Processing pair HOLX-ORLY

Processing pair HOLX-ODFL

Processing pair HOLX-PKG

Processing pair HOLX-PAYX

Processing pair HOLX-PEP

Processing pair HOLX-PNC

Processing pair HOLX-POOL

Processing pair HOLX-PFG

Processing pair HOLX-PG

Processing pair HOLX-PLD

Processing pair HOLX-PEG

Processing pair HOLX-PTC

Processing pair HOLX-PSA

Processing pair HOLX-DGX

Processing pair HOLX-RJF

Processing pair HOLX-O

Processing pair HOLX-RF

Processing pair HOLX-RSG

Processing pair HOLX-RMD

Processing pair HOLX-RVTY

Processing pair HOLX-ROK

Processing pair HOLX-ROL

Processing pair HOLX-ROP

Processing pair HOLX-ROST

Processing pair HOLX-SPGI

Processing pair HOLX-CRM

Processing pair HOLX-SBAC

Processing pair HOLX-SRE

Processing pair HOLX-NOW
ADF test for HOLX-NOW failed with LinAlgError

Processing pair HOLX-SHW

Processing pair HOLX-SNA

Processing pair HOLX-SO

Processing pair HOLX-SBUX

Processing pair HOLX-STE

Processing pair HOLX-SYK

Processing pair HOLX-SYY

Processing pair HOLX-TMUS

Processing pair HOLX-TTWO

Processing pair HOLX-TEL

Processing pair HOLX-TDY

Processing pair HOLX-TER

Processing pair HOLX-TXN

Processing pair HOLX-TMO

Processing pair HOLX-TJX

Processing pair HOLX-TSCO

Processing pair HOLX-TRV

Processing pair HOLX-TYL

Processing pair HOLX-UDR

Processing pair HOLX-ULTA

Processing pair HOLX-UNP

Processing pair HOLX-UPS

Processing pair HOLX-UNH

Processing pair HOLX-VRSN

Processing pair HOLX-VRSK

Processing pair HOLX-VICI
ADF test for HOLX-VICI failed with LinAlgError

Processing pair HOLX-V

Processing pair HOLX-VMC

Processing pair HOLX-WRB

Processing pair HOLX-WMT

Processing pair HOLX-WM

Processing pair HOLX-WAT

Processing pair HOLX-WEC

Processing pair HOLX-WST

Processing pair HOLX-WTW

Processing pair HOLX-XEL

Processing pair HOLX-XYL
ADF test for HOLX-XYL failed with LinAlgError

Processing pair HOLX-YUM

Processing pair HOLX-ZTS
ADF test for HOLX-ZTS failed with LinAlgError

Processing pair HD-HON

Processing pair HD-HPQ

Processing pair HD-HUM

Processing pair HD-HBAN

Processing pair HD-IEX

Processing pair HD-IDXX

Processing pair HD-ITW

Processing pair HD-PODD

Processing pair HD-ICE

Processing pair HD-IPG

Processing pair HD-INTU

Processing pair HD-ISRG

Processing pair HD-INVH
ADF test for HD-INVH failed with LinAlgError

Processing pair HD-IQV
ADF test for HD-IQV failed with LinAlgError

Processing pair HD-JBHT

Processing pair HD-JKHY

Processing pair HD-J

Processing pair HD-JNJ

Processing pair HD-JCI

Processing pair HD-JPM

Processing pair HD-KDP

Processing pair HD-KEYS
ADF test for HD-KEYS failed with LinAlgError

Processing pair HD-KMB

Processing pair HD-KLAC

Processing pair HD-KR

Processing pair HD-LHX

Processing pair HD-LH

Processing pair HD-LRCX

Processing pair HD-LDOS

Processing pair HD-LEN

Processing pair HD-LII

Processing pair HD-LIN

Processing pair HD-LYV

Processing pair HD-LMT

Processing pair HD-LOW

Processing pair HD-LULU

Processing pair HD-MAR

Processing pair HD-MMC

Processing pair HD-MLM

Processing pair HD-MAS

Processing pair HD-MA

Processing pair HD-MKC

Processing pair HD-MCD

Processing pair HD-MRK

Processing pair HD-MET

Processing pair HD-MTD

Processing pair HD-MCHP

Processing pair HD-MU

Processing pair HD-MSFT

Processing pair HD-MAA

Processing pair HD-MOH

Processing pair HD-MDLZ

Processing pair HD-MPWR

Processing pair HD-MNST

Processing pair HD-MCO

Processing pair HD-MS

Processing pair HD-MSI

Processing pair HD-MSCI

Processing pair HD-NDAQ

Processing pair HD-NFLX

Processing pair HD-NEE

Processing pair HD-NKE

Processing pair HD-NI

Processing pair HD-NDSN

Processing pair HD-NSC

Processing pair HD-NOC

Processing pair HD-NVR

Processing pair HD-NXPI
ADF test for HD-NXPI failed with LinAlgError

Processing pair HD-ORLY

Processing pair HD-ODFL

Processing pair HD-ORCL

Processing pair HD-OTIS
ADF test for HD-OTIS failed with LinAlgError

Processing pair HD-PKG

Processing pair HD-PH

Processing pair HD-PAYX

Processing pair HD-PEP

Processing pair HD-PNC

Processing pair HD-POOL

Processing pair HD-PFG

Processing pair HD-PG

Processing pair HD-PGR

Processing pair HD-PLD

Processing pair HD-PEG

Processing pair HD-PTC

Processing pair HD-PSA

Processing pair HD-QCOM

Processing pair HD-DGX

Processing pair HD-RJF

Processing pair HD-RTX

Processing pair HD-O

Processing pair HD-RF

Processing pair HD-RSG

Processing pair HD-RMD

Processing pair HD-RVTY

Processing pair HD-ROK

Processing pair HD-ROL

Processing pair HD-ROP

Processing pair HD-ROST

Processing pair HD-SPGI

Processing pair HD-CRM

Processing pair HD-SBAC

Processing pair HD-STX

Processing pair HD-SRE

Processing pair HD-NOW
ADF test for HD-NOW failed with LinAlgError

Processing pair HD-SHW

Processing pair HD-SNA

Processing pair HD-SO

Processing pair HD-SBUX

Processing pair HD-STE

Processing pair HD-SYK

Processing pair HD-SNPS

Processing pair HD-SYY

Processing pair HD-TMUS

Processing pair HD-TTWO

Processing pair HD-TGT

Processing pair HD-TEL

Processing pair HD-TDY

Processing pair HD-TER

Processing pair HD-TXN

Processing pair HD-TMO

Processing pair HD-TJX

Processing pair HD-TSCO

Processing pair HD-TT

Processing pair HD-TDG

Processing pair HD-TRV

Processing pair HD-TYL

Processing pair HD-UDR

Processing pair HD-ULTA

Processing pair HD-UNP

Processing pair HD-UPS

Processing pair HD-UNH

Processing pair HD-VRSN

Processing pair HD-VRSK

Processing pair HD-VRTX

Processing pair HD-V

Processing pair HD-VMC

Processing pair HD-WRB

Processing pair HD-WMT

Processing pair HD-WM

Processing pair HD-WAT

Processing pair HD-WEC

Processing pair HD-WST

Processing pair HD-WTW

Processing pair HD-WDAY
ADF test for HD-WDAY failed with LinAlgError

Processing pair HD-XEL

Processing pair HD-XYL
ADF test for HD-XYL failed with LinAlgError

Processing pair HD-YUM

Processing pair HD-ZTS
ADF test for HD-ZTS failed with LinAlgError

Processing pair HON-HUM

Processing pair HON-HBAN

Processing pair HON-IEX

Processing pair HON-IDXX

Processing pair HON-ITW

Processing pair HON-PODD

Processing pair HON-ICE

Processing pair HON-IPG

Processing pair HON-INTU

Processing pair HON-ISRG

Processing pair HON-IQV
ADF test for HON-IQV failed with LinAlgError

Processing pair HON-JBHT

Processing pair HON-JKHY

Processing pair HON-J

Processing pair HON-JNJ

Processing pair HON-JCI

Processing pair HON-JPM

Processing pair HON-KDP

Processing pair HON-KEYS
ADF test for HON-KEYS failed with LinAlgError

Processing pair HON-KMB

Processing pair HON-LHX

Processing pair HON-LH

Processing pair HON-LDOS

Processing pair HON-LII

Processing pair HON-LYV

Processing pair HON-LMT

Processing pair HON-LOW

Processing pair HON-LULU

Processing pair HON-MAR

Processing pair HON-MMC

Processing pair HON-MLM

Processing pair HON-MAS

Processing pair HON-MA

Processing pair HON-MKC

Processing pair HON-MCD

Processing pair HON-MDT

Processing pair HON-MRK

Processing pair HON-MET

Processing pair HON-MTD

Processing pair HON-MGM

Processing pair HON-MCHP

Processing pair HON-MU

Processing pair HON-MSFT

Processing pair HON-MAA

Processing pair HON-MOH

Processing pair HON-MDLZ

Processing pair HON-MNST

Processing pair HON-MCO

Processing pair HON-MS

Processing pair HON-MSCI

Processing pair HON-NDAQ

Processing pair HON-NFLX

Processing pair HON-NEE

Processing pair HON-NKE

Processing pair HON-NI

Processing pair HON-NDSN

Processing pair HON-NSC

Processing pair HON-NTRS

Processing pair HON-NOC

Processing pair HON-NVR

Processing pair HON-NXPI
ADF test for HON-NXPI failed with LinAlgError

Processing pair HON-PKG

Processing pair HON-PAYX

Processing pair HON-PEP

Processing pair HON-PNW

Processing pair HON-PNC

Processing pair HON-POOL

Processing pair HON-PPG

Processing pair HON-PFG

Processing pair HON-PG

Processing pair HON-PLD

Processing pair HON-PEG

Processing pair HON-PTC

Processing pair HON-PSA

Processing pair HON-DGX

Processing pair HON-RJF

Processing pair HON-RTX

Processing pair HON-O

Processing pair HON-RF

Processing pair HON-RSG

Processing pair HON-RMD

Processing pair HON-RVTY

Processing pair HON-ROK

Processing pair HON-ROL

Processing pair HON-ROP

Processing pair HON-ROST

Processing pair HON-SPGI

Processing pair HON-CRM

Processing pair HON-SBAC

Processing pair HON-STX

Processing pair HON-SRE

Processing pair HON-NOW
ADF test for HON-NOW failed with LinAlgError

Processing pair HON-SHW

Processing pair HON-SNA

Processing pair HON-SO

Processing pair HON-SBUX

Processing pair HON-STE

Processing pair HON-SYK

Processing pair HON-SYY

Processing pair HON-TMUS

Processing pair HON-TROW

Processing pair HON-TTWO

Processing pair HON-TEL

Processing pair HON-TDY

Processing pair HON-TER

Processing pair HON-TXN

Processing pair HON-TMO

Processing pair HON-TJX

Processing pair HON-TRV

Processing pair HON-TYL

Processing pair HON-UDR

Processing pair HON-ULTA

Processing pair HON-UNP

Processing pair HON-UPS

Processing pair HON-UNH

Processing pair HON-VRSN

Processing pair HON-VRSK

Processing pair HON-V

Processing pair HON-VMC

Processing pair HON-WRB

Processing pair HON-WMT

Processing pair HON-WM

Processing pair HON-WAT

Processing pair HON-WEC

Processing pair HON-WST

Processing pair HON-WTW

Processing pair HON-WDAY
ADF test for HON-WDAY failed with LinAlgError

Processing pair HON-XEL

Processing pair HON-XYL
ADF test for HON-XYL failed with LinAlgError

Processing pair HON-YUM

Processing pair HON-ZBRA

Processing pair HON-ZTS
ADF test for HON-ZTS failed with LinAlgError

Processing pair HRL-JKHY

Processing pair HRL-JNJ

Processing pair HRL-KMB

Processing pair HRL-MKC

Processing pair HRL-MDT

Processing pair HRL-PFE

Processing pair HRL-O

Processing pair HRL-SBAC

Processing pair HRL-TFX

Processing pair HRL-TSN

Processing pair HRL-VRSN

Processing pair HRL-VZ

Processing pair HRL-WEC

Processing pair HRL-XEL

Processing pair HRL-ZBH

Processing pair HWM-HUBB
ADF test for HWM-HUBB failed with LinAlgError

Processing pair HWM-IBM
ADF test for HWM-IBM failed with LinAlgError

Processing pair HWM-IR
ADF test for HWM-IR failed with LinAlgError

Processing pair HWM-IRM
ADF test for HWM-IRM failed with LinAlgError

Processing pair HWM-JPM
ADF test for HWM-JPM failed with LinAlgError

Processing pair HWM-KMI
ADF test for HWM-KMI failed with LinAlgError

Processing pair HWM-KKR
ADF test for HWM-KKR failed with LinAlgError

Processing pair HWM-LEN
ADF test for HWM-LEN failed with LinAlgError

Processing pair HWM-LII
ADF test for HWM-LII failed with LinAlgError

Processing pair HWM-LLY
ADF test for HWM-LLY failed with LinAlgError

Processing pair HWM-L
ADF test for HWM-L failed with LinAlgError

Processing pair HWM-MAR
ADF test for HWM-MAR failed with LinAlgError

Processing pair HWM-MSI
ADF test for HWM-MSI failed with LinAlgError

Processing pair HWM-NVDA
ADF test for HWM-NVDA failed with LinAlgError

Processing pair HWM-NVR
ADF test for HWM-NVR failed with LinAlgError

Processing pair HWM-OKE
ADF test for HWM-OKE failed with LinAlgError

Processing pair HWM-ORCL
ADF test for HWM-ORCL failed with LinAlgError

Processing pair HWM-PKG
ADF test for HWM-PKG failed with LinAlgError

Processing pair HWM-PANW
ADF test for HWM-PANW failed with LinAlgError

Processing pair HWM-PH
ADF test for HWM-PH failed with LinAlgError

Processing pair HWM-PGR
ADF test for HWM-PGR failed with LinAlgError

Processing pair HWM-PHM
ADF test for HWM-PHM failed with LinAlgError

Processing pair HWM-PWR
ADF test for HWM-PWR failed with LinAlgError

Processing pair HWM-TRGP
ADF test for HWM-TRGP failed with LinAlgError

Processing pair HWM-TT
ADF test for HWM-TT failed with LinAlgError

Processing pair HWM-TDG
ADF test for HWM-TDG failed with LinAlgError

Processing pair HWM-TRV
ADF test for HWM-TRV failed with LinAlgError

Processing pair HWM-URI
ADF test for HWM-URI failed with LinAlgError

Processing pair HWM-VLTO
ADF test for HWM-VLTO failed with LinAlgError

Processing pair HWM-VST
ADF test for HWM-VST failed with LinAlgError

Processing pair HWM-GWW
ADF test for HWM-GWW failed with LinAlgError

Processing pair HWM-WAB
ADF test for HWM-WAB failed with LinAlgError

Processing pair HWM-WMB
ADF test for HWM-WMB failed with LinAlgError

Processing pair HPQ-ITW

Processing pair HPQ-ICE

Processing pair HPQ-INTU

Processing pair HPQ-ISRG

Processing pair HPQ-IQV
ADF test for HPQ-IQV failed with LinAlgError

Processing pair HPQ-J

Processing pair HPQ-JPM

Processing pair HPQ-LH

Processing pair HPQ-LIN

Processing pair HPQ-LYV

Processing pair HPQ-LOW

Processing pair HPQ-MMC

Processing pair HPQ-MLM

Processing pair HPQ-MET

Processing pair HPQ-MTD

Processing pair HPQ-MCHP

Processing pair HPQ-MU

Processing pair HPQ-MSFT

Processing pair HPQ-MOH

Processing pair HPQ-MPWR

Processing pair HPQ-MCO

Processing pair HPQ-MS

Processing pair HPQ-MSCI

Processing pair HPQ-NDAQ

Processing pair HPQ-NTAP

Processing pair HPQ-NDSN

Processing pair HPQ-NSC

Processing pair HPQ-NXPI
ADF test for HPQ-NXPI failed with LinAlgError

Processing pair HPQ-ODFL

Processing pair HPQ-PKG

Processing pair HPQ-PAYX

Processing pair HPQ-PLD

Processing pair HPQ-PEG

Processing pair HPQ-PTC

Processing pair HPQ-DGX

Processing pair HPQ-RJF

Processing pair HPQ-RF

Processing pair HPQ-RSG

Processing pair HPQ-SPGI

Processing pair HPQ-NOW
ADF test for HPQ-NOW failed with LinAlgError

Processing pair HPQ-SHW

Processing pair HPQ-STE

Processing pair HPQ-SYK

Processing pair HPQ-TMUS

Processing pair HPQ-TEL

Processing pair HPQ-TER

Processing pair HPQ-TXN

Processing pair HPQ-TMO

Processing pair HPQ-UNP

Processing pair HPQ-UNH

Processing pair HPQ-WRB

Processing pair HPQ-WM

Processing pair HPQ-WAT

Processing pair HPQ-XYL
ADF test for HPQ-XYL failed with LinAlgError

Processing pair HPQ-ZTS
ADF test for HPQ-ZTS failed with LinAlgError

Processing pair HUBB-IR
ADF test for HUBB-IR failed with LinAlgError

Processing pair HUBB-INTU

Processing pair HUBB-ISRG

Processing pair HUBB-IRM

Processing pair HUBB-JBL

Processing pair HUBB-JPM

Processing pair HUBB-KKR
ADF test for HUBB-KKR failed with LinAlgError

Processing pair HUBB-KLAC

Processing pair HUBB-LRCX

Processing pair HUBB-LEN

Processing pair HUBB-LII

Processing pair HUBB-LLY

Processing pair HUBB-LIN

Processing pair HUBB-L

Processing pair HUBB-LOW

Processing pair HUBB-MPC
ADF test for HUBB-MPC failed with LinAlgError

Processing pair HUBB-MAR

Processing pair HUBB-MMC

Processing pair HUBB-MLM

Processing pair HUBB-MCK

Processing pair HUBB-MRK

Processing pair HUBB-MET

Processing pair HUBB-MSFT

Processing pair HUBB-MPWR

Processing pair HUBB-MCO

Processing pair HUBB-MS

Processing pair HUBB-MSI

Processing pair HUBB-NUE

Processing pair HUBB-NVDA

Processing pair HUBB-NVR

Processing pair HUBB-NXPI
ADF test for HUBB-NXPI failed with LinAlgError

Processing pair HUBB-ORLY

Processing pair HUBB-ODFL

Processing pair HUBB-ON

Processing pair HUBB-OKE

Processing pair HUBB-ORCL

Processing pair HUBB-PCAR

Processing pair HUBB-PKG

Processing pair HUBB-PANW
ADF test for HUBB-PANW failed with LinAlgError

Processing pair HUBB-PH

Processing pair HUBB-PAYX

Processing pair HUBB-PNR

Processing pair HUBB-PG

Processing pair HUBB-PGR

Processing pair HUBB-PTC

Processing pair HUBB-PHM

Processing pair HUBB-PWR

Processing pair HUBB-RJF

Processing pair HUBB-RSG

Processing pair HUBB-SNA

Processing pair HUBB-SO

Processing pair HUBB-STLD

Processing pair HUBB-SYK

Processing pair HUBB-SNPS

Processing pair HUBB-TMUS

Processing pair HUBB-TPL

Processing pair HUBB-TJX

Processing pair HUBB-TSCO

Processing pair HUBB-TT

Processing pair HUBB-TDG

Processing pair HUBB-TRV

Processing pair HUBB-URI

Processing pair HUBB-VLO

Processing pair HUBB-VRSK

Processing pair HUBB-VRTX

Processing pair HUBB-VMC

Processing pair HUBB-WRB

Processing pair HUBB-GWW

Processing pair HUBB-WMT

Processing pair HUBB-WM

Processing pair HUM-IEX

Processing pair HUM-IDXX

Processing pair HUM-ITW

Processing pair HUM-PODD

Processing pair HUM-JBHT

Processing pair HUM-JKHY

Processing pair HUM-JNJ

Processing pair HUM-KDP

Processing pair HUM-LHX

Processing pair HUM-LH

Processing pair HUM-LMT

Processing pair HUM-MA

Processing pair HUM-MKC

Processing pair HUM-MCD

Processing pair HUM-MTD

Processing pair HUM-MCHP

Processing pair HUM-MAA

Processing pair HUM-MOH

Processing pair HUM-MDLZ

Processing pair HUM-MNST

Processing pair HUM-NDAQ

Processing pair HUM-NEE

Processing pair HUM-NKE

Processing pair HUM-NDSN

Processing pair HUM-NSC

Processing pair HUM-NOC

Processing pair HUM-PAYX

Processing pair HUM-PEP

Processing pair HUM-PFE

Processing pair HUM-POOL

Processing pair HUM-PLD

Processing pair HUM-DGX

Processing pair HUM-O

Processing pair HUM-RMD

Processing pair HUM-RVTY

Processing pair HUM-ROK

Processing pair HUM-ROL

Processing pair HUM-ROP

Processing pair HUM-SPGI

Processing pair HUM-SBAC

Processing pair HUM-SRE

Processing pair HUM-SBUX

Processing pair HUM-STE

Processing pair HUM-SYY

Processing pair HUM-TTWO

Processing pair HUM-TEL

Processing pair HUM-TDY

Processing pair HUM-TXN

Processing pair HUM-TMO

Processing pair HUM-ULTA

Processing pair HUM-UNP

Processing pair HUM-UPS

Processing pair HUM-UNH

Processing pair HUM-VRSN

Processing pair HUM-V

Processing pair HUM-WAT

Processing pair HUM-WEC

Processing pair HUM-XEL

Processing pair HUM-YUM

Processing pair HUM-ZTS
ADF test for HUM-ZTS failed with LinAlgError

Processing pair HBAN-HII
ADF test for HBAN-HII failed with LinAlgError

Processing pair HBAN-IEX

Processing pair HBAN-ICE

Processing pair HBAN-JNJ

Processing pair HBAN-JPM

Processing pair HBAN-KEY

Processing pair HBAN-LHX

Processing pair HBAN-LH

Processing pair HBAN-LYV

Processing pair HBAN-LMT

Processing pair HBAN-LYB
ADF test for HBAN-LYB failed with LinAlgError

Processing pair HBAN-MTB

Processing pair HBAN-MAR

Processing pair HBAN-MAS

Processing pair HBAN-MGM

Processing pair HBAN-NI

Processing pair HBAN-NSC

Processing pair HBAN-NTRS

Processing pair HBAN-NOC

Processing pair HBAN-PKG

Processing pair HBAN-PNC

Processing pair HBAN-PPG

Processing pair HBAN-PFG

Processing pair HBAN-PRU

Processing pair HBAN-PEG

Processing pair HBAN-DGX

Processing pair HBAN-RTX

Processing pair HBAN-RF

Processing pair HBAN-ROST

Processing pair HBAN-SRE

Processing pair HBAN-STT

Processing pair HBAN-SYY

Processing pair HBAN-TEL

Processing pair HBAN-TXN

Processing pair HBAN-TXT

Processing pair HBAN-TRV

Processing pair HBAN-TFC

Processing pair HBAN-USB

Processing pair HBAN-UDR

Processing pair HBAN-UNP

Processing pair HBAN-WAT

Processing pair HBAN-WY

Processing pair HII-JNJ
ADF test for HII-JNJ failed with LinAlgError

Processing pair HII-LMT
ADF test for HII-LMT failed with LinAlgError

Processing pair HII-NI
ADF test for HII-NI failed with LinAlgError

Processing pair HII-NOC
ADF test for HII-NOC failed with LinAlgError

Processing pair HII-PNW
ADF test for HII-PNW failed with LinAlgError

Processing pair HII-ROST
ADF test for HII-ROST failed with LinAlgError

Processing pair HII-SYY
ADF test for HII-SYY failed with LinAlgError

Processing pair IBM-IR
ADF test for IBM-IR failed with LinAlgError

Processing pair IEX-IDXX

Processing pair IEX-ITW

Processing pair IEX-PODD

Processing pair IEX-ICE

Processing pair IEX-IPG

Processing pair IEX-INTU

Processing pair IEX-ISRG

Processing pair IEX-IQV
ADF test for IEX-IQV failed with LinAlgError

Processing pair IEX-JBHT

Processing pair IEX-JKHY

Processing pair IEX-J

Processing pair IEX-JNJ

Processing pair IEX-JCI

Processing pair IEX-JPM

Processing pair IEX-KDP

Processing pair IEX-KEYS
ADF test for IEX-KEYS failed with LinAlgError

Processing pair IEX-KMB

Processing pair IEX-LHX

Processing pair IEX-LH

Processing pair IEX-LDOS

Processing pair IEX-LIN

Processing pair IEX-LYV

Processing pair IEX-LMT

Processing pair IEX-LOW

Processing pair IEX-LULU

Processing pair IEX-MAR

Processing pair IEX-MMC

Processing pair IEX-MLM

Processing pair IEX-MAS

Processing pair IEX-MA

Processing pair IEX-MKC

Processing pair IEX-MCD

Processing pair IEX-MRK

Processing pair IEX-MET

Processing pair IEX-MTD

Processing pair IEX-MGM

Processing pair IEX-MCHP

Processing pair IEX-MU

Processing pair IEX-MSFT

Processing pair IEX-MAA

Processing pair IEX-MOH

Processing pair IEX-MDLZ

Processing pair IEX-MNST

Processing pair IEX-MCO

Processing pair IEX-MS

Processing pair IEX-MSI

Processing pair IEX-MSCI

Processing pair IEX-NDAQ

Processing pair IEX-NFLX

Processing pair IEX-NEE

Processing pair IEX-NKE

Processing pair IEX-NI

Processing pair IEX-NDSN

Processing pair IEX-NSC

Processing pair IEX-NOC

Processing pair IEX-NVR

Processing pair IEX-NXPI
ADF test for IEX-NXPI failed with LinAlgError

Processing pair IEX-ORLY

Processing pair IEX-ODFL

Processing pair IEX-PKG

Processing pair IEX-PAYX

Processing pair IEX-PEP

Processing pair IEX-PNC

Processing pair IEX-POOL

Processing pair IEX-PPG

Processing pair IEX-PFG

Processing pair IEX-PG

Processing pair IEX-PLD

Processing pair IEX-PEG

Processing pair IEX-PTC

Processing pair IEX-PSA

Processing pair IEX-DGX

Processing pair IEX-RJF

Processing pair IEX-RTX

Processing pair IEX-O

Processing pair IEX-RF

Processing pair IEX-RSG

Processing pair IEX-RMD

Processing pair IEX-RVTY

Processing pair IEX-ROK

Processing pair IEX-ROL

Processing pair IEX-ROP

Processing pair IEX-ROST

Processing pair IEX-SPGI

Processing pair IEX-CRM

Processing pair IEX-SBAC

Processing pair IEX-SRE

Processing pair IEX-NOW
ADF test for IEX-NOW failed with LinAlgError

Processing pair IEX-SHW

Processing pair IEX-SNA

Processing pair IEX-SO

Processing pair IEX-SBUX

Processing pair IEX-STE

Processing pair IEX-SYK

Processing pair IEX-SYY

Processing pair IEX-TMUS

Processing pair IEX-TROW

Processing pair IEX-TTWO

Processing pair IEX-TEL

Processing pair IEX-TDY

Processing pair IEX-TER

Processing pair IEX-TXN

Processing pair IEX-TMO

Processing pair IEX-TJX

Processing pair IEX-TSCO

Processing pair IEX-TRV

Processing pair IEX-TYL

Processing pair IEX-UDR

Processing pair IEX-ULTA

Processing pair IEX-UNP

Processing pair IEX-UPS

Processing pair IEX-UNH

Processing pair IEX-VRSN

Processing pair IEX-VRSK

Processing pair IEX-VICI
ADF test for IEX-VICI failed with LinAlgError

Processing pair IEX-V

Processing pair IEX-VMC

Processing pair IEX-WRB

Processing pair IEX-WMT

Processing pair IEX-WM

Processing pair IEX-WAT

Processing pair IEX-WEC

Processing pair IEX-WST

Processing pair IEX-WTW

Processing pair IEX-WDAY
ADF test for IEX-WDAY failed with LinAlgError

Processing pair IEX-XEL

Processing pair IEX-XYL
ADF test for IEX-XYL failed with LinAlgError

Processing pair IEX-YUM

Processing pair IEX-ZTS
ADF test for IEX-ZTS failed with LinAlgError

Processing pair IDXX-ITW

Processing pair IDXX-PODD

Processing pair IDXX-ICE

Processing pair IDXX-IPG

Processing pair IDXX-INTU

Processing pair IDXX-ISRG

Processing pair IDXX-IQV
ADF test for IDXX-IQV failed with LinAlgError

Processing pair IDXX-JBHT

Processing pair IDXX-JKHY

Processing pair IDXX-J

Processing pair IDXX-JNJ

Processing pair IDXX-JCI

Processing pair IDXX-JPM

Processing pair IDXX-KDP

Processing pair IDXX-KEYS
ADF test for IDXX-KEYS failed with LinAlgError

Processing pair IDXX-LHX

Processing pair IDXX-LH

Processing pair IDXX-LRCX

Processing pair IDXX-LIN

Processing pair IDXX-LYV

Processing pair IDXX-LOW

Processing pair IDXX-LULU

Processing pair IDXX-MMC

Processing pair IDXX-MAS

Processing pair IDXX-MA

Processing pair IDXX-MKC

Processing pair IDXX-MCD

Processing pair IDXX-MTD

Processing pair IDXX-MCHP

Processing pair IDXX-MU

Processing pair IDXX-MSFT

Processing pair IDXX-MAA

Processing pair IDXX-MOH

Processing pair IDXX-MDLZ

Processing pair IDXX-MNST

Processing pair IDXX-MCO

Processing pair IDXX-MS

Processing pair IDXX-MSCI

Processing pair IDXX-NDAQ

Processing pair IDXX-NFLX

Processing pair IDXX-NEE

Processing pair IDXX-NKE

Processing pair IDXX-NDSN

Processing pair IDXX-NSC

Processing pair IDXX-NVR

Processing pair IDXX-NXPI
ADF test for IDXX-NXPI failed with LinAlgError

Processing pair IDXX-ODFL

Processing pair IDXX-PAYX

Processing pair IDXX-PEP

Processing pair IDXX-PNC

Processing pair IDXX-POOL

Processing pair IDXX-PG

Processing pair IDXX-PLD

Processing pair IDXX-PEG

Processing pair IDXX-PTC

Processing pair IDXX-QCOM

Processing pair IDXX-DGX

Processing pair IDXX-RMD

Processing pair IDXX-RVTY

Processing pair IDXX-ROK

Processing pair IDXX-ROL

Processing pair IDXX-ROP

Processing pair IDXX-ROST

Processing pair IDXX-SPGI

Processing pair IDXX-CRM

Processing pair IDXX-SBAC

Processing pair IDXX-NOW
ADF test for IDXX-NOW failed with LinAlgError

Processing pair IDXX-SHW

Processing pair IDXX-SBUX

Processing pair IDXX-STE

Processing pair IDXX-SYK

Processing pair IDXX-SYY

Processing pair IDXX-TMUS

Processing pair IDXX-TROW

Processing pair IDXX-TTWO

Processing pair IDXX-TGT

Processing pair IDXX-TEL

Processing pair IDXX-TDY

Processing pair IDXX-TER

Processing pair IDXX-TXN

Processing pair IDXX-TMO

Processing pair IDXX-TRMB

Processing pair IDXX-TYL

Processing pair IDXX-UNP

Processing pair IDXX-UPS

Processing pair IDXX-UNH

Processing pair IDXX-VRSN

Processing pair IDXX-VRSK

Processing pair IDXX-V

Processing pair IDXX-WM

Processing pair IDXX-WAT

Processing pair IDXX-WEC

Processing pair IDXX-WST

Processing pair IDXX-WTW

Processing pair IDXX-WDAY
ADF test for IDXX-WDAY failed with LinAlgError

Processing pair IDXX-XEL

Processing pair IDXX-XYL
ADF test for IDXX-XYL failed with LinAlgError

Processing pair IDXX-YUM

Processing pair IDXX-ZBRA

Processing pair IDXX-ZTS
ADF test for IDXX-ZTS failed with LinAlgError

Processing pair ITW-IR
ADF test for ITW-IR failed with LinAlgError

Processing pair ITW-PODD

Processing pair ITW-ICE

Processing pair ITW-IPG

Processing pair ITW-INTU

Processing pair ITW-ISRG

Processing pair ITW-IQV
ADF test for ITW-IQV failed with LinAlgError

Processing pair ITW-JBHT

Processing pair ITW-JKHY

Processing pair ITW-J

Processing pair ITW-JNJ

Processing pair ITW-JCI

Processing pair ITW-JPM

Processing pair ITW-KDP

Processing pair ITW-KEYS
ADF test for ITW-KEYS failed with LinAlgError

Processing pair ITW-KMB

Processing pair ITW-LHX

Processing pair ITW-LH

Processing pair ITW-LRCX

Processing pair ITW-LDOS

Processing pair ITW-LEN

Processing pair ITW-LII

Processing pair ITW-LIN

Processing pair ITW-LYV

Processing pair ITW-LMT

Processing pair ITW-LOW

Processing pair ITW-LULU

Processing pair ITW-MAR

Processing pair ITW-MMC

Processing pair ITW-MLM

Processing pair ITW-MAS

Processing pair ITW-MA

Processing pair ITW-MKC

Processing pair ITW-MCD

Processing pair ITW-MRK

Processing pair ITW-MET

Processing pair ITW-MTD

Processing pair ITW-MGM

Processing pair ITW-MCHP

Processing pair ITW-MU

Processing pair ITW-MSFT

Processing pair ITW-MAA

Processing pair ITW-MOH

Processing pair ITW-MDLZ

Processing pair ITW-MPWR

Processing pair ITW-MNST

Processing pair ITW-MCO

Processing pair ITW-MS

Processing pair ITW-MSI

Processing pair ITW-MSCI

Processing pair ITW-NDAQ

Processing pair ITW-NFLX

Processing pair ITW-NEE

Processing pair ITW-NI

Processing pair ITW-NDSN

Processing pair ITW-NSC

Processing pair ITW-NOC

Processing pair ITW-NVR

Processing pair ITW-NXPI
ADF test for ITW-NXPI failed with LinAlgError

Processing pair ITW-ORLY

Processing pair ITW-ODFL

Processing pair ITW-ORCL

Processing pair ITW-OTIS
ADF test for ITW-OTIS failed with LinAlgError

Processing pair ITW-PCAR

Processing pair ITW-PKG

Processing pair ITW-PH

Processing pair ITW-PAYX

Processing pair ITW-PEP

Processing pair ITW-PM

Processing pair ITW-PNC

Processing pair ITW-POOL

Processing pair ITW-PPG

Processing pair ITW-PFG

Processing pair ITW-PG

Processing pair ITW-PGR

Processing pair ITW-PLD

Processing pair ITW-PRU

Processing pair ITW-PEG

Processing pair ITW-PTC

Processing pair ITW-PSA

Processing pair ITW-QCOM

Processing pair ITW-DGX

Processing pair ITW-RJF

Processing pair ITW-RTX

Processing pair ITW-O

Processing pair ITW-RF

Processing pair ITW-RSG

Processing pair ITW-RMD

Processing pair ITW-RVTY

Processing pair ITW-ROK

Processing pair ITW-ROL

Processing pair ITW-ROP

Processing pair ITW-ROST

Processing pair ITW-SPGI

Processing pair ITW-CRM

Processing pair ITW-STX

Processing pair ITW-SRE

Processing pair ITW-NOW
ADF test for ITW-NOW failed with LinAlgError

Processing pair ITW-SHW

Processing pair ITW-SNA

Processing pair ITW-SO

Processing pair ITW-SBUX

Processing pair ITW-STE

Processing pair ITW-SYK

Processing pair ITW-SNPS

Processing pair ITW-SYY

Processing pair ITW-TMUS

Processing pair ITW-TTWO

Processing pair ITW-TEL

Processing pair ITW-TDY

Processing pair ITW-TER

Processing pair ITW-TXN

Processing pair ITW-TXT

Processing pair ITW-TMO

Processing pair ITW-TJX

Processing pair ITW-TSCO

Processing pair ITW-TT

Processing pair ITW-TDG

Processing pair ITW-TRV

Processing pair ITW-TYL

Processing pair ITW-ULTA

Processing pair ITW-UNP

Processing pair ITW-UPS

Processing pair ITW-UNH

Processing pair ITW-VRSN

Processing pair ITW-VRSK

Processing pair ITW-VRTX

Processing pair ITW-VICI
ADF test for ITW-VICI failed with LinAlgError

Processing pair ITW-V

Processing pair ITW-VMC

Processing pair ITW-WRB

Processing pair ITW-WMT

Processing pair ITW-WM

Processing pair ITW-WAT

Processing pair ITW-WEC

Processing pair ITW-WST

Processing pair ITW-WTW

Processing pair ITW-WDAY
ADF test for ITW-WDAY failed with LinAlgError

Processing pair ITW-XEL

Processing pair ITW-XYL
ADF test for ITW-XYL failed with LinAlgError

Processing pair ITW-YUM

Processing pair ITW-ZTS
ADF test for ITW-ZTS failed with LinAlgError

Processing pair IR-ICE
ADF test for IR-ICE failed with LinAlgError

Processing pair IR-INTU
ADF test for IR-INTU failed with LinAlgError

Processing pair IR-ISRG
ADF test for IR-ISRG failed with LinAlgError

Processing pair IR-IRM
ADF test for IR-IRM failed with LinAlgError

Processing pair IR-JBL
ADF test for IR-JBL failed with LinAlgError

Processing pair IR-JPM
ADF test for IR-JPM failed with LinAlgError

Processing pair IR-KKR
ADF test for IR-KKR failed with LinAlgError

Processing pair IR-KLAC
ADF test for IR-KLAC failed with LinAlgError

Processing pair IR-LRCX
ADF test for IR-LRCX failed with LinAlgError

Processing pair IR-LEN
ADF test for IR-LEN failed with LinAlgError

Processing pair IR-LII
ADF test for IR-LII failed with LinAlgError

Processing pair IR-LLY
ADF test for IR-LLY failed with LinAlgError

Processing pair IR-LIN
ADF test for IR-LIN failed with LinAlgError

Processing pair IR-MAR
ADF test for IR-MAR failed with LinAlgError

Processing pair IR-MMC
ADF test for IR-MMC failed with LinAlgError

Processing pair IR-MLM
ADF test for IR-MLM failed with LinAlgError

Processing pair IR-MAS
ADF test for IR-MAS failed with LinAlgError

Processing pair IR-MCK
ADF test for IR-MCK failed with LinAlgError

Processing pair IR-MSFT
ADF test for IR-MSFT failed with LinAlgError

Processing pair IR-MPWR
ADF test for IR-MPWR failed with LinAlgError

Processing pair IR-MCO
ADF test for IR-MCO failed with LinAlgError

Processing pair IR-MSI
ADF test for IR-MSI failed with LinAlgError

Processing pair IR-NWS
ADF test for IR-NWS failed with LinAlgError

Processing pair IR-NVDA
ADF test for IR-NVDA failed with LinAlgError

Processing pair IR-NVR
ADF test for IR-NVR failed with LinAlgError

Processing pair IR-NXPI
ADF test for IR-NXPI failed with LinAlgError

Processing pair IR-ORLY
ADF test for IR-ORLY failed with LinAlgError

Processing pair IR-ODFL
ADF test for IR-ODFL failed with LinAlgError

Processing pair IR-ORCL
ADF test for IR-ORCL failed with LinAlgError

Processing pair IR-OTIS
ADF test for IR-OTIS failed with LinAlgError

Processing pair IR-PCAR
ADF test for IR-PCAR failed with LinAlgError

Processing pair IR-PKG
ADF test for IR-PKG failed with LinAlgError

Processing pair IR-PANW
ADF test for IR-PANW failed with LinAlgError

Processing pair IR-PH
ADF test for IR-PH failed with LinAlgError

Processing pair IR-PNR
ADF test for IR-PNR failed with LinAlgError

Processing pair IR-PGR
ADF test for IR-PGR failed with LinAlgError

Processing pair IR-PTC
ADF test for IR-PTC failed with LinAlgError

Processing pair IR-PHM
ADF test for IR-PHM failed with LinAlgError

Processing pair IR-PWR
ADF test for IR-PWR failed with LinAlgError

Processing pair IR-RJF
ADF test for IR-RJF failed with LinAlgError

Processing pair IR-RSG
ADF test for IR-RSG failed with LinAlgError

Processing pair IR-ROL
ADF test for IR-ROL failed with LinAlgError

Processing pair IR-ROP
ADF test for IR-ROP failed with LinAlgError

Processing pair IR-NOW
ADF test for IR-NOW failed with LinAlgError

Processing pair IR-SNA
ADF test for IR-SNA failed with LinAlgError

Processing pair IR-STLD
ADF test for IR-STLD failed with LinAlgError

Processing pair IR-SYK
ADF test for IR-SYK failed with LinAlgError

Processing pair IR-SNPS
ADF test for IR-SNPS failed with LinAlgError

Processing pair IR-TMUS
ADF test for IR-TMUS failed with LinAlgError

Processing pair IR-TJX
ADF test for IR-TJX failed with LinAlgError

Processing pair IR-TSCO
ADF test for IR-TSCO failed with LinAlgError

Processing pair IR-TT
ADF test for IR-TT failed with LinAlgError

Processing pair IR-TDG
ADF test for IR-TDG failed with LinAlgError

Processing pair IR-TRV
ADF test for IR-TRV failed with LinAlgError

Processing pair IR-URI
ADF test for IR-URI failed with LinAlgError

Processing pair IR-VMC
ADF test for IR-VMC failed with LinAlgError

Processing pair IR-WRB
ADF test for IR-WRB failed with LinAlgError

Processing pair IR-GWW
ADF test for IR-GWW failed with LinAlgError

Processing pair IR-WMT
ADF test for IR-WMT failed with LinAlgError

Processing pair IR-WM
ADF test for IR-WM failed with LinAlgError

Processing pair IR-WMB
ADF test for IR-WMB failed with LinAlgError

Processing pair PODD-IQV
ADF test for PODD-IQV failed with LinAlgError

Processing pair PODD-J

Processing pair PODD-KDP

Processing pair PODD-KEYS
ADF test for PODD-KEYS failed with LinAlgError

Processing pair PODD-LHX

Processing pair PODD-LH

Processing pair PODD-LOW

Processing pair PODD-LULU

Processing pair PODD-MA

Processing pair PODD-MKC

Processing pair PODD-MCD

Processing pair PODD-MTD

Processing pair PODD-MCHP

Processing pair PODD-MAA

Processing pair PODD-MCO

Processing pair PODD-MSCI

Processing pair PODD-NDAQ

Processing pair PODD-NEE

Processing pair PODD-NKE

Processing pair PODD-NDSN

Processing pair PODD-NSC

Processing pair PODD-PAYX

Processing pair PODD-PAYC
ADF test for PODD-PAYC failed with LinAlgError

Processing pair PODD-PEP

Processing pair PODD-POOL

Processing pair PODD-PG

Processing pair PODD-PLD

Processing pair PODD-DGX

Processing pair PODD-RMD

Processing pair PODD-RVTY

Processing pair PODD-ROK

Processing pair PODD-ROP

Processing pair PODD-SPGI

Processing pair PODD-SBAC

Processing pair PODD-SHW

Processing pair PODD-SBUX

Processing pair PODD-STE

Processing pair PODD-TROW

Processing pair PODD-TGT

Processing pair PODD-TDY

Processing pair PODD-TER

Processing pair PODD-TXN

Processing pair PODD-TMO

Processing pair PODD-TYL

Processing pair PODD-UNP

Processing pair PODD-UPS

Processing pair PODD-UNH

Processing pair PODD-VRSN

Processing pair PODD-V

Processing pair PODD-WAT

Processing pair PODD-WEC

Processing pair PODD-WST

Processing pair PODD-WTW

Processing pair PODD-XEL

Processing pair PODD-YUM

Processing pair PODD-ZBRA

Processing pair PODD-ZTS
ADF test for PODD-ZTS failed with LinAlgError

Processing pair INTC-TFX

Processing pair ICE-IPG

Processing pair ICE-INTU

Processing pair ICE-ISRG

Processing pair ICE-IQV
ADF test for ICE-IQV failed with LinAlgError

Processing pair ICE-JBHT

Processing pair ICE-JKHY

Processing pair ICE-J

Processing pair ICE-JNJ

Processing pair ICE-JCI

Processing pair ICE-JPM

Processing pair ICE-KDP

Processing pair ICE-KEYS
ADF test for ICE-KEYS failed with LinAlgError

Processing pair ICE-KMB

Processing pair ICE-KKR
ADF test for ICE-KKR failed with LinAlgError

Processing pair ICE-KLAC

Processing pair ICE-LHX

Processing pair ICE-LH

Processing pair ICE-LRCX

Processing pair ICE-LDOS

Processing pair ICE-LEN

Processing pair ICE-LII

Processing pair ICE-LIN

Processing pair ICE-LYV

Processing pair ICE-LMT

Processing pair ICE-LOW

Processing pair ICE-LULU

Processing pair ICE-MAR

Processing pair ICE-MMC

Processing pair ICE-MLM

Processing pair ICE-MAS

Processing pair ICE-MA

Processing pair ICE-MKC

Processing pair ICE-MCD

Processing pair ICE-MRK

Processing pair ICE-META
ADF test for ICE-META failed with LinAlgError

Processing pair ICE-MET

Processing pair ICE-MTD

Processing pair ICE-MCHP

Processing pair ICE-MU

Processing pair ICE-MSFT

Processing pair ICE-MAA

Processing pair ICE-MOH

Processing pair ICE-MDLZ

Processing pair ICE-MPWR

Processing pair ICE-MNST

Processing pair ICE-MCO

Processing pair ICE-MS

Processing pair ICE-MSI

Processing pair ICE-MSCI

Processing pair ICE-NDAQ

Processing pair ICE-NFLX

Processing pair ICE-NEE

Processing pair ICE-NI

Processing pair ICE-NDSN

Processing pair ICE-NSC

Processing pair ICE-NOC

Processing pair ICE-NVR

Processing pair ICE-NXPI
ADF test for ICE-NXPI failed with LinAlgError

Processing pair ICE-ORLY

Processing pair ICE-ODFL

Processing pair ICE-ORCL

Processing pair ICE-PCAR

Processing pair ICE-PKG

Processing pair ICE-PH

Processing pair ICE-PAYX

Processing pair ICE-PNR

Processing pair ICE-PEP

Processing pair ICE-PNC

Processing pair ICE-POOL

Processing pair ICE-PFG

Processing pair ICE-PG

Processing pair ICE-PGR

Processing pair ICE-PLD

Processing pair ICE-PEG

Processing pair ICE-PTC

Processing pair ICE-PSA

Processing pair ICE-QCOM

Processing pair ICE-DGX

Processing pair ICE-RJF

Processing pair ICE-RTX

Processing pair ICE-O

Processing pair ICE-RF

Processing pair ICE-RSG

Processing pair ICE-RMD

Processing pair ICE-RVTY

Processing pair ICE-ROK

Processing pair ICE-ROL

Processing pair ICE-ROP

Processing pair ICE-ROST

Processing pair ICE-SPGI

Processing pair ICE-CRM

Processing pair ICE-STX

Processing pair ICE-SRE

Processing pair ICE-NOW
ADF test for ICE-NOW failed with LinAlgError

Processing pair ICE-SHW

Processing pair ICE-SNA

Processing pair ICE-SO

Processing pair ICE-SBUX

Processing pair ICE-STE

Processing pair ICE-SYK

Processing pair ICE-SNPS

Processing pair ICE-SYY

Processing pair ICE-TMUS

Processing pair ICE-TTWO

Processing pair ICE-TEL

Processing pair ICE-TDY

Processing pair ICE-TER

Processing pair ICE-TXN

Processing pair ICE-TMO

Processing pair ICE-TJX

Processing pair ICE-TSCO

Processing pair ICE-TT

Processing pair ICE-TDG

Processing pair ICE-TRV

Processing pair ICE-TYL

Processing pair ICE-UDR

Processing pair ICE-UNP

Processing pair ICE-UNH

Processing pair ICE-VLTO
ADF test for ICE-VLTO failed with LinAlgError

Processing pair ICE-VRSN

Processing pair ICE-VRSK

Processing pair ICE-VRTX

Processing pair ICE-V

Processing pair ICE-VMC

Processing pair ICE-WRB

Processing pair ICE-WMT

Processing pair ICE-WM

Processing pair ICE-WAT

Processing pair ICE-WEC

Processing pair ICE-WELL

Processing pair ICE-WST

Processing pair ICE-WTW

Processing pair ICE-WDAY
ADF test for ICE-WDAY failed with LinAlgError

Processing pair ICE-XEL

Processing pair ICE-XYL
ADF test for ICE-XYL failed with LinAlgError

Processing pair ICE-YUM

Processing pair ICE-ZTS
ADF test for ICE-ZTS failed with LinAlgError

Processing pair IFF-LUV

Processing pair IFF-TSN

Processing pair IFF-VLTO
ADF test for IFF-VLTO failed with LinAlgError

Processing pair IP-STT

Processing pair IP-USB

Processing pair IPG-INTU

Processing pair IPG-IQV
ADF test for IPG-IQV failed with LinAlgError

Processing pair IPG-JBHT

Processing pair IPG-JNJ

Processing pair IPG-JCI

Processing pair IPG-JPM

Processing pair IPG-KDP

Processing pair IPG-KR

Processing pair IPG-LH

Processing pair IPG-LYV

Processing pair IPG-LKQ

Processing pair IPG-LMT

Processing pair IPG-LOW

Processing pair IPG-MAR

Processing pair IPG-MMC

Processing pair IPG-MLM

Processing pair IPG-MAS

Processing pair IPG-MCD

Processing pair IPG-MRK

Processing pair IPG-MET

Processing pair IPG-MTD

Processing pair IPG-MGM

Processing pair IPG-MCHP

Processing pair IPG-MAA

Processing pair IPG-MOH

Processing pair IPG-MDLZ

Processing pair IPG-MNST

Processing pair IPG-MCO

Processing pair IPG-MS

Processing pair IPG-MSCI

Processing pair IPG-NDAQ

Processing pair IPG-NEE

Processing pair IPG-NDSN

Processing pair IPG-NSC

Processing pair IPG-NOC

Processing pair IPG-NXPI
ADF test for IPG-NXPI failed with LinAlgError

Processing pair IPG-ORLY

Processing pair IPG-ODFL

Processing pair IPG-OMC

Processing pair IPG-PKG

Processing pair IPG-PAYX

Processing pair IPG-PEP

Processing pair IPG-PM

Processing pair IPG-PNC

Processing pair IPG-POOL

Processing pair IPG-PPG

Processing pair IPG-PFG

Processing pair IPG-PG

Processing pair IPG-PLD

Processing pair IPG-PRU

Processing pair IPG-PEG

Processing pair IPG-PTC

Processing pair IPG-PSA

Processing pair IPG-DGX

Processing pair IPG-RJF

Processing pair IPG-RTX

Processing pair IPG-RF

Processing pair IPG-RSG

Processing pair IPG-ROK

Processing pair IPG-ROL

Processing pair IPG-ROP

Processing pair IPG-SPGI

Processing pair IPG-SRE

Processing pair IPG-SHW

Processing pair IPG-SJM

Processing pair IPG-SNA

Processing pair IPG-SO

Processing pair IPG-SBUX

Processing pair IPG-STE

Processing pair IPG-SYK

Processing pair IPG-SYY

Processing pair IPG-TMUS

Processing pair IPG-TEL

Processing pair IPG-TDY

Processing pair IPG-TXN

Processing pair IPG-TXT

Processing pair IPG-TMO

Processing pair IPG-TJX

Processing pair IPG-TSCO

Processing pair IPG-TRV

Processing pair IPG-TYL

Processing pair IPG-ULTA

Processing pair IPG-UNP

Processing pair IPG-UPS

Processing pair IPG-UNH

Processing pair IPG-V

Processing pair IPG-VMC

Processing pair IPG-WRB

Processing pair IPG-WM

Processing pair IPG-WAT

Processing pair IPG-WST

Processing pair IPG-WY

Processing pair IPG-WTW

Processing pair IPG-XYL
ADF test for IPG-XYL failed with LinAlgError

Processing pair IPG-YUM

Processing pair INTU-ISRG

Processing pair INTU-INVH
ADF test for INTU-INVH failed with LinAlgError

Processing pair INTU-IQV
ADF test for INTU-IQV failed with LinAlgError

Processing pair INTU-JBHT

Processing pair INTU-JBL

Processing pair INTU-J

Processing pair INTU-JCI

Processing pair INTU-JPM

Processing pair INTU-KDP

Processing pair INTU-KEYS
ADF test for INTU-KEYS failed with LinAlgError

Processing pair INTU-KKR
ADF test for INTU-KKR failed with LinAlgError

Processing pair INTU-KLAC

Processing pair INTU-LHX

Processing pair INTU-LH

Processing pair INTU-LRCX

Processing pair INTU-LDOS

Processing pair INTU-LEN

Processing pair INTU-LII

Processing pair INTU-LIN

Processing pair INTU-LYV

Processing pair INTU-LMT

Processing pair INTU-LOW

Processing pair INTU-LULU

Processing pair INTU-MAR

Processing pair INTU-MMC

Processing pair INTU-MLM

Processing pair INTU-MAS

Processing pair INTU-MA

Processing pair INTU-MCD

Processing pair INTU-MRK

Processing pair INTU-META
ADF test for INTU-META failed with LinAlgError

Processing pair INTU-MET

Processing pair INTU-MTD

Processing pair INTU-MCHP

Processing pair INTU-MU

Processing pair INTU-MSFT

Processing pair INTU-MAA

Processing pair INTU-MOH

Processing pair INTU-MDLZ

Processing pair INTU-MPWR

Processing pair INTU-MNST

Processing pair INTU-MCO

Processing pair INTU-MS

Processing pair INTU-MSI

Processing pair INTU-MSCI

Processing pair INTU-NDAQ

Processing pair INTU-NTAP

Processing pair INTU-NFLX

Processing pair INTU-NEE

Processing pair INTU-NDSN

Processing pair INTU-NSC

Processing pair INTU-NOC

Processing pair INTU-NVR

Processing pair INTU-NXPI
ADF test for INTU-NXPI failed with LinAlgError

Processing pair INTU-ORLY

Processing pair INTU-ODFL

Processing pair INTU-ON

Processing pair INTU-ORCL

Processing pair INTU-PCAR

Processing pair INTU-PKG

Processing pair INTU-PANW
ADF test for INTU-PANW failed with LinAlgError

Processing pair INTU-PH

Processing pair INTU-PAYX

Processing pair INTU-PNR

Processing pair INTU-PEP

Processing pair INTU-PNC

Processing pair INTU-POOL

Processing pair INTU-PG

Processing pair INTU-PGR

Processing pair INTU-PLD

Processing pair INTU-PEG

Processing pair INTU-PTC

Processing pair INTU-PSA

Processing pair INTU-PHM

Processing pair INTU-QCOM

Processing pair INTU-DGX

Processing pair INTU-RJF

Processing pair INTU-RF

Processing pair INTU-RSG

Processing pair INTU-RMD

Processing pair INTU-ROK

Processing pair INTU-ROL

Processing pair INTU-ROP

Processing pair INTU-ROST

Processing pair INTU-SPGI

Processing pair INTU-CRM

Processing pair INTU-STX

Processing pair INTU-NOW
ADF test for INTU-NOW failed with LinAlgError

Processing pair INTU-SHW

Processing pair INTU-SNA

Processing pair INTU-SO

Processing pair INTU-STE

Processing pair INTU-SYK

Processing pair INTU-SNPS

Processing pair INTU-TMUS

Processing pair INTU-TEL

Processing pair INTU-TDY

Processing pair INTU-TER

Processing pair INTU-TSLA
ADF test for INTU-TSLA failed with LinAlgError

Processing pair INTU-TXN

Processing pair INTU-TMO

Processing pair INTU-TJX

Processing pair INTU-TSCO

Processing pair INTU-TT

Processing pair INTU-TDG

Processing pair INTU-TRV

Processing pair INTU-TYL

Processing pair INTU-UNP

Processing pair INTU-URI

Processing pair INTU-UNH

Processing pair INTU-VRSK

Processing pair INTU-VRTX

Processing pair INTU-V

Processing pair INTU-VMC

Processing pair INTU-WRB

Processing pair INTU-GWW

Processing pair INTU-WMT

Processing pair INTU-WM

Processing pair INTU-WAT

Processing pair INTU-WST

Processing pair INTU-WTW

Processing pair INTU-WDAY
ADF test for INTU-WDAY failed with LinAlgError

Processing pair INTU-XYL
ADF test for INTU-XYL failed with LinAlgError

Processing pair INTU-YUM

Processing pair INTU-ZTS
ADF test for INTU-ZTS failed with LinAlgError

Processing pair ISRG-IQV
ADF test for ISRG-IQV failed with LinAlgError

Processing pair ISRG-JBHT

Processing pair ISRG-J

Processing pair ISRG-JCI

Processing pair ISRG-JPM

Processing pair ISRG-KDP

Processing pair ISRG-KKR
ADF test for ISRG-KKR failed with LinAlgError

Processing pair ISRG-KLAC

Processing pair ISRG-LHX

Processing pair ISRG-LH

Processing pair ISRG-LRCX

Processing pair ISRG-LDOS

Processing pair ISRG-LEN

Processing pair ISRG-LII

Processing pair ISRG-LIN

Processing pair ISRG-LYV

Processing pair ISRG-LMT

Processing pair ISRG-LOW

Processing pair ISRG-MAR

Processing pair ISRG-MMC

Processing pair ISRG-MLM

Processing pair ISRG-MAS

Processing pair ISRG-MA

Processing pair ISRG-MCD

Processing pair ISRG-MRK

Processing pair ISRG-META
ADF test for ISRG-META failed with LinAlgError

Processing pair ISRG-MTD

Processing pair ISRG-MCHP

Processing pair ISRG-MU

Processing pair ISRG-MSFT

Processing pair ISRG-MOH

Processing pair ISRG-MDLZ

Processing pair ISRG-MPWR

Processing pair ISRG-MNST

Processing pair ISRG-MCO

Processing pair ISRG-MS

Processing pair ISRG-MSI

Processing pair ISRG-MSCI

Processing pair ISRG-NDAQ

Processing pair ISRG-NTAP

Processing pair ISRG-NFLX

Processing pair ISRG-NEE

Processing pair ISRG-NDSN

Processing pair ISRG-NSC

Processing pair ISRG-NVR

Processing pair ISRG-NXPI
ADF test for ISRG-NXPI failed with LinAlgError

Processing pair ISRG-ORLY

Processing pair ISRG-ODFL

Processing pair ISRG-ORCL

Processing pair ISRG-PCAR

Processing pair ISRG-PKG

Processing pair ISRG-PANW
ADF test for ISRG-PANW failed with LinAlgError

Processing pair ISRG-PH

Processing pair ISRG-PAYX

Processing pair ISRG-PNR

Processing pair ISRG-PEP

Processing pair ISRG-PNC

Processing pair ISRG-POOL

Processing pair ISRG-PG

Processing pair ISRG-PGR

Processing pair ISRG-PLD

Processing pair ISRG-PEG

Processing pair ISRG-PTC

Processing pair ISRG-PHM

Processing pair ISRG-QCOM

Processing pair ISRG-DGX

Processing pair ISRG-RJF

Processing pair ISRG-RF

Processing pair ISRG-RSG

Processing pair ISRG-RMD

Processing pair ISRG-ROK

Processing pair ISRG-ROL

Processing pair ISRG-ROP

Processing pair ISRG-ROST

Processing pair ISRG-SPGI

Processing pair ISRG-CRM

Processing pair ISRG-STX

Processing pair ISRG-NOW
ADF test for ISRG-NOW failed with LinAlgError

Processing pair ISRG-SHW

Processing pair ISRG-SNA

Processing pair ISRG-SO

Processing pair ISRG-STE

Processing pair ISRG-SYK

Processing pair ISRG-SNPS

Processing pair ISRG-TMUS

Processing pair ISRG-TEL

Processing pair ISRG-TDY

Processing pair ISRG-TER

Processing pair ISRG-TXN

Processing pair ISRG-TPL

Processing pair ISRG-TMO

Processing pair ISRG-TJX

Processing pair ISRG-TSCO

Processing pair ISRG-TT

Processing pair ISRG-TDG

Processing pair ISRG-TRV

Processing pair ISRG-TYL

Processing pair ISRG-UNP

Processing pair ISRG-URI

Processing pair ISRG-UNH

Processing pair ISRG-VLTO
ADF test for ISRG-VLTO failed with LinAlgError

Processing pair ISRG-VRSK

Processing pair ISRG-VRTX

Processing pair ISRG-V

Processing pair ISRG-VMC

Processing pair ISRG-WRB

Processing pair ISRG-GWW

Processing pair ISRG-WMT

Processing pair ISRG-WM

Processing pair ISRG-WAT

Processing pair ISRG-WELL

Processing pair ISRG-WST

Processing pair ISRG-WTW

Processing pair ISRG-WDAY
ADF test for ISRG-WDAY failed with LinAlgError

Processing pair ISRG-XYL
ADF test for ISRG-XYL failed with LinAlgError

Processing pair ISRG-YUM

Processing pair ISRG-ZTS
ADF test for ISRG-ZTS failed with LinAlgError

Processing pair INVH-IQV
ADF test for INVH-IQV failed with LinAlgError

Processing pair INVH-J
ADF test for INVH-J failed with LinAlgError

Processing pair INVH-KEYS
ADF test for INVH-KEYS failed with LinAlgError

Processing pair INVH-LH
ADF test for INVH-LH failed with LinAlgError

Processing pair INVH-LYV
ADF test for INVH-LYV failed with LinAlgError

Processing pair INVH-LOW
ADF test for INVH-LOW failed with LinAlgError

Processing pair INVH-MTD
ADF test for INVH-MTD failed with LinAlgError

Processing pair INVH-MAA
ADF test for INVH-MAA failed with LinAlgError

Processing pair INVH-MCO
ADF test for INVH-MCO failed with LinAlgError

Processing pair INVH-MSCI
ADF test for INVH-MSCI failed with LinAlgError

Processing pair INVH-NDAQ
ADF test for INVH-NDAQ failed with LinAlgError

Processing pair INVH-NDSN
ADF test for INVH-NDSN failed with LinAlgError

Processing pair INVH-NSC
ADF test for INVH-NSC failed with LinAlgError

Processing pair INVH-PAYX
ADF test for INVH-PAYX failed with LinAlgError

Processing pair INVH-POOL
ADF test for INVH-POOL failed with LinAlgError

Processing pair INVH-PG
ADF test for INVH-PG failed with LinAlgError

Processing pair INVH-PLD
ADF test for INVH-PLD failed with LinAlgError

Processing pair INVH-PSA
ADF test for INVH-PSA failed with LinAlgError

Processing pair INVH-RMD
ADF test for INVH-RMD failed with LinAlgError

Processing pair INVH-SPGI
ADF test for INVH-SPGI failed with LinAlgError

Processing pair INVH-SHW
ADF test for INVH-SHW failed with LinAlgError

Processing pair INVH-STE
ADF test for INVH-STE failed with LinAlgError

Processing pair INVH-TEL
ADF test for INVH-TEL failed with LinAlgError

Processing pair INVH-TDY
ADF test for INVH-TDY failed with LinAlgError

Processing pair INVH-TER
ADF test for INVH-TER failed with LinAlgError

Processing pair INVH-TXN
ADF test for INVH-TXN failed with LinAlgError

Processing pair INVH-TMO
ADF test for INVH-TMO failed with LinAlgError

Processing pair INVH-UNP
ADF test for INVH-UNP failed with LinAlgError

Processing pair INVH-WST
ADF test for INVH-WST failed with LinAlgError

Processing pair INVH-ZTS
ADF test for INVH-ZTS failed with LinAlgError

Processing pair IQV-JBHT
ADF test for IQV-JBHT failed with LinAlgError

Processing pair IQV-JKHY
ADF test for IQV-JKHY failed with LinAlgError

Processing pair IQV-J
ADF test for IQV-J failed with LinAlgError

Processing pair IQV-JNJ
ADF test for IQV-JNJ failed with LinAlgError

Processing pair IQV-JPM
ADF test for IQV-JPM failed with LinAlgError

Processing pair IQV-KDP
ADF test for IQV-KDP failed with LinAlgError

Processing pair IQV-KEYS
ADF test for IQV-KEYS failed with LinAlgError

Processing pair IQV-LHX
ADF test for IQV-LHX failed with LinAlgError

Processing pair IQV-LH
ADF test for IQV-LH failed with LinAlgError

Processing pair IQV-LRCX
ADF test for IQV-LRCX failed with LinAlgError

Processing pair IQV-LIN
ADF test for IQV-LIN failed with LinAlgError

Processing pair IQV-LYV
ADF test for IQV-LYV failed with LinAlgError

Processing pair IQV-LOW
ADF test for IQV-LOW failed with LinAlgError

Processing pair IQV-LULU
ADF test for IQV-LULU failed with LinAlgError

Processing pair IQV-MMC
ADF test for IQV-MMC failed with LinAlgError

Processing pair IQV-MAS
ADF test for IQV-MAS failed with LinAlgError

Processing pair IQV-MA
ADF test for IQV-MA failed with LinAlgError

Processing pair IQV-MCD
ADF test for IQV-MCD failed with LinAlgError

Processing pair IQV-MTD
ADF test for IQV-MTD failed with LinAlgError

Processing pair IQV-MCHP
ADF test for IQV-MCHP failed with LinAlgError

Processing pair IQV-MSFT
ADF test for IQV-MSFT failed with LinAlgError

Processing pair IQV-MAA
ADF test for IQV-MAA failed with LinAlgError

Processing pair IQV-MOH
ADF test for IQV-MOH failed with LinAlgError

Processing pair IQV-MDLZ
ADF test for IQV-MDLZ failed with LinAlgError

Processing pair IQV-MNST
ADF test for IQV-MNST failed with LinAlgError

Processing pair IQV-MCO
ADF test for IQV-MCO failed with LinAlgError

Processing pair IQV-MS
ADF test for IQV-MS failed with LinAlgError

Processing pair IQV-MSCI
ADF test for IQV-MSCI failed with LinAlgError

Processing pair IQV-NDAQ
ADF test for IQV-NDAQ failed with LinAlgError

Processing pair IQV-NEE
ADF test for IQV-NEE failed with LinAlgError

Processing pair IQV-NKE
ADF test for IQV-NKE failed with LinAlgError

Processing pair IQV-NDSN
ADF test for IQV-NDSN failed with LinAlgError

Processing pair IQV-NSC
ADF test for IQV-NSC failed with LinAlgError

Processing pair IQV-NOC
ADF test for IQV-NOC failed with LinAlgError

Processing pair IQV-NXPI
ADF test for IQV-NXPI failed with LinAlgError

Processing pair IQV-ODFL
ADF test for IQV-ODFL failed with LinAlgError

Processing pair IQV-PAYX
ADF test for IQV-PAYX failed with LinAlgError

Processing pair IQV-PEP
ADF test for IQV-PEP failed with LinAlgError

Processing pair IQV-PNC
ADF test for IQV-PNC failed with LinAlgError

Processing pair IQV-POOL
ADF test for IQV-POOL failed with LinAlgError

Processing pair IQV-PPG
ADF test for IQV-PPG failed with LinAlgError

Processing pair IQV-PG
ADF test for IQV-PG failed with LinAlgError

Processing pair IQV-PLD
ADF test for IQV-PLD failed with LinAlgError

Processing pair IQV-PEG
ADF test for IQV-PEG failed with LinAlgError

Processing pair IQV-PTC
ADF test for IQV-PTC failed with LinAlgError

Processing pair IQV-PSA
ADF test for IQV-PSA failed with LinAlgError

Processing pair IQV-DGX
ADF test for IQV-DGX failed with LinAlgError

Processing pair IQV-RJF
ADF test for IQV-RJF failed with LinAlgError

Processing pair IQV-RF
ADF test for IQV-RF failed with LinAlgError

Processing pair IQV-RSG
ADF test for IQV-RSG failed with LinAlgError

Processing pair IQV-RMD
ADF test for IQV-RMD failed with LinAlgError

Processing pair IQV-RVTY
ADF test for IQV-RVTY failed with LinAlgError

Processing pair IQV-ROK
ADF test for IQV-ROK failed with LinAlgError

Processing pair IQV-ROL
ADF test for IQV-ROL failed with LinAlgError

Processing pair IQV-ROP
ADF test for IQV-ROP failed with LinAlgError

Processing pair IQV-SPGI
ADF test for IQV-SPGI failed with LinAlgError

Processing pair IQV-CRM
ADF test for IQV-CRM failed with LinAlgError

Processing pair IQV-SRE
ADF test for IQV-SRE failed with LinAlgError

Processing pair IQV-NOW
ADF test for IQV-NOW failed with LinAlgError

Processing pair IQV-SHW
ADF test for IQV-SHW failed with LinAlgError

Processing pair IQV-SO
ADF test for IQV-SO failed with LinAlgError

Processing pair IQV-SBUX
ADF test for IQV-SBUX failed with LinAlgError

Processing pair IQV-STE
ADF test for IQV-STE failed with LinAlgError

Processing pair IQV-SYK
ADF test for IQV-SYK failed with LinAlgError

Processing pair IQV-SYY
ADF test for IQV-SYY failed with LinAlgError

Processing pair IQV-TMUS
ADF test for IQV-TMUS failed with LinAlgError

Processing pair IQV-TGT
ADF test for IQV-TGT failed with LinAlgError

Processing pair IQV-TEL
ADF test for IQV-TEL failed with LinAlgError

Processing pair IQV-TDY
ADF test for IQV-TDY failed with LinAlgError

Processing pair IQV-TER
ADF test for IQV-TER failed with LinAlgError

Processing pair IQV-TXN
ADF test for IQV-TXN failed with LinAlgError

Processing pair IQV-TMO
ADF test for IQV-TMO failed with LinAlgError

Processing pair IQV-TYL
ADF test for IQV-TYL failed with LinAlgError

Processing pair IQV-UDR
ADF test for IQV-UDR failed with LinAlgError

Processing pair IQV-UNP
ADF test for IQV-UNP failed with LinAlgError

Processing pair IQV-UPS
ADF test for IQV-UPS failed with LinAlgError

Processing pair IQV-UNH
ADF test for IQV-UNH failed with LinAlgError

Processing pair IQV-VRSN
ADF test for IQV-VRSN failed with LinAlgError

Processing pair IQV-VRSK
ADF test for IQV-VRSK failed with LinAlgError

Processing pair IQV-V
ADF test for IQV-V failed with LinAlgError

Processing pair IQV-WRB
ADF test for IQV-WRB failed with LinAlgError

Processing pair IQV-WM
ADF test for IQV-WM failed with LinAlgError

Processing pair IQV-WAT
ADF test for IQV-WAT failed with LinAlgError

Processing pair IQV-WEC
ADF test for IQV-WEC failed with LinAlgError

Processing pair IQV-WST
ADF test for IQV-WST failed with LinAlgError

Processing pair IQV-WTW
ADF test for IQV-WTW failed with LinAlgError

Processing pair IQV-WDAY
ADF test for IQV-WDAY failed with LinAlgError

Processing pair IQV-XEL
ADF test for IQV-XEL failed with LinAlgError

Processing pair IQV-XYL
ADF test for IQV-XYL failed with LinAlgError

Processing pair IQV-YUM
ADF test for IQV-YUM failed with LinAlgError

Processing pair IQV-ZBRA
ADF test for IQV-ZBRA failed with LinAlgError

Processing pair IQV-ZTS
ADF test for IQV-ZTS failed with LinAlgError

Processing pair IRM-JBL

Processing pair IRM-JPM

Processing pair IRM-KKR
ADF test for IRM-KKR failed with LinAlgError

Processing pair IRM-KLAC

Processing pair IRM-LEN

Processing pair IRM-LII

Processing pair IRM-LLY

Processing pair IRM-LIN

Processing pair IRM-L

Processing pair IRM-MPC
ADF test for IRM-MPC failed with LinAlgError

Processing pair IRM-MMC

Processing pair IRM-MLM

Processing pair IRM-MCK

Processing pair IRM-MPWR

Processing pair IRM-MSI

Processing pair IRM-NRG

Processing pair IRM-NVDA

Processing pair IRM-NVR

Processing pair IRM-ORLY

Processing pair IRM-OKE

Processing pair IRM-ORCL

Processing pair IRM-PCAR

Processing pair IRM-PKG

Processing pair IRM-PANW
ADF test for IRM-PANW failed with LinAlgError

Processing pair IRM-PH

Processing pair IRM-PGR

Processing pair IRM-PHM

Processing pair IRM-PWR

Processing pair IRM-RJF

Processing pair IRM-RSG

Processing pair IRM-SO

Processing pair IRM-STLD

Processing pair IRM-SNPS

Processing pair IRM-TPL

Processing pair IRM-TJX

Processing pair IRM-TSCO

Processing pair IRM-TT

Processing pair IRM-TDG

Processing pair IRM-TRV

Processing pair IRM-URI

Processing pair IRM-VLTO
ADF test for IRM-VLTO failed with LinAlgError

Processing pair IRM-VRTX

Processing pair IRM-WRB

Processing pair IRM-GWW

Processing pair IRM-WMT

Processing pair IRM-WELL

Processing pair JBHT-JKHY

Processing pair JBHT-J

Processing pair JBHT-JNJ

Processing pair JBHT-JCI

Processing pair JBHT-JPM

Processing pair JBHT-KDP

Processing pair JBHT-KEYS
ADF test for JBHT-KEYS failed with LinAlgError

Processing pair JBHT-KR

Processing pair JBHT-LHX

Processing pair JBHT-LH

Processing pair JBHT-LIN

Processing pair JBHT-LYV

Processing pair JBHT-LKQ

Processing pair JBHT-LMT

Processing pair JBHT-LOW

Processing pair JBHT-LULU

Processing pair JBHT-MAR

Processing pair JBHT-MMC

Processing pair JBHT-MLM

Processing pair JBHT-MAS

Processing pair JBHT-MA

Processing pair JBHT-MCD

Processing pair JBHT-MRK

Processing pair JBHT-MET

Processing pair JBHT-MTD

Processing pair JBHT-MGM

Processing pair JBHT-MCHP

Processing pair JBHT-MU

Processing pair JBHT-MSFT

Processing pair JBHT-MAA

Processing pair JBHT-MOH

Processing pair JBHT-MDLZ

Processing pair JBHT-MNST

Processing pair JBHT-MCO

Processing pair JBHT-MS

Processing pair JBHT-MSI

Processing pair JBHT-MSCI

Processing pair JBHT-NDAQ

Processing pair JBHT-NEE

Processing pair JBHT-NDSN

Processing pair JBHT-NSC

Processing pair JBHT-NOC

Processing pair JBHT-NVR

Processing pair JBHT-NXPI
ADF test for JBHT-NXPI failed with LinAlgError

Processing pair JBHT-ORLY

Processing pair JBHT-ODFL

Processing pair JBHT-ON

Processing pair JBHT-PKG

Processing pair JBHT-PAYX

Processing pair JBHT-PEP

Processing pair JBHT-PNC

Processing pair JBHT-POOL

Processing pair JBHT-PPG

Processing pair JBHT-PFG

Processing pair JBHT-PG

Processing pair JBHT-PLD

Processing pair JBHT-PEG

Processing pair JBHT-PTC

Processing pair JBHT-PSA

Processing pair JBHT-DGX

Processing pair JBHT-RJF

Processing pair JBHT-RF

Processing pair JBHT-RSG

Processing pair JBHT-RMD

Processing pair JBHT-RVTY

Processing pair JBHT-ROK

Processing pair JBHT-ROL

Processing pair JBHT-ROP

Processing pair JBHT-ROST

Processing pair JBHT-SPGI

Processing pair JBHT-CRM

Processing pair JBHT-STX

Processing pair JBHT-SRE

Processing pair JBHT-NOW
ADF test for JBHT-NOW failed with LinAlgError

Processing pair JBHT-SHW

Processing pair JBHT-SNA

Processing pair JBHT-SO

Processing pair JBHT-SBUX

Processing pair JBHT-STE

Processing pair JBHT-SYK

Processing pair JBHT-SNPS

Processing pair JBHT-SYY

Processing pair JBHT-TMUS

Processing pair JBHT-TEL

Processing pair JBHT-TDY

Processing pair JBHT-TER

Processing pair JBHT-TXN

Processing pair JBHT-TXT

Processing pair JBHT-TMO

Processing pair JBHT-TJX

Processing pair JBHT-TSCO

Processing pair JBHT-TRV

Processing pair JBHT-TYL

Processing pair JBHT-ULTA

Processing pair JBHT-UNP

Processing pair JBHT-UPS

Processing pair JBHT-UNH

Processing pair JBHT-VRSK

Processing pair JBHT-V

Processing pair JBHT-VMC

Processing pair JBHT-WRB

Processing pair JBHT-WMT

Processing pair JBHT-WM

Processing pair JBHT-WAT

Processing pair JBHT-WEC

Processing pair JBHT-WST

Processing pair JBHT-WY

Processing pair JBHT-WTW

Processing pair JBHT-XEL

Processing pair JBHT-XYL
ADF test for JBHT-XYL failed with LinAlgError

Processing pair JBHT-YUM

Processing pair JBHT-ZTS
ADF test for JBHT-ZTS failed with LinAlgError

Processing pair JBL-KKR
ADF test for JBL-KKR failed with LinAlgError

Processing pair JBL-KLAC

Processing pair JBL-LRCX

Processing pair JBL-LEN

Processing pair JBL-LLY

Processing pair JBL-LIN

Processing pair JBL-L

Processing pair JBL-MPC
ADF test for JBL-MPC failed with LinAlgError

Processing pair JBL-MAR

Processing pair JBL-MMC

Processing pair JBL-MLM

Processing pair JBL-MCK

Processing pair JBL-MRK

Processing pair JBL-MSFT

Processing pair JBL-MPWR

Processing pair JBL-MSI

Processing pair JBL-NUE

Processing pair JBL-NVR

Processing pair JBL-ORLY

Processing pair JBL-ODFL

Processing pair JBL-ON

Processing pair JBL-ORCL

Processing pair JBL-PCAR

Processing pair JBL-PANW
ADF test for JBL-PANW failed with LinAlgError

Processing pair JBL-PH

Processing pair JBL-PGR

Processing pair JBL-PTC

Processing pair JBL-PHM

Processing pair JBL-PWR

Processing pair JBL-RJF

Processing pair JBL-RSG

Processing pair JBL-STLD

Processing pair JBL-SNPS

Processing pair JBL-TJX

Processing pair JBL-TSCO

Processing pair JBL-TT

Processing pair JBL-TDG

Processing pair JBL-URI

Processing pair JBL-VRTX

Processing pair JBL-WRB

Processing pair JBL-GWW

Processing pair JBL-WM

Processing pair JKHY-JNJ

Processing pair JKHY-KDP

Processing pair JKHY-KMB

Processing pair JKHY-LHX

Processing pair JKHY-LH

Processing pair JKHY-LDOS

Processing pair JKHY-LYV

Processing pair JKHY-LMT

Processing pair JKHY-LOW

Processing pair JKHY-MMC

Processing pair JKHY-MAS

Processing pair JKHY-MA

Processing pair JKHY-MKC

Processing pair JKHY-MCD

Processing pair JKHY-MDT

Processing pair JKHY-MTD

Processing pair JKHY-MCHP

Processing pair JKHY-MAA

Processing pair JKHY-MDLZ

Processing pair JKHY-MNST

Processing pair JKHY-MCO

Processing pair JKHY-NDAQ

Processing pair JKHY-NEE

Processing pair JKHY-NKE

Processing pair JKHY-NI

Processing pair JKHY-NDSN

Processing pair JKHY-NSC

Processing pair JKHY-NTRS

Processing pair JKHY-NOC

Processing pair JKHY-PKG

Processing pair JKHY-PAYX

Processing pair JKHY-PEP

Processing pair JKHY-PFE

Processing pair JKHY-PNW

Processing pair JKHY-PNC

Processing pair JKHY-POOL

Processing pair JKHY-PG

Processing pair JKHY-PLD

Processing pair JKHY-PEG

Processing pair JKHY-PSA

Processing pair JKHY-DGX

Processing pair JKHY-O

Processing pair JKHY-RF

Processing pair JKHY-RMD

Processing pair JKHY-RVTY

Processing pair JKHY-ROK

Processing pair JKHY-ROL

Processing pair JKHY-ROP

Processing pair JKHY-ROST

Processing pair JKHY-SPGI

Processing pair JKHY-CRM

Processing pair JKHY-SBAC

Processing pair JKHY-SRE

Processing pair JKHY-SHW

Processing pair JKHY-SO

Processing pair JKHY-SBUX

Processing pair JKHY-STE

Processing pair JKHY-SYK

Processing pair JKHY-SYY

Processing pair JKHY-TMUS

Processing pair JKHY-TTWO

Processing pair JKHY-TEL

Processing pair JKHY-TDY

Processing pair JKHY-TXN

Processing pair JKHY-TMO

Processing pair JKHY-TYL

Processing pair JKHY-UDR

Processing pair JKHY-ULTA

Processing pair JKHY-UNP

Processing pair JKHY-UNH

Processing pair JKHY-VRSN

Processing pair JKHY-VRSK

Processing pair JKHY-V

Processing pair JKHY-WM

Processing pair JKHY-WAT

Processing pair JKHY-WEC

Processing pair JKHY-WTW

Processing pair JKHY-XEL

Processing pair JKHY-XYL
ADF test for JKHY-XYL failed with LinAlgError

Processing pair JKHY-YUM

Processing pair JKHY-ZTS
ADF test for JKHY-ZTS failed with LinAlgError

Processing pair J-JCI

Processing pair J-JPM

Processing pair J-KDP

Processing pair J-KEYS
ADF test for J-KEYS failed with LinAlgError

Processing pair J-KKR
ADF test for J-KKR failed with LinAlgError

Processing pair J-KLAC

Processing pair J-LHX

Processing pair J-LH

Processing pair J-LRCX

Processing pair J-LDOS

Processing pair J-LEN

Processing pair J-LIN

Processing pair J-LYV

Processing pair J-LOW

Processing pair J-LULU

Processing pair J-MAR

Processing pair J-MMC

Processing pair J-MLM

Processing pair J-MAS

Processing pair J-MA

Processing pair J-MCD

Processing pair J-MRK

Processing pair J-MET

Processing pair J-MTD

Processing pair J-MCHP

Processing pair J-MU

Processing pair J-MSFT

Processing pair J-MAA

Processing pair J-MOH

Processing pair J-MDLZ

Processing pair J-MPWR

Processing pair J-MCO

Processing pair J-MS

Processing pair J-MSI

Processing pair J-MSCI

Processing pair J-NDAQ

Processing pair J-NEE

Processing pair J-NDSN

Processing pair J-NSC

Processing pair J-NVR

Processing pair J-NXPI
ADF test for J-NXPI failed with LinAlgError

Processing pair J-ORLY

Processing pair J-ODFL

Processing pair J-ORCL

Processing pair J-PKG

Processing pair J-PH

Processing pair J-PAYX

Processing pair J-PEP

Processing pair J-PNC

Processing pair J-POOL

Processing pair J-PG

Processing pair J-PGR

Processing pair J-PLD

Processing pair J-PEG

Processing pair J-PTC

Processing pair J-PSA

Processing pair J-QCOM

Processing pair J-DGX

Processing pair J-RJF

Processing pair J-RF

Processing pair J-RSG

Processing pair J-RMD

Processing pair J-ROK

Processing pair J-ROL

Processing pair J-ROP

Processing pair J-SPGI

Processing pair J-CRM

Processing pair J-STX

Processing pair J-NOW
ADF test for J-NOW failed with LinAlgError

Processing pair J-SHW

Processing pair J-SO

Processing pair J-STE

Processing pair J-SYK

Processing pair J-SNPS

Processing pair J-TMUS

Processing pair J-TGT

Processing pair J-TEL

Processing pair J-TDY

Processing pair J-TER

Processing pair J-TSLA
ADF test for J-TSLA failed with LinAlgError

Processing pair J-TXN

Processing pair J-TPL

Processing pair J-TMO

Processing pair J-TJX

Processing pair J-TSCO

Processing pair J-TT

Processing pair J-TDG

Processing pair J-TRV

Processing pair J-TYL

Processing pair J-UNP

Processing pair J-UPS

Processing pair J-URI

Processing pair J-UNH

Processing pair J-VRSK

Processing pair J-VICI
ADF test for J-VICI failed with LinAlgError

Processing pair J-V

Processing pair J-VMC

Processing pair J-WRB

Processing pair J-WMT

Processing pair J-WM

Processing pair J-WAT

Processing pair J-WST

Processing pair J-WTW

Processing pair J-XYL
ADF test for J-XYL failed with LinAlgError

Processing pair J-YUM

Processing pair J-ZTS
ADF test for J-ZTS failed with LinAlgError

Processing pair JNJ-JCI

Processing pair JNJ-JPM

Processing pair JNJ-KDP

Processing pair JNJ-KEYS
ADF test for JNJ-KEYS failed with LinAlgError

Processing pair JNJ-KMB

Processing pair JNJ-LHX

Processing pair JNJ-LH

Processing pair JNJ-LDOS

Processing pair JNJ-LYV

Processing pair JNJ-LMT

Processing pair JNJ-LOW

Processing pair JNJ-MAR

Processing pair JNJ-MMC

Processing pair JNJ-MAS

Processing pair JNJ-MA

Processing pair JNJ-MKC

Processing pair JNJ-MCD

Processing pair JNJ-MDT

Processing pair JNJ-MRK

Processing pair JNJ-MTD

Processing pair JNJ-MGM

Processing pair JNJ-MCHP

Processing pair JNJ-MAA

Processing pair JNJ-MOH

Processing pair JNJ-MDLZ

Processing pair JNJ-MNST

Processing pair JNJ-MCO

Processing pair JNJ-MSCI

Processing pair JNJ-NDAQ

Processing pair JNJ-NEE

Processing pair JNJ-NKE

Processing pair JNJ-NI

Processing pair JNJ-NDSN

Processing pair JNJ-NSC

Processing pair JNJ-NTRS

Processing pair JNJ-NOC

Processing pair JNJ-NXPI
ADF test for JNJ-NXPI failed with LinAlgError

Processing pair JNJ-PKG

Processing pair JNJ-PAYX

Processing pair JNJ-PEP

Processing pair JNJ-PFE

Processing pair JNJ-PNW

Processing pair JNJ-PNC

Processing pair JNJ-POOL

Processing pair JNJ-PPG

Processing pair JNJ-PFG

Processing pair JNJ-PG

Processing pair JNJ-PLD

Processing pair JNJ-PEG

Processing pair JNJ-PTC

Processing pair JNJ-PSA

Processing pair JNJ-DGX

Processing pair JNJ-RJF

Processing pair JNJ-RTX

Processing pair JNJ-O

Processing pair JNJ-RF

Processing pair JNJ-RMD

Processing pair JNJ-RVTY

Processing pair JNJ-ROK

Processing pair JNJ-ROL

Processing pair JNJ-ROP

Processing pair JNJ-ROST

Processing pair JNJ-SPGI

Processing pair JNJ-CRM

Processing pair JNJ-SBAC

Processing pair JNJ-SRE

Processing pair JNJ-SHW

Processing pair JNJ-SJM

Processing pair JNJ-SNA

Processing pair JNJ-SO

Processing pair JNJ-SBUX

Processing pair JNJ-STE

Processing pair JNJ-SYK

Processing pair JNJ-SYY

Processing pair JNJ-TMUS

Processing pair JNJ-TTWO

Processing pair JNJ-TEL

Processing pair JNJ-TDY

Processing pair JNJ-TXN

Processing pair JNJ-TMO

Processing pair JNJ-TJX

Processing pair JNJ-TRV

Processing pair JNJ-TYL

Processing pair JNJ-UDR

Processing pair JNJ-ULTA

Processing pair JNJ-UNP

Processing pair JNJ-UPS

Processing pair JNJ-UNH

Processing pair JNJ-VRSN

Processing pair JNJ-VRSK

Processing pair JNJ-VICI
ADF test for JNJ-VICI failed with LinAlgError

Processing pair JNJ-V

Processing pair JNJ-VMC

Processing pair JNJ-WRB

Processing pair JNJ-WM

Processing pair JNJ-WAT

Processing pair JNJ-WEC

Processing pair JNJ-WST

Processing pair JNJ-WTW

Processing pair JNJ-XEL

Processing pair JNJ-XYL
ADF test for JNJ-XYL failed with LinAlgError

Processing pair JNJ-YUM

Processing pair JNJ-ZTS
ADF test for JNJ-ZTS failed with LinAlgError

Processing pair JCI-JPM

Processing pair JCI-KR

Processing pair JCI-LH

Processing pair JCI-LEN

Processing pair JCI-LIN

Processing pair JCI-LYV

Processing pair JCI-LKQ

Processing pair JCI-LOW

Processing pair JCI-MMC

Processing pair JCI-MLM

Processing pair JCI-MAS

Processing pair JCI-MA

Processing pair JCI-MCD

Processing pair JCI-MET

Processing pair JCI-MTD

Processing pair JCI-MGM

Processing pair JCI-MCHP

Processing pair JCI-MSFT

Processing pair JCI-MAA

Processing pair JCI-MOH

Processing pair JCI-MDLZ

Processing pair JCI-MPWR

Processing pair JCI-MNST

Processing pair JCI-MCO

Processing pair JCI-MS

Processing pair JCI-MSI

Processing pair JCI-MSCI

Processing pair JCI-NDAQ

Processing pair JCI-NEE

Processing pair JCI-NDSN

Processing pair JCI-NSC

Processing pair JCI-NVR

Processing pair JCI-NXPI
ADF test for JCI-NXPI failed with LinAlgError

Processing pair JCI-ORLY

Processing pair JCI-ODFL

Processing pair JCI-ORCL

Processing pair JCI-PKG

Processing pair JCI-PAYX

Processing pair JCI-PNR

Processing pair JCI-PEP

Processing pair JCI-PM

Processing pair JCI-PNC

Processing pair JCI-POOL

Processing pair JCI-PFG

Processing pair JCI-PG

Processing pair JCI-PLD

Processing pair JCI-PRU

Processing pair JCI-PEG

Processing pair JCI-PTC

Processing pair JCI-PSA

Processing pair JCI-QCOM

Processing pair JCI-DGX

Processing pair JCI-RJF

Processing pair JCI-RTX

Processing pair JCI-RF

Processing pair JCI-RSG

Processing pair JCI-RMD

Processing pair JCI-ROK

Processing pair JCI-ROP

Processing pair JCI-SPGI

Processing pair JCI-STX

Processing pair JCI-SRE

Processing pair JCI-SHW

Processing pair JCI-SNA

Processing pair JCI-SO

Processing pair JCI-SBUX

Processing pair JCI-STE

Processing pair JCI-SYK

Processing pair JCI-TMUS

Processing pair JCI-TEL

Processing pair JCI-TER

Processing pair JCI-TXN

Processing pair JCI-TXT

Processing pair JCI-TMO

Processing pair JCI-TJX

Processing pair JCI-TSCO

Processing pair JCI-TT

Processing pair JCI-TRV

Processing pair JCI-TYL

Processing pair JCI-UNP

Processing pair JCI-UPS

Processing pair JCI-UNH

Processing pair JCI-VLTO
ADF test for JCI-VLTO failed with LinAlgError

Processing pair JCI-VRSK

Processing pair JCI-V

Processing pair JCI-VMC

Processing pair JCI-WRB

Processing pair JCI-WMT

Processing pair JCI-WM

Processing pair JCI-WAT

Processing pair JCI-WELL

Processing pair JCI-WST

Processing pair JCI-WTW

Processing pair JCI-XYL
ADF test for JCI-XYL failed with LinAlgError

Processing pair JCI-YUM

Processing pair JPM-KDP

Processing pair JPM-KKR
ADF test for JPM-KKR failed with LinAlgError

Processing pair JPM-KLAC

Processing pair JPM-LHX

Processing pair JPM-LH

Processing pair JPM-LRCX

Processing pair JPM-LDOS

Processing pair JPM-LEN

Processing pair JPM-LII

Processing pair JPM-LIN

Processing pair JPM-LYV

Processing pair JPM-LMT

Processing pair JPM-L

Processing pair JPM-LOW

Processing pair JPM-MAR

Processing pair JPM-MMC

Processing pair JPM-MLM

Processing pair JPM-MAS

Processing pair JPM-MA

Processing pair JPM-MCD

Processing pair JPM-MRK

Processing pair JPM-META
ADF test for JPM-META failed with LinAlgError

Processing pair JPM-MET

Processing pair JPM-MTD

Processing pair JPM-MCHP

Processing pair JPM-MU

Processing pair JPM-MSFT

Processing pair JPM-MOH

Processing pair JPM-MDLZ

Processing pair JPM-MPWR

Processing pair JPM-MNST

Processing pair JPM-MCO

Processing pair JPM-MS

Processing pair JPM-MSI

Processing pair JPM-MSCI

Processing pair JPM-NDAQ

Processing pair JPM-NTAP

Processing pair JPM-NFLX

Processing pair JPM-NEE

Processing pair JPM-NDSN

Processing pair JPM-NSC

Processing pair JPM-NOC

Processing pair JPM-NVR

Processing pair JPM-NXPI
ADF test for JPM-NXPI failed with LinAlgError

Processing pair JPM-ORLY

Processing pair JPM-ODFL

Processing pair JPM-OKE

Processing pair JPM-ORCL

Processing pair JPM-OTIS
ADF test for JPM-OTIS failed with LinAlgError

Processing pair JPM-PCAR

Processing pair JPM-PKG

Processing pair JPM-PANW
ADF test for JPM-PANW failed with LinAlgError

Processing pair JPM-PH

Processing pair JPM-PAYX

Processing pair JPM-PNR

Processing pair JPM-PEP

Processing pair JPM-PNC

Processing pair JPM-PFG

Processing pair JPM-PG

Processing pair JPM-PGR

Processing pair JPM-PLD

Processing pair JPM-PRU

Processing pair JPM-PEG

Processing pair JPM-PTC

Processing pair JPM-PSA

Processing pair JPM-PHM

Processing pair JPM-QCOM

Processing pair JPM-DGX

Processing pair JPM-RJF

Processing pair JPM-RTX

Processing pair JPM-RF

Processing pair JPM-RSG

Processing pair JPM-ROK

Processing pair JPM-ROL

Processing pair JPM-ROP

Processing pair JPM-ROST

Processing pair JPM-SPGI

Processing pair JPM-CRM

Processing pair JPM-STX

Processing pair JPM-SRE

Processing pair JPM-NOW
ADF test for JPM-NOW failed with LinAlgError

Processing pair JPM-SHW

Processing pair JPM-SNA

Processing pair JPM-SO

Processing pair JPM-STLD

Processing pair JPM-STE

Processing pair JPM-SYK

Processing pair JPM-SNPS

Processing pair JPM-SYY

Processing pair JPM-TMUS

Processing pair JPM-TEL

Processing pair JPM-TDY

Processing pair JPM-TER

Processing pair JPM-TXN

Processing pair JPM-TPL

Processing pair JPM-TXT

Processing pair JPM-TMO

Processing pair JPM-TJX

Processing pair JPM-TSCO

Processing pair JPM-TT

Processing pair JPM-TDG

Processing pair JPM-TRV

Processing pair JPM-TYL

Processing pair JPM-UNP

Processing pair JPM-URI

Processing pair JPM-UNH

Processing pair JPM-VLO

Processing pair JPM-VLTO
ADF test for JPM-VLTO failed with LinAlgError

Processing pair JPM-VRSK

Processing pair JPM-VRTX

Processing pair JPM-V

Processing pair JPM-VMC

Processing pair JPM-WRB

Processing pair JPM-GWW

Processing pair JPM-WMT

Processing pair JPM-WM

Processing pair JPM-WAT

Processing pair JPM-WELL

Processing pair JPM-WTW

Processing pair JPM-XYL
ADF test for JPM-XYL failed with LinAlgError

Processing pair JPM-YUM

Processing pair JNPR-PANW
ADF test for JNPR-PANW failed with LinAlgError

Processing pair K-KMB

Processing pair K-NI

Processing pair K-PPL

Processing pair KDP-KEYS
ADF test for KDP-KEYS failed with LinAlgError

Processing pair KDP-KMB

Processing pair KDP-LHX

Processing pair KDP-LH

Processing pair KDP-LDOS

Processing pair KDP-LYV

Processing pair KDP-LMT

Processing pair KDP-LOW

Processing pair KDP-LULU

Processing pair KDP-MMC

Processing pair KDP-MAS

Processing pair KDP-MA

Processing pair KDP-MKC

Processing pair KDP-MCD

Processing pair KDP-MRK

Processing pair KDP-MTD

Processing pair KDP-MCHP

Processing pair KDP-MSFT

Processing pair KDP-MAA

Processing pair KDP-MOH

Processing pair KDP-MDLZ

Processing pair KDP-MNST

Processing pair KDP-MCO

Processing pair KDP-MS

Processing pair KDP-MSCI

Processing pair KDP-NDAQ

Processing pair KDP-NEE

Processing pair KDP-NKE

Processing pair KDP-NI

Processing pair KDP-NDSN

Processing pair KDP-NSC

Processing pair KDP-NOC

Processing pair KDP-NVR

Processing pair KDP-NXPI
ADF test for KDP-NXPI failed with LinAlgError

Processing pair KDP-ODFL

Processing pair KDP-PKG

Processing pair KDP-PAYX

Processing pair KDP-PEP

Processing pair KDP-PNC

Processing pair KDP-POOL

Processing pair KDP-PG

Processing pair KDP-PLD

Processing pair KDP-PEG

Processing pair KDP-PTC

Processing pair KDP-PSA

Processing pair KDP-DGX

Processing pair KDP-RJF

Processing pair KDP-O

Processing pair KDP-RF

Processing pair KDP-RSG

Processing pair KDP-RMD

Processing pair KDP-RVTY

Processing pair KDP-ROK

Processing pair KDP-ROL

Processing pair KDP-ROP

Processing pair KDP-ROST

Processing pair KDP-SPGI

Processing pair KDP-CRM

Processing pair KDP-SBAC

Processing pair KDP-SRE

Processing pair KDP-SHW

Processing pair KDP-SO

Processing pair KDP-SBUX

Processing pair KDP-STE

Processing pair KDP-SYK

Processing pair KDP-SYY

Processing pair KDP-TMUS

Processing pair KDP-TTWO

Processing pair KDP-TEL

Processing pair KDP-TDY

Processing pair KDP-TER

Processing pair KDP-TXN

Processing pair KDP-TMO

Processing pair KDP-TJX

Processing pair KDP-TSCO

Processing pair KDP-TRV

Processing pair KDP-TYL

Processing pair KDP-UDR

Processing pair KDP-ULTA

Processing pair KDP-UNP

Processing pair KDP-UPS

Processing pair KDP-UNH

Processing pair KDP-VRSN

Processing pair KDP-VRSK

Processing pair KDP-V

Processing pair KDP-VMC

Processing pair KDP-WRB

Processing pair KDP-WMT

Processing pair KDP-WM

Processing pair KDP-WAT

Processing pair KDP-WEC

Processing pair KDP-WST

Processing pair KDP-WTW

Processing pair KDP-XEL

Processing pair KDP-XYL
ADF test for KDP-XYL failed with LinAlgError

Processing pair KDP-YUM

Processing pair KDP-ZTS
ADF test for KDP-ZTS failed with LinAlgError

Processing pair KEY-MTB

Processing pair KEY-NTRS

Processing pair KEY-PNC

Processing pair KEY-RF

Processing pair KEY-TFC

Processing pair KEY-USB

Processing pair KEYS-LHX
ADF test for KEYS-LHX failed with LinAlgError

Processing pair KEYS-LH
ADF test for KEYS-LH failed with LinAlgError

Processing pair KEYS-LYV
ADF test for KEYS-LYV failed with LinAlgError

Processing pair KEYS-LOW
ADF test for KEYS-LOW failed with LinAlgError

Processing pair KEYS-LULU
ADF test for KEYS-LULU failed with LinAlgError

Processing pair KEYS-MA
ADF test for KEYS-MA failed with LinAlgError

Processing pair KEYS-MCD
ADF test for KEYS-MCD failed with LinAlgError

Processing pair KEYS-MTD
ADF test for KEYS-MTD failed with LinAlgError

Processing pair KEYS-MCHP
ADF test for KEYS-MCHP failed with LinAlgError

Processing pair KEYS-MAA
ADF test for KEYS-MAA failed with LinAlgError

Processing pair KEYS-MOH
ADF test for KEYS-MOH failed with LinAlgError

Processing pair KEYS-MDLZ
ADF test for KEYS-MDLZ failed with LinAlgError

Processing pair KEYS-MNST
ADF test for KEYS-MNST failed with LinAlgError

Processing pair KEYS-MCO
ADF test for KEYS-MCO failed with LinAlgError

Processing pair KEYS-MS
ADF test for KEYS-MS failed with LinAlgError

Processing pair KEYS-MSCI
ADF test for KEYS-MSCI failed with LinAlgError

Processing pair KEYS-NDAQ
ADF test for KEYS-NDAQ failed with LinAlgError

Processing pair KEYS-NEE
ADF test for KEYS-NEE failed with LinAlgError

Processing pair KEYS-NDSN
ADF test for KEYS-NDSN failed with LinAlgError

Processing pair KEYS-NSC
ADF test for KEYS-NSC failed with LinAlgError

Processing pair KEYS-ODFL
ADF test for KEYS-ODFL failed with LinAlgError

Processing pair KEYS-PAYX
ADF test for KEYS-PAYX failed with LinAlgError

Processing pair KEYS-PEP
ADF test for KEYS-PEP failed with LinAlgError

Processing pair KEYS-POOL
ADF test for KEYS-POOL failed with LinAlgError

Processing pair KEYS-PG
ADF test for KEYS-PG failed with LinAlgError

Processing pair KEYS-PLD
ADF test for KEYS-PLD failed with LinAlgError

Processing pair KEYS-DGX
ADF test for KEYS-DGX failed with LinAlgError

Processing pair KEYS-RMD
ADF test for KEYS-RMD failed with LinAlgError

Processing pair KEYS-RVTY
ADF test for KEYS-RVTY failed with LinAlgError

Processing pair KEYS-ROK
ADF test for KEYS-ROK failed with LinAlgError

Processing pair KEYS-ROP
ADF test for KEYS-ROP failed with LinAlgError

Processing pair KEYS-SPGI
ADF test for KEYS-SPGI failed with LinAlgError

Processing pair KEYS-SHW
ADF test for KEYS-SHW failed with LinAlgError

Processing pair KEYS-SBUX
ADF test for KEYS-SBUX failed with LinAlgError

Processing pair KEYS-STE
ADF test for KEYS-STE failed with LinAlgError

Processing pair KEYS-TGT
ADF test for KEYS-TGT failed with LinAlgError

Processing pair KEYS-TEL
ADF test for KEYS-TEL failed with LinAlgError

Processing pair KEYS-TDY
ADF test for KEYS-TDY failed with LinAlgError

Processing pair KEYS-TER
ADF test for KEYS-TER failed with LinAlgError

Processing pair KEYS-TXN
ADF test for KEYS-TXN failed with LinAlgError

Processing pair KEYS-TMO
ADF test for KEYS-TMO failed with LinAlgError

Processing pair KEYS-TYL
ADF test for KEYS-TYL failed with LinAlgError

Processing pair KEYS-UNP
ADF test for KEYS-UNP failed with LinAlgError

Processing pair KEYS-UPS
ADF test for KEYS-UPS failed with LinAlgError

Processing pair KEYS-UNH
ADF test for KEYS-UNH failed with LinAlgError

Processing pair KEYS-VRSK
ADF test for KEYS-VRSK failed with LinAlgError

Processing pair KEYS-V
ADF test for KEYS-V failed with LinAlgError

Processing pair KEYS-WM
ADF test for KEYS-WM failed with LinAlgError

Processing pair KEYS-WAT
ADF test for KEYS-WAT failed with LinAlgError

Processing pair KEYS-WEC
ADF test for KEYS-WEC failed with LinAlgError

Processing pair KEYS-WST
ADF test for KEYS-WST failed with LinAlgError

Processing pair KEYS-WTW
ADF test for KEYS-WTW failed with LinAlgError

Processing pair KEYS-XEL
ADF test for KEYS-XEL failed with LinAlgError

Processing pair KEYS-XYL
ADF test for KEYS-XYL failed with LinAlgError

Processing pair KEYS-YUM
ADF test for KEYS-YUM failed with LinAlgError

Processing pair KEYS-ZTS
ADF test for KEYS-ZTS failed with LinAlgError

Processing pair KMB-LHX

Processing pair KMB-LMT

Processing pair KMB-MAS

Processing pair KMB-MKC

Processing pair KMB-MDT

Processing pair KMB-MDLZ

Processing pair KMB-MNST

Processing pair KMB-NEE

Processing pair KMB-NI

Processing pair KMB-NOC

Processing pair KMB-PEP

Processing pair KMB-PNW

Processing pair KMB-PPG

Processing pair KMB-PPL

Processing pair KMB-PG

Processing pair KMB-PEG

Processing pair KMB-PSA

Processing pair KMB-DGX

Processing pair KMB-O

Processing pair KMB-ROP

Processing pair KMB-ROST

Processing pair KMB-SRE

Processing pair KMB-SJM

Processing pair KMB-SBUX

Processing pair KMB-SYY

Processing pair KMB-TYL

Processing pair KMB-UDR

Processing pair KMB-UNP

Processing pair KMB-VLTO
ADF test for KMB-VLTO failed with LinAlgError

Processing pair KMB-VRSN

Processing pair KMB-V

Processing pair KMB-WEC

Processing pair KMB-WTW

Processing pair KMB-XEL

Processing pair KMB-YUM

Processing pair KMB-ZBH

Processing pair KIM-REG

Processing pair KKR-KLAC
ADF test for KKR-KLAC failed with LinAlgError

Processing pair KKR-LRCX
ADF test for KKR-LRCX failed with LinAlgError

Processing pair KKR-LEN
ADF test for KKR-LEN failed with LinAlgError

Processing pair KKR-LII
ADF test for KKR-LII failed with LinAlgError

Processing pair KKR-LLY
ADF test for KKR-LLY failed with LinAlgError

Processing pair KKR-LIN
ADF test for KKR-LIN failed with LinAlgError

Processing pair KKR-L
ADF test for KKR-L failed with LinAlgError

Processing pair KKR-LOW
ADF test for KKR-LOW failed with LinAlgError

Processing pair KKR-MMC
ADF test for KKR-MMC failed with LinAlgError

Processing pair KKR-MLM
ADF test for KKR-MLM failed with LinAlgError

Processing pair KKR-META
ADF test for KKR-META failed with LinAlgError

Processing pair KKR-MET
ADF test for KKR-MET failed with LinAlgError

Processing pair KKR-MU
ADF test for KKR-MU failed with LinAlgError

Processing pair KKR-MSFT
ADF test for KKR-MSFT failed with LinAlgError

Processing pair KKR-MPWR
ADF test for KKR-MPWR failed with LinAlgError

Processing pair KKR-MCO
ADF test for KKR-MCO failed with LinAlgError

Processing pair KKR-MS
ADF test for KKR-MS failed with LinAlgError

Processing pair KKR-MSI
ADF test for KKR-MSI failed with LinAlgError

Processing pair KKR-NTAP
ADF test for KKR-NTAP failed with LinAlgError

Processing pair KKR-NWS
ADF test for KKR-NWS failed with LinAlgError

Processing pair KKR-NRG
ADF test for KKR-NRG failed with LinAlgError

Processing pair KKR-NVDA
ADF test for KKR-NVDA failed with LinAlgError

Processing pair KKR-NVR
ADF test for KKR-NVR failed with LinAlgError

Processing pair KKR-NXPI
ADF test for KKR-NXPI failed with LinAlgError

Processing pair KKR-ORLY
ADF test for KKR-ORLY failed with LinAlgError

Processing pair KKR-ODFL
ADF test for KKR-ODFL failed with LinAlgError

Processing pair KKR-ORCL
ADF test for KKR-ORCL failed with LinAlgError

Processing pair KKR-PCAR
ADF test for KKR-PCAR failed with LinAlgError

Processing pair KKR-PKG
ADF test for KKR-PKG failed with LinAlgError

Processing pair KKR-PANW
ADF test for KKR-PANW failed with LinAlgError

Processing pair KKR-PH
ADF test for KKR-PH failed with LinAlgError

Processing pair KKR-PNR
ADF test for KKR-PNR failed with LinAlgError

Processing pair KKR-PGR
ADF test for KKR-PGR failed with LinAlgError

Processing pair KKR-PTC
ADF test for KKR-PTC failed with LinAlgError

Processing pair KKR-PHM
ADF test for KKR-PHM failed with LinAlgError

Processing pair KKR-PWR
ADF test for KKR-PWR failed with LinAlgError

Processing pair KKR-QCOM
ADF test for KKR-QCOM failed with LinAlgError

Processing pair KKR-RJF
ADF test for KKR-RJF failed with LinAlgError

Processing pair KKR-RSG
ADF test for KKR-RSG failed with LinAlgError

Processing pair KKR-STX
ADF test for KKR-STX failed with LinAlgError

Processing pair KKR-NOW
ADF test for KKR-NOW failed with LinAlgError

Processing pair KKR-SHW
ADF test for KKR-SHW failed with LinAlgError

Processing pair KKR-SO
ADF test for KKR-SO failed with LinAlgError

Processing pair KKR-STLD
ADF test for KKR-STLD failed with LinAlgError

Processing pair KKR-SYK
ADF test for KKR-SYK failed with LinAlgError

Processing pair KKR-SNPS
ADF test for KKR-SNPS failed with LinAlgError

Processing pair KKR-TMUS
ADF test for KKR-TMUS failed with LinAlgError

Processing pair KKR-TPL
ADF test for KKR-TPL failed with LinAlgError

Processing pair KKR-TJX
ADF test for KKR-TJX failed with LinAlgError

Processing pair KKR-TSCO
ADF test for KKR-TSCO failed with LinAlgError

Processing pair KKR-TT
ADF test for KKR-TT failed with LinAlgError

Processing pair KKR-TDG
ADF test for KKR-TDG failed with LinAlgError

Processing pair KKR-TRV
ADF test for KKR-TRV failed with LinAlgError

Processing pair KKR-URI
ADF test for KKR-URI failed with LinAlgError

Processing pair KKR-VLTO
ADF test for KKR-VLTO failed with LinAlgError

Processing pair KKR-VRSK
ADF test for KKR-VRSK failed with LinAlgError

Processing pair KKR-VMC
ADF test for KKR-VMC failed with LinAlgError

Processing pair KKR-WRB
ADF test for KKR-WRB failed with LinAlgError

Processing pair KKR-GWW
ADF test for KKR-GWW failed with LinAlgError

Processing pair KKR-WMT
ADF test for KKR-WMT failed with LinAlgError

Processing pair KKR-WM
ADF test for KKR-WM failed with LinAlgError

Processing pair KKR-WELL
ADF test for KKR-WELL failed with LinAlgError

Processing pair KLAC-LRCX

Processing pair KLAC-LDOS

Processing pair KLAC-LEN

Processing pair KLAC-LII

Processing pair KLAC-LLY

Processing pair KLAC-LIN

Processing pair KLAC-L

Processing pair KLAC-LOW

Processing pair KLAC-MPC
ADF test for KLAC-MPC failed with LinAlgError

Processing pair KLAC-MAR

Processing pair KLAC-MMC

Processing pair KLAC-MLM

Processing pair KLAC-MA

Processing pair KLAC-MCK

Processing pair KLAC-MRK

Processing pair KLAC-MET

Processing pair KLAC-MCHP

Processing pair KLAC-MU

Processing pair KLAC-MSFT

Processing pair KLAC-MOH

Processing pair KLAC-MPWR

Processing pair KLAC-MCO

Processing pair KLAC-MS

Processing pair KLAC-MSI

Processing pair KLAC-MSCI

Processing pair KLAC-NDAQ

Processing pair KLAC-NTAP

Processing pair KLAC-NUE

Processing pair KLAC-NVDA

Processing pair KLAC-NVR

Processing pair KLAC-NXPI
ADF test for KLAC-NXPI failed with LinAlgError

Processing pair KLAC-ORLY

Processing pair KLAC-ODFL

Processing pair KLAC-ON

Processing pair KLAC-ORCL

Processing pair KLAC-PCAR

Processing pair KLAC-PKG

Processing pair KLAC-PANW
ADF test for KLAC-PANW failed with LinAlgError

Processing pair KLAC-PH

Processing pair KLAC-PAYX

Processing pair KLAC-PG

Processing pair KLAC-PGR

Processing pair KLAC-PTC

Processing pair KLAC-PHM

Processing pair KLAC-PWR

Processing pair KLAC-QCOM

Processing pair KLAC-RJF

Processing pair KLAC-RSG

Processing pair KLAC-ROL

Processing pair KLAC-SPGI

Processing pair KLAC-STX

Processing pair KLAC-NOW
ADF test for KLAC-NOW failed with LinAlgError

Processing pair KLAC-SHW

Processing pair KLAC-SO

Processing pair KLAC-STLD

Processing pair KLAC-SYK

Processing pair KLAC-SNPS

Processing pair KLAC-TMUS

Processing pair KLAC-TPL

Processing pair KLAC-TJX

Processing pair KLAC-TSCO

Processing pair KLAC-TT

Processing pair KLAC-TDG

Processing pair KLAC-TRV

Processing pair KLAC-URI

Processing pair KLAC-UNH

Processing pair KLAC-VRSK

Processing pair KLAC-VRTX

Processing pair KLAC-VMC

Processing pair KLAC-WRB

Processing pair KLAC-GWW

Processing pair KLAC-WMT

Processing pair KLAC-WM

Processing pair KLAC-WTW

Processing pair KHC-PCG
ADF test for KHC-PCG failed with LinAlgError

Processing pair KR-LOW

Processing pair KR-MMC

Processing pair KR-MET

Processing pair KR-MDLZ

Processing pair KR-MNST

Processing pair KR-NDAQ

Processing pair KR-NXPI
ADF test for KR-NXPI failed with LinAlgError

Processing pair KR-ORLY

Processing pair KR-PAYX

Processing pair KR-PEP

Processing pair KR-PFG

Processing pair KR-PSA

Processing pair KR-RJF

Processing pair KR-REGN

Processing pair KR-SRE

Processing pair KR-SNA

Processing pair KR-SO

Processing pair KR-TJX

Processing pair KR-TSCO

Processing pair KR-TRV

Processing pair KR-UNH

Processing pair KR-VMC

Processing pair KR-WRB

Processing pair LHX-LH

Processing pair LHX-LDOS

Processing pair LHX-LYV

Processing pair LHX-LMT

Processing pair LHX-LOW

Processing pair LHX-MAR

Processing pair LHX-MMC

Processing pair LHX-MAS

Processing pair LHX-MA

Processing pair LHX-MKC

Processing pair LHX-MCD

Processing pair LHX-MTD

Processing pair LHX-MCHP

Processing pair LHX-MU

Processing pair LHX-MSFT

Processing pair LHX-MAA

Processing pair LHX-MOH

Processing pair LHX-MDLZ

Processing pair LHX-MNST

Processing pair LHX-MCO

Processing pair LHX-MS

Processing pair LHX-MSCI

Processing pair LHX-NDAQ

Processing pair LHX-NEE

Processing pair LHX-NKE

Processing pair LHX-NI

Processing pair LHX-NDSN

Processing pair LHX-NSC

Processing pair LHX-NTRS

Processing pair LHX-NOC

Processing pair LHX-NVR

Processing pair LHX-PKG

Processing pair LHX-PAYX

Processing pair LHX-PEP

Processing pair LHX-PNC

Processing pair LHX-POOL

Processing pair LHX-PG

Processing pair LHX-PLD

Processing pair LHX-PEG

Processing pair LHX-PTC

Processing pair LHX-PSA

Processing pair LHX-DGX

Processing pair LHX-RJF

Processing pair LHX-RTX

Processing pair LHX-O

Processing pair LHX-RF

Processing pair LHX-RSG

Processing pair LHX-RMD

Processing pair LHX-RVTY

Processing pair LHX-ROK

Processing pair LHX-ROL

Processing pair LHX-ROP

Processing pair LHX-ROST

Processing pair LHX-SPGI

Processing pair LHX-CRM

Processing pair LHX-SBAC

Processing pair LHX-SRE

Processing pair LHX-SHW

Processing pair LHX-SO

Processing pair LHX-SBUX

Processing pair LHX-STE

Processing pair LHX-SYK

Processing pair LHX-SYY

Processing pair LHX-TMUS

Processing pair LHX-TTWO

Processing pair LHX-TEL

Processing pair LHX-TDY

Processing pair LHX-TER

Processing pair LHX-TXN

Processing pair LHX-TMO

Processing pair LHX-TJX

Processing pair LHX-TRV

Processing pair LHX-TYL

Processing pair LHX-UDR

Processing pair LHX-UNP

Processing pair LHX-UNH

Processing pair LHX-VRSN

Processing pair LHX-VRSK

Processing pair LHX-V

Processing pair LHX-VMC

Processing pair LHX-WRB

Processing pair LHX-WMT

Processing pair LHX-WM

Processing pair LHX-WAT

Processing pair LHX-WEC

Processing pair LHX-WTW

Processing pair LHX-XEL

Processing pair LHX-XYL
ADF test for LHX-XYL failed with LinAlgError

Processing pair LHX-YUM

Processing pair LHX-ZTS
ADF test for LHX-ZTS failed with LinAlgError

Processing pair LH-LDOS

Processing pair LH-LIN

Processing pair LH-LYV

Processing pair LH-LMT

Processing pair LH-LOW

Processing pair LH-LULU

Processing pair LH-MAR

Processing pair LH-MMC

Processing pair LH-MLM

Processing pair LH-MAS

Processing pair LH-MA

Processing pair LH-MKC

Processing pair LH-MCD

Processing pair LH-MET

Processing pair LH-MTD

Processing pair LH-MGM

Processing pair LH-MCHP

Processing pair LH-MU

Processing pair LH-MSFT

Processing pair LH-MAA

Processing pair LH-MOH

Processing pair LH-MDLZ

Processing pair LH-MNST

Processing pair LH-MCO

Processing pair LH-MS

Processing pair LH-MSCI

Processing pair LH-NDAQ

Processing pair LH-NEE

Processing pair LH-NKE

Processing pair LH-NDSN

Processing pair LH-NSC

Processing pair LH-NOC

Processing pair LH-NVR

Processing pair LH-NXPI
ADF test for LH-NXPI failed with LinAlgError

Processing pair LH-ODFL

Processing pair LH-PKG

Processing pair LH-PAYX

Processing pair LH-PEP

Processing pair LH-PNC

Processing pair LH-POOL

Processing pair LH-PPG

Processing pair LH-PFG

Processing pair LH-PG

Processing pair LH-PLD

Processing pair LH-PEG

Processing pair LH-PTC

Processing pair LH-PSA

Processing pair LH-QCOM

Processing pair LH-DGX

Processing pair LH-RJF

Processing pair LH-RF

Processing pair LH-RSG

Processing pair LH-RMD

Processing pair LH-RVTY

Processing pair LH-ROK

Processing pair LH-ROL

Processing pair LH-ROP

Processing pair LH-ROST

Processing pair LH-SPGI

Processing pair LH-CRM

Processing pair LH-SBAC

Processing pair LH-STX

Processing pair LH-SRE

Processing pair LH-NOW
ADF test for LH-NOW failed with LinAlgError

Processing pair LH-SHW

Processing pair LH-SNA

Processing pair LH-SO

Processing pair LH-SBUX

Processing pair LH-STE

Processing pair LH-SYK

Processing pair LH-SYY

Processing pair LH-TMUS

Processing pair LH-TROW

Processing pair LH-TTWO

Processing pair LH-TGT

Processing pair LH-TEL

Processing pair LH-TDY

Processing pair LH-TER

Processing pair LH-TSLA
ADF test for LH-TSLA failed with LinAlgError

Processing pair LH-TXN

Processing pair LH-TXT

Processing pair LH-TMO

Processing pair LH-TJX

Processing pair LH-TSCO

Processing pair LH-TRV

Processing pair LH-TRMB

Processing pair LH-TYL

Processing pair LH-UDR

Processing pair LH-ULTA

Processing pair LH-UNP

Processing pair LH-UPS

Processing pair LH-UNH

Processing pair LH-VRSN

Processing pair LH-VRSK

Processing pair LH-V

Processing pair LH-VMC

Processing pair LH-WRB

Processing pair LH-WMT

Processing pair LH-WM

Processing pair LH-WAT

Processing pair LH-WEC

Processing pair LH-WST

Processing pair LH-WTW

Processing pair LH-XEL

Processing pair LH-XYL
ADF test for LH-XYL failed with LinAlgError

Processing pair LH-YUM

Processing pair LH-ZBRA

Processing pair LH-ZTS
ADF test for LH-ZTS failed with LinAlgError

Processing pair LRCX-LDOS

Processing pair LRCX-LEN

Processing pair LRCX-LII

Processing pair LRCX-LLY

Processing pair LRCX-LIN

Processing pair LRCX-LOW

Processing pair LRCX-MAR

Processing pair LRCX-MMC

Processing pair LRCX-MLM

Processing pair LRCX-MAS

Processing pair LRCX-MA

Processing pair LRCX-MCD

Processing pair LRCX-MRK

Processing pair LRCX-META
ADF test for LRCX-META failed with LinAlgError

Processing pair LRCX-MET

Processing pair LRCX-MTD

Processing pair LRCX-MCHP

Processing pair LRCX-MU

Processing pair LRCX-MSFT

Processing pair LRCX-MOH

Processing pair LRCX-MPWR

Processing pair LRCX-MCO

Processing pair LRCX-MS

Processing pair LRCX-MSI

Processing pair LRCX-MSCI

Processing pair LRCX-NDAQ

Processing pair LRCX-NTAP

Processing pair LRCX-NDSN

Processing pair LRCX-NUE

Processing pair LRCX-NVR

Processing pair LRCX-NXPI
ADF test for LRCX-NXPI failed with LinAlgError

Processing pair LRCX-ORLY

Processing pair LRCX-ODFL

Processing pair LRCX-ON

Processing pair LRCX-ORCL

Processing pair LRCX-PCAR

Processing pair LRCX-PKG

Processing pair LRCX-PANW
ADF test for LRCX-PANW failed with LinAlgError

Processing pair LRCX-PH

Processing pair LRCX-PAYX

Processing pair LRCX-POOL

Processing pair LRCX-PG

Processing pair LRCX-PGR

Processing pair LRCX-PLD

Processing pair LRCX-PTC

Processing pair LRCX-PHM

Processing pair LRCX-PWR

Processing pair LRCX-QCOM

Processing pair LRCX-RJF

Processing pair LRCX-RSG

Processing pair LRCX-ROK

Processing pair LRCX-ROL

Processing pair LRCX-ROP

Processing pair LRCX-SPGI

Processing pair LRCX-CRM

Processing pair LRCX-STX

Processing pair LRCX-NOW
ADF test for LRCX-NOW failed with LinAlgError

Processing pair LRCX-SHW

Processing pair LRCX-SO

Processing pair LRCX-STLD

Processing pair LRCX-STE

Processing pair LRCX-SYK

Processing pair LRCX-SNPS

Processing pair LRCX-TMUS

Processing pair LRCX-TEL

Processing pair LRCX-TER

Processing pair LRCX-TXN

Processing pair LRCX-TMO

Processing pair LRCX-TJX

Processing pair LRCX-TSCO

Processing pair LRCX-TT

Processing pair LRCX-TDG

Processing pair LRCX-TYL

Processing pair LRCX-UNP

Processing pair LRCX-URI

Processing pair LRCX-UNH

Processing pair LRCX-VRSK

Processing pair LRCX-VRTX

Processing pair LRCX-V

Processing pair LRCX-VMC

Processing pair LRCX-WRB

Processing pair LRCX-GWW

Processing pair LRCX-WMT

Processing pair LRCX-WM

Processing pair LRCX-WST

Processing pair LRCX-WTW

Processing pair LRCX-XYL
ADF test for LRCX-XYL failed with LinAlgError

Processing pair LRCX-YUM

Processing pair LDOS-LII

Processing pair LDOS-LIN

Processing pair LDOS-LYV

Processing pair LDOS-LMT

Processing pair LDOS-LOW

Processing pair LDOS-MAR

Processing pair LDOS-MMC

Processing pair LDOS-MLM

Processing pair LDOS-MAS

Processing pair LDOS-MA

Processing pair LDOS-MCD

Processing pair LDOS-MRK

Processing pair LDOS-META
ADF test for LDOS-META failed with LinAlgError

Processing pair LDOS-MET

Processing pair LDOS-MTD

Processing pair LDOS-MCHP

Processing pair LDOS-MU

Processing pair LDOS-MSFT

Processing pair LDOS-MOH

Processing pair LDOS-MDLZ

Processing pair LDOS-MPWR

Processing pair LDOS-MNST

Processing pair LDOS-MCO

Processing pair LDOS-MS

Processing pair LDOS-MSI

Processing pair LDOS-MSCI

Processing pair LDOS-NDAQ

Processing pair LDOS-NFLX

Processing pair LDOS-NEE

Processing pair LDOS-NDSN

Processing pair LDOS-NSC

Processing pair LDOS-NOC

Processing pair LDOS-NVR

Processing pair LDOS-NXPI
ADF test for LDOS-NXPI failed with LinAlgError

Processing pair LDOS-ORLY

Processing pair LDOS-ODFL

Processing pair LDOS-ORCL

Processing pair LDOS-PCAR

Processing pair LDOS-PKG

Processing pair LDOS-PH

Processing pair LDOS-PAYX

Processing pair LDOS-PEP

Processing pair LDOS-PNC

Processing pair LDOS-PG

Processing pair LDOS-PGR

Processing pair LDOS-PLD

Processing pair LDOS-PEG

Processing pair LDOS-PTC

Processing pair LDOS-DGX

Processing pair LDOS-RJF

Processing pair LDOS-RTX

Processing pair LDOS-RF

Processing pair LDOS-RSG

Processing pair LDOS-RMD

Processing pair LDOS-ROK

Processing pair LDOS-ROL

Processing pair LDOS-ROP

Processing pair LDOS-ROST

Processing pair LDOS-SPGI

Processing pair LDOS-CRM

Processing pair LDOS-SRE

Processing pair LDOS-NOW
ADF test for LDOS-NOW failed with LinAlgError

Processing pair LDOS-SHW

Processing pair LDOS-SO

Processing pair LDOS-STE

Processing pair LDOS-SYK

Processing pair LDOS-SNPS

Processing pair LDOS-SYY

Processing pair LDOS-TMUS

Processing pair LDOS-TTWO

Processing pair LDOS-TEL

Processing pair LDOS-TDY

Processing pair LDOS-TER

Processing pair LDOS-TXN

Processing pair LDOS-TPL

Processing pair LDOS-TMO

Processing pair LDOS-TJX

Processing pair LDOS-TSCO

Processing pair LDOS-TT

Processing pair LDOS-TDG

Processing pair LDOS-TRV

Processing pair LDOS-TYL

Processing pair LDOS-UNP

Processing pair LDOS-UNH

Processing pair LDOS-VLTO
ADF test for LDOS-VLTO failed with LinAlgError

Processing pair LDOS-VRSK

Processing pair LDOS-VRTX

Processing pair LDOS-V

Processing pair LDOS-VMC

Processing pair LDOS-WRB

Processing pair LDOS-WMT

Processing pair LDOS-WM

Processing pair LDOS-WAT

Processing pair LDOS-WEC

Processing pair LDOS-WTW

Processing pair LDOS-XEL

Processing pair LDOS-XYL
ADF test for LDOS-XYL failed with LinAlgError

Processing pair LDOS-YUM

Processing pair LDOS-ZTS
ADF test for LDOS-ZTS failed with LinAlgError

Processing pair LEN-LII

Processing pair LEN-LLY

Processing pair LEN-LIN

Processing pair LEN-L

Processing pair LEN-LOW

Processing pair LEN-MPC
ADF test for LEN-MPC failed with LinAlgError

Processing pair LEN-MAR

Processing pair LEN-MMC

Processing pair LEN-MLM

Processing pair LEN-MAS

Processing pair LEN-MA

Processing pair LEN-MCD

Processing pair LEN-MCK

Processing pair LEN-MRK

Processing pair LEN-META
ADF test for LEN-META failed with LinAlgError

Processing pair LEN-MET

Processing pair LEN-MCHP

Processing pair LEN-MU

Processing pair LEN-MSFT

Processing pair LEN-MDLZ

Processing pair LEN-MPWR

Processing pair LEN-MCO

Processing pair LEN-MS

Processing pair LEN-MSI

Processing pair LEN-NDAQ

Processing pair LEN-NDSN

Processing pair LEN-NUE

Processing pair LEN-NVR

Processing pair LEN-NXPI
ADF test for LEN-NXPI failed with LinAlgError

Processing pair LEN-ORLY

Processing pair LEN-ODFL

Processing pair LEN-ORCL

Processing pair LEN-OTIS
ADF test for LEN-OTIS failed with LinAlgError

Processing pair LEN-PCAR

Processing pair LEN-PKG

Processing pair LEN-PANW
ADF test for LEN-PANW failed with LinAlgError

Processing pair LEN-PH

Processing pair LEN-PAYX

Processing pair LEN-PNR

Processing pair LEN-PG

Processing pair LEN-PGR

Processing pair LEN-PEG

Processing pair LEN-PTC

Processing pair LEN-PHM

Processing pair LEN-PWR

Processing pair LEN-QCOM

Processing pair LEN-RJF

Processing pair LEN-REGN

Processing pair LEN-RSG

Processing pair LEN-ROL

Processing pair LEN-ROP

Processing pair LEN-SPGI

Processing pair LEN-STX

Processing pair LEN-NOW
ADF test for LEN-NOW failed with LinAlgError

Processing pair LEN-SHW

Processing pair LEN-SNA

Processing pair LEN-SO

Processing pair LEN-STLD

Processing pair LEN-SYK

Processing pair LEN-SNPS

Processing pair LEN-TMUS

Processing pair LEN-TEL

Processing pair LEN-TJX

Processing pair LEN-TSCO

Processing pair LEN-TT

Processing pair LEN-TDG

Processing pair LEN-TRV

Processing pair LEN-TYL

Processing pair LEN-URI

Processing pair LEN-UNH

Processing pair LEN-VRSK

Processing pair LEN-VRTX

Processing pair LEN-V

Processing pair LEN-VMC

Processing pair LEN-WRB

Processing pair LEN-GWW

Processing pair LEN-WMT

Processing pair LEN-WM

Processing pair LEN-WELL

Processing pair LEN-WTW

Processing pair LII-LIN

Processing pair LII-LYV

Processing pair LII-LMT

Processing pair LII-LOW

Processing pair LII-MAR

Processing pair LII-MMC

Processing pair LII-MLM

Processing pair LII-MAS

Processing pair LII-MA

Processing pair LII-MCD

Processing pair LII-MRK

Processing pair LII-META
ADF test for LII-META failed with LinAlgError

Processing pair LII-MCHP

Processing pair LII-MU

Processing pair LII-MSFT

Processing pair LII-MDLZ

Processing pair LII-MPWR

Processing pair LII-MCO

Processing pair LII-MS

Processing pair LII-MSI

Processing pair LII-NDAQ

Processing pair LII-NTAP

Processing pair LII-NFLX

Processing pair LII-NDSN

Processing pair LII-NVR

Processing pair LII-NXPI
ADF test for LII-NXPI failed with LinAlgError

Processing pair LII-ORLY

Processing pair LII-ODFL

Processing pair LII-OKE

Processing pair LII-ORCL

Processing pair LII-PCAR

Processing pair LII-PKG

Processing pair LII-PANW
ADF test for LII-PANW failed with LinAlgError

Processing pair LII-PH

Processing pair LII-PAYX

Processing pair LII-PNR

Processing pair LII-PG

Processing pair LII-PGR

Processing pair LII-PEG

Processing pair LII-PTC

Processing pair LII-PHM

Processing pair LII-RJF

Processing pair LII-RSG

Processing pair LII-ROL

Processing pair LII-ROP

Processing pair LII-ROST

Processing pair LII-SPGI

Processing pair LII-CRM

Processing pair LII-NOW
ADF test for LII-NOW failed with LinAlgError

Processing pair LII-SHW

Processing pair LII-SNA

Processing pair LII-SO

Processing pair LII-STE

Processing pair LII-SYK

Processing pair LII-SNPS

Processing pair LII-TMUS

Processing pair LII-TEL

Processing pair LII-TXN

Processing pair LII-TJX

Processing pair LII-TSCO

Processing pair LII-TT

Processing pair LII-TDG

Processing pair LII-TRV

Processing pair LII-TYL

Processing pair LII-UNP

Processing pair LII-URI

Processing pair LII-UNH

Processing pair LII-VLTO
ADF test for LII-VLTO failed with LinAlgError

Processing pair LII-VRSK

Processing pair LII-VRTX

Processing pair LII-V

Processing pair LII-VMC

Processing pair LII-WRB

Processing pair LII-GWW

Processing pair LII-WMT

Processing pair LII-WM

Processing pair LII-WELL

Processing pair LII-WTW

Processing pair LII-XYL
ADF test for LII-XYL failed with LinAlgError

Processing pair LII-YUM

Processing pair LLY-LIN

Processing pair LLY-MPC
ADF test for LLY-MPC failed with LinAlgError

Processing pair LLY-MMC

Processing pair LLY-MLM

Processing pair LLY-MCK

Processing pair LLY-MSFT

Processing pair LLY-MPWR

Processing pair LLY-MSI

Processing pair LLY-NRG

Processing pair LLY-NVDA

Processing pair LLY-NVR

Processing pair LLY-ORLY

Processing pair LLY-ORCL

Processing pair LLY-PCAR

Processing pair LLY-PANW
ADF test for LLY-PANW failed with LinAlgError

Processing pair LLY-PH

Processing pair LLY-PGR

Processing pair LLY-PHM

Processing pair LLY-PWR

Processing pair LLY-RSG

Processing pair LLY-STLD

Processing pair LLY-SNPS

Processing pair LLY-TJX

Processing pair LLY-TSCO

Processing pair LLY-TT

Processing pair LLY-TDG

Processing pair LLY-URI

Processing pair LLY-VLTO
ADF test for LLY-VLTO failed with LinAlgError

Processing pair LLY-VRTX

Processing pair LLY-WRB

Processing pair LLY-GWW

Processing pair LIN-LYV

Processing pair LIN-LMT

Processing pair LIN-L

Processing pair LIN-LOW

Processing pair LIN-LULU

Processing pair LIN-MPC
ADF test for LIN-MPC failed with LinAlgError

Processing pair LIN-MAR

Processing pair LIN-MMC

Processing pair LIN-MLM

Processing pair LIN-MAS

Processing pair LIN-MA

Processing pair LIN-MCD

Processing pair LIN-MCK

Processing pair LIN-MRK

Processing pair LIN-MET

Processing pair LIN-MTD

Processing pair LIN-MCHP

Processing pair LIN-MU

Processing pair LIN-MSFT

Processing pair LIN-MOH

Processing pair LIN-MDLZ

Processing pair LIN-MPWR

Processing pair LIN-MNST

Processing pair LIN-MCO

Processing pair LIN-MS

Processing pair LIN-MSI

Processing pair LIN-MSCI

Processing pair LIN-NDAQ

Processing pair LIN-NTAP

Processing pair LIN-NDSN

Processing pair LIN-NSC

Processing pair LIN-NOC

Processing pair LIN-NUE

Processing pair LIN-NVR

Processing pair LIN-NXPI
ADF test for LIN-NXPI failed with LinAlgError

Processing pair LIN-ORLY

Processing pair LIN-ODFL

Processing pair LIN-ON

Processing pair LIN-ORCL

Processing pair LIN-OTIS
ADF test for LIN-OTIS failed with LinAlgError

Processing pair LIN-PCAR

Processing pair LIN-PKG

Processing pair LIN-PANW
ADF test for LIN-PANW failed with LinAlgError

Processing pair LIN-PH

Processing pair LIN-PAYX

Processing pair LIN-PNR

Processing pair LIN-PEP

Processing pair LIN-POOL

Processing pair LIN-PFG

Processing pair LIN-PG

Processing pair LIN-PGR

Processing pair LIN-PLD

Processing pair LIN-PEG

Processing pair LIN-PTC

Processing pair LIN-PSA

Processing pair LIN-PHM

Processing pair LIN-PWR

Processing pair LIN-QCOM

Processing pair LIN-DGX

Processing pair LIN-RJF

Processing pair LIN-RSG

Processing pair LIN-ROK

Processing pair LIN-ROL

Processing pair LIN-ROP

Processing pair LIN-SPGI

Processing pair LIN-CRM

Processing pair LIN-STX

Processing pair LIN-NOW
ADF test for LIN-NOW failed with LinAlgError

Processing pair LIN-SHW

Processing pair LIN-SNA

Processing pair LIN-SO

Processing pair LIN-STLD

Processing pair LIN-STE

Processing pair LIN-SYK

Processing pair LIN-SNPS

Processing pair LIN-TMUS

Processing pair LIN-TEL

Processing pair LIN-TDY

Processing pair LIN-TER

Processing pair LIN-TXN

Processing pair LIN-TPL

Processing pair LIN-TMO

Processing pair LIN-TJX

Processing pair LIN-TSCO

Processing pair LIN-TT

Processing pair LIN-TDG

Processing pair LIN-TRV

Processing pair LIN-TYL

Processing pair LIN-UNP

Processing pair LIN-URI

Processing pair LIN-UNH

Processing pair LIN-VLO

Processing pair LIN-VRSK

Processing pair LIN-VRTX

Processing pair LIN-VICI
ADF test for LIN-VICI failed with LinAlgError

Processing pair LIN-V

Processing pair LIN-VMC

Processing pair LIN-WRB

Processing pair LIN-GWW

Processing pair LIN-WMT

Processing pair LIN-WM

Processing pair LIN-WAT

Processing pair LIN-WST

Processing pair LIN-WTW

Processing pair LIN-XYL
ADF test for LIN-XYL failed with LinAlgError

Processing pair LIN-YUM

Processing pair LIN-ZTS
ADF test for LIN-ZTS failed with LinAlgError

Processing pair LYV-LMT

Processing pair LYV-LOW

Processing pair LYV-MAR

Processing pair LYV-MMC

Processing pair LYV-MLM

Processing pair LYV-MAS

Processing pair LYV-MA

Processing pair LYV-MKC

Processing pair LYV-MCD

Processing pair LYV-MET

Processing pair LYV-MTD

Processing pair LYV-MCHP

Processing pair LYV-MU

Processing pair LYV-MSFT

Processing pair LYV-MAA

Processing pair LYV-MOH

Processing pair LYV-MDLZ

Processing pair LYV-MNST

Processing pair LYV-MCO

Processing pair LYV-MS

Processing pair LYV-MSI

Processing pair LYV-MSCI

Processing pair LYV-NDAQ

Processing pair LYV-NEE

Processing pair LYV-NI

Processing pair LYV-NDSN

Processing pair LYV-NSC

Processing pair LYV-NOC

Processing pair LYV-NVR

Processing pair LYV-NXPI
ADF test for LYV-NXPI failed with LinAlgError

Processing pair LYV-ORLY

Processing pair LYV-ODFL

Processing pair LYV-PKG

Processing pair LYV-PAYX

Processing pair LYV-PEP

Processing pair LYV-PNC

Processing pair LYV-POOL

Processing pair LYV-PG

Processing pair LYV-PLD

Processing pair LYV-PEG

Processing pair LYV-PTC

Processing pair LYV-PSA

Processing pair LYV-QCOM

Processing pair LYV-DGX

Processing pair LYV-RJF

Processing pair LYV-RTX

Processing pair LYV-O

Processing pair LYV-RF

Processing pair LYV-RSG

Processing pair LYV-RMD

Processing pair LYV-RVTY

Processing pair LYV-ROK

Processing pair LYV-ROL

Processing pair LYV-ROP

Processing pair LYV-ROST

Processing pair LYV-SPGI

Processing pair LYV-CRM

Processing pair LYV-STX

Processing pair LYV-SRE

Processing pair LYV-NOW
ADF test for LYV-NOW failed with LinAlgError

Processing pair LYV-SHW

Processing pair LYV-SNA

Processing pair LYV-SO

Processing pair LYV-SBUX

Processing pair LYV-STE

Processing pair LYV-SYK

Processing pair LYV-SYY

Processing pair LYV-TMUS

Processing pair LYV-TTWO

Processing pair LYV-TEL

Processing pair LYV-TDY

Processing pair LYV-TER

Processing pair LYV-TXN

Processing pair LYV-TMO

Processing pair LYV-TJX

Processing pair LYV-TSCO

Processing pair LYV-TRV

Processing pair LYV-TYL

Processing pair LYV-UDR

Processing pair LYV-UNP

Processing pair LYV-UPS

Processing pair LYV-UNH

Processing pair LYV-VRSN

Processing pair LYV-VRSK

Processing pair LYV-V

Processing pair LYV-VMC

Processing pair LYV-WRB

Processing pair LYV-WMT

Processing pair LYV-WM

Processing pair LYV-WAT

Processing pair LYV-WEC

Processing pair LYV-WELL

Processing pair LYV-WST

Processing pair LYV-WTW

Processing pair LYV-WDAY
ADF test for LYV-WDAY failed with LinAlgError

Processing pair LYV-XEL

Processing pair LYV-XYL
ADF test for LYV-XYL failed with LinAlgError

Processing pair LYV-YUM

Processing pair LYV-ZBRA

Processing pair LYV-ZTS
ADF test for LYV-ZTS failed with LinAlgError

Processing pair LKQ-MGM

Processing pair LKQ-MNST

Processing pair LKQ-PEP

Processing pair LKQ-PPG

Processing pair LKQ-PFG

Processing pair LKQ-PSA

Processing pair LKQ-ROK

Processing pair LKQ-SJM

Processing pair LKQ-TEL

Processing pair LKQ-ULTA

Processing pair LKQ-UPS

Processing pair LKQ-WY

Processing pair LMT-LOW

Processing pair LMT-MAR

Processing pair LMT-MMC

Processing pair LMT-MLM

Processing pair LMT-MAS

Processing pair LMT-MA

Processing pair LMT-MKC

Processing pair LMT-MCD

Processing pair LMT-MRK

Processing pair LMT-MET

Processing pair LMT-MTD

Processing pair LMT-MCHP

Processing pair LMT-MSFT

Processing pair LMT-MAA

Processing pair LMT-MOH

Processing pair LMT-MDLZ

Processing pair LMT-MNST

Processing pair LMT-MCO

Processing pair LMT-MS

Processing pair LMT-MSI

Processing pair LMT-NDAQ

Processing pair LMT-NEE

Processing pair LMT-NI

Processing pair LMT-NDSN

Processing pair LMT-NSC

Processing pair LMT-NOC

Processing pair LMT-NVR

Processing pair LMT-NXPI
ADF test for LMT-NXPI failed with LinAlgError

Processing pair LMT-ORLY

Processing pair LMT-PKG

Processing pair LMT-PAYX

Processing pair LMT-PEP

Processing pair LMT-PM

Processing pair LMT-PNW

Processing pair LMT-PNC

Processing pair LMT-PFG

Processing pair LMT-PG

Processing pair LMT-PGR

Processing pair LMT-PLD

Processing pair LMT-PEG

Processing pair LMT-PTC

Processing pair LMT-PSA

Processing pair LMT-DGX

Processing pair LMT-RJF

Processing pair LMT-RTX

Processing pair LMT-O

Processing pair LMT-RF

Processing pair LMT-RSG

Processing pair LMT-RMD

Processing pair LMT-ROK

Processing pair LMT-ROL

Processing pair LMT-ROP

Processing pair LMT-ROST

Processing pair LMT-SPGI

Processing pair LMT-CRM

Processing pair LMT-SRE

Processing pair LMT-SHW

Processing pair LMT-SNA

Processing pair LMT-SO

Processing pair LMT-SBUX

Processing pair LMT-STE

Processing pair LMT-SYK

Processing pair LMT-SYY

Processing pair LMT-TMUS

Processing pair LMT-TEL

Processing pair LMT-TDY

Processing pair LMT-TXN

Processing pair LMT-TMO

Processing pair LMT-TJX

Processing pair LMT-TSCO

Processing pair LMT-TDG

Processing pair LMT-TRV

Processing pair LMT-TYL

Processing pair LMT-ULTA

Processing pair LMT-UNP

Processing pair LMT-UNH

Processing pair LMT-VLO

Processing pair LMT-VRSN

Processing pair LMT-VRSK

Processing pair LMT-VRTX

Processing pair LMT-V

Processing pair LMT-VMC

Processing pair LMT-WRB

Processing pair LMT-WMT

Processing pair LMT-WM

Processing pair LMT-WAT

Processing pair LMT-WEC

Processing pair LMT-WTW

Processing pair LMT-XEL

Processing pair LMT-XYL
ADF test for LMT-XYL failed with LinAlgError

Processing pair LMT-YUM

Processing pair L-MPC
ADF test for L-MPC failed with LinAlgError

Processing pair L-MAR

Processing pair L-MMC

Processing pair L-MLM

Processing pair L-MET

Processing pair L-MSI

Processing pair L-NTAP

Processing pair L-NUE

Processing pair L-NVR

Processing pair L-OKE

Processing pair L-ORCL

Processing pair L-OTIS
ADF test for L-OTIS failed with LinAlgError

Processing pair L-PCAR

Processing pair L-PKG

Processing pair L-PANW
ADF test for L-PANW failed with LinAlgError

Processing pair L-PH

Processing pair L-PFG

Processing pair L-PGR

Processing pair L-PRU

Processing pair L-PHM

Processing pair L-PWR

Processing pair L-RJF

Processing pair L-RTX

Processing pair L-RSG

Processing pair L-STLD

Processing pair L-TXT

Processing pair L-TT

Processing pair L-TDG

Processing pair L-TRV

Processing pair L-URI

Processing pair L-VLO

Processing pair L-WRB

Processing pair L-GWW

Processing pair L-WELL

Processing pair LOW-LULU

Processing pair LOW-MAR

Processing pair LOW-MMC

Processing pair LOW-MLM

Processing pair LOW-MAS

Processing pair LOW-MA

Processing pair LOW-MCD

Processing pair LOW-MRK

Processing pair LOW-MET

Processing pair LOW-MTD

Processing pair LOW-MCHP

Processing pair LOW-MU

Processing pair LOW-MSFT

Processing pair LOW-MAA

Processing pair LOW-MOH

Processing pair LOW-MDLZ

Processing pair LOW-MPWR

Processing pair LOW-MNST

Processing pair LOW-MCO

Processing pair LOW-MS

Processing pair LOW-MSI

Processing pair LOW-MSCI

Processing pair LOW-NDAQ

Processing pair LOW-NEE

Processing pair LOW-NDSN

Processing pair LOW-NSC

Processing pair LOW-NOC

Processing pair LOW-NUE

Processing pair LOW-NVR

Processing pair LOW-NXPI
ADF test for LOW-NXPI failed with LinAlgError

Processing pair LOW-ORLY

Processing pair LOW-ODFL

Processing pair LOW-ON

Processing pair LOW-ORCL

Processing pair LOW-OTIS
ADF test for LOW-OTIS failed with LinAlgError

Processing pair LOW-PCAR

Processing pair LOW-PKG

Processing pair LOW-PANW
ADF test for LOW-PANW failed with LinAlgError

Processing pair LOW-PH

Processing pair LOW-PAYX

Processing pair LOW-PNR

Processing pair LOW-PEP

Processing pair LOW-PNC

Processing pair LOW-POOL

Processing pair LOW-PFG

Processing pair LOW-PG

Processing pair LOW-PGR

Processing pair LOW-PLD

Processing pair LOW-PEG

Processing pair LOW-PTC

Processing pair LOW-PSA

Processing pair LOW-QCOM

Processing pair LOW-DGX

Processing pair LOW-RJF

Processing pair LOW-RTX

Processing pair LOW-RF

Processing pair LOW-RSG

Processing pair LOW-RMD

Processing pair LOW-RVTY

Processing pair LOW-ROK

Processing pair LOW-ROL

Processing pair LOW-ROP

Processing pair LOW-ROST

Processing pair LOW-SPGI

Processing pair LOW-CRM

Processing pair LOW-STX

Processing pair LOW-SRE

Processing pair LOW-NOW
ADF test for LOW-NOW failed with LinAlgError

Processing pair LOW-SHW

Processing pair LOW-SNA

Processing pair LOW-SO

Processing pair LOW-SBUX

Processing pair LOW-STLD

Processing pair LOW-STE

Processing pair LOW-SYK

Processing pair LOW-SNPS

Processing pair LOW-SYY

Processing pair LOW-TMUS

Processing pair LOW-TGT

Processing pair LOW-TEL

Processing pair LOW-TDY

Processing pair LOW-TER

Processing pair LOW-TSLA
ADF test for LOW-TSLA failed with LinAlgError

Processing pair LOW-TXN

Processing pair LOW-TPL

Processing pair LOW-TMO

Processing pair LOW-TJX

Processing pair LOW-TSCO

Processing pair LOW-TT

Processing pair LOW-TDG

Processing pair LOW-TRV

Processing pair LOW-TYL

Processing pair LOW-ULTA

Processing pair LOW-UNP

Processing pair LOW-UPS

Processing pair LOW-URI

Processing pair LOW-UNH

Processing pair LOW-VRSK

Processing pair LOW-VRTX

Processing pair LOW-VICI
ADF test for LOW-VICI failed with LinAlgError

Processing pair LOW-V

Processing pair LOW-VMC

Processing pair LOW-WRB

Processing pair LOW-GWW

Processing pair LOW-WMT

Processing pair LOW-WM

Processing pair LOW-WAT

Processing pair LOW-WEC

Processing pair LOW-WST

Processing pair LOW-WTW

Processing pair LOW-XEL

Processing pair LOW-XYL
ADF test for LOW-XYL failed with LinAlgError

Processing pair LOW-YUM

Processing pair LOW-ZTS
ADF test for LOW-ZTS failed with LinAlgError

Processing pair LULU-MMC

Processing pair LULU-MA

Processing pair LULU-MCD

Processing pair LULU-MTD

Processing pair LULU-MCHP

Processing pair LULU-MSFT

Processing pair LULU-MOH

Processing pair LULU-MDLZ

Processing pair LULU-MNST

Processing pair LULU-MCO

Processing pair LULU-MSCI

Processing pair LULU-NDAQ

Processing pair LULU-NEE

Processing pair LULU-NKE

Processing pair LULU-NDSN

Processing pair LULU-NSC

Processing pair LULU-ODFL

Processing pair LULU-PAYX

Processing pair LULU-PEP

Processing pair LULU-POOL

Processing pair LULU-PG

Processing pair LULU-PLD

Processing pair LULU-RMD

Processing pair LULU-ROK

Processing pair LULU-ROL

Processing pair LULU-ROP

Processing pair LULU-SPGI

Processing pair LULU-CRM

Processing pair LULU-NOW
ADF test for LULU-NOW failed with LinAlgError

Processing pair LULU-SHW

Processing pair LULU-SBUX

Processing pair LULU-STE

Processing pair LULU-SYK

Processing pair LULU-TGT

Processing pair LULU-TDY

Processing pair LULU-TER

Processing pair LULU-TXN

Processing pair LULU-TMO

Processing pair LULU-TYL

Processing pair LULU-UNP

Processing pair LULU-UPS

Processing pair LULU-UNH

Processing pair LULU-VRSN

Processing pair LULU-VRSK

Processing pair LULU-V

Processing pair LULU-WM

Processing pair LULU-WST

Processing pair LULU-WTW

Processing pair LULU-WDAY
ADF test for LULU-WDAY failed with LinAlgError

Processing pair LULU-YUM

Processing pair LULU-ZTS
ADF test for LULU-ZTS failed with LinAlgError

Processing pair LYB-MGM
ADF test for LYB-MGM failed with LinAlgError

Processing pair LYB-OMC
ADF test for LYB-OMC failed with LinAlgError

Processing pair LYB-PKG
ADF test for LYB-PKG failed with LinAlgError

Processing pair LYB-PPG
ADF test for LYB-PPG failed with LinAlgError

Processing pair LYB-PFG
ADF test for LYB-PFG failed with LinAlgError

Processing pair LYB-PRU
ADF test for LYB-PRU failed with LinAlgError

Processing pair LYB-SNA
ADF test for LYB-SNA failed with LinAlgError

Processing pair LYB-TEL
ADF test for LYB-TEL failed with LinAlgError

Processing pair LYB-TXT
ADF test for LYB-TXT failed with LinAlgError

Processing pair LYB-TRV
ADF test for LYB-TRV failed with LinAlgError

Processing pair LYB-WY
ADF test for LYB-WY failed with LinAlgError

Processing pair MTB-NI

Processing pair MTB-NTRS

Processing pair MTB-PNC

Processing pair MTB-PRU

Processing pair MTB-RTX

Processing pair MTB-RF

Processing pair MTB-TFC

Processing pair MTB-USB

Processing pair MPC-MAR
ADF test for MPC-MAR failed with LinAlgError

Processing pair MPC-MLM
ADF test for MPC-MLM failed with LinAlgError

Processing pair MPC-MCK
ADF test for MPC-MCK failed with LinAlgError

Processing pair MPC-MRK
ADF test for MPC-MRK failed with LinAlgError

Processing pair MPC-MSI
ADF test for MPC-MSI failed with LinAlgError

Processing pair MPC-NUE
ADF test for MPC-NUE failed with LinAlgError

Processing pair MPC-ORLY
ADF test for MPC-ORLY failed with LinAlgError

Processing pair MPC-OKE
ADF test for MPC-OKE failed with LinAlgError

Processing pair MPC-ORCL
ADF test for MPC-ORCL failed with LinAlgError

Processing pair MPC-PCAR
ADF test for MPC-PCAR failed with LinAlgError

Processing pair MPC-PANW
ADF test for MPC-PANW failed with LinAlgError

Processing pair MPC-PH
ADF test for MPC-PH failed with LinAlgError

Processing pair MPC-PSX
ADF test for MPC-PSX failed with LinAlgError

Processing pair MPC-PGR
ADF test for MPC-PGR failed with LinAlgError

Processing pair MPC-PHM
ADF test for MPC-PHM failed with LinAlgError

Processing pair MPC-PWR
ADF test for MPC-PWR failed with LinAlgError

Processing pair MPC-RJF
ADF test for MPC-RJF failed with LinAlgError

Processing pair MPC-RSG
ADF test for MPC-RSG failed with LinAlgError

Processing pair MPC-STLD
ADF test for MPC-STLD failed with LinAlgError

Processing pair MPC-SNPS
ADF test for MPC-SNPS failed with LinAlgError

Processing pair MPC-TJX
ADF test for MPC-TJX failed with LinAlgError

Processing pair MPC-TDG
ADF test for MPC-TDG failed with LinAlgError

Processing pair MPC-TRV
ADF test for MPC-TRV failed with LinAlgError

Processing pair MPC-URI
ADF test for MPC-URI failed with LinAlgError

Processing pair MPC-VLO
ADF test for MPC-VLO failed with LinAlgError

Processing pair MPC-WRB
ADF test for MPC-WRB failed with LinAlgError

Processing pair MPC-GWW
ADF test for MPC-GWW failed with LinAlgError

Processing pair MKTX-MKC

Processing pair MKTX-MDT

Processing pair MKTX-NKE

Processing pair MKTX-SBAC

Processing pair MKTX-TTWO

Processing pair MKTX-TFX

Processing pair MKTX-VRSN

Processing pair MAR-MMC

Processing pair MAR-MLM

Processing pair MAR-MAS

Processing pair MAR-MA

Processing pair MAR-MCD

Processing pair MAR-MRK

Processing pair MAR-MET

Processing pair MAR-MGM

Processing pair MAR-MCHP

Processing pair MAR-MU

Processing pair MAR-MSFT

Processing pair MAR-MOH

Processing pair MAR-MDLZ

Processing pair MAR-MPWR

Processing pair MAR-MNST

Processing pair MAR-MCO

Processing pair MAR-MS

Processing pair MAR-MSI

Processing pair MAR-NDAQ

Processing pair MAR-NTAP

Processing pair MAR-NI

Processing pair MAR-NDSN

Processing pair MAR-NSC

Processing pair MAR-NOC

Processing pair MAR-NVR

Processing pair MAR-NXPI
ADF test for MAR-NXPI failed with LinAlgError

Processing pair MAR-ORLY

Processing pair MAR-ODFL

Processing pair MAR-OMC

Processing pair MAR-OKE

Processing pair MAR-ORCL

Processing pair MAR-OTIS
ADF test for MAR-OTIS failed with LinAlgError

Processing pair MAR-PCAR

Processing pair MAR-PKG

Processing pair MAR-PANW
ADF test for MAR-PANW failed with LinAlgError

Processing pair MAR-PH

Processing pair MAR-PAYX

Processing pair MAR-PEP

Processing pair MAR-PSX
ADF test for MAR-PSX failed with LinAlgError

Processing pair MAR-PNC

Processing pair MAR-PFG

Processing pair MAR-PG

Processing pair MAR-PGR

Processing pair MAR-PRU

Processing pair MAR-PEG

Processing pair MAR-PTC

Processing pair MAR-PSA

Processing pair MAR-PHM

Processing pair MAR-DGX

Processing pair MAR-RJF

Processing pair MAR-RTX

Processing pair MAR-RF

Processing pair MAR-RSG

Processing pair MAR-ROK

Processing pair MAR-ROL

Processing pair MAR-ROP

Processing pair MAR-ROST

Processing pair MAR-SPGI

Processing pair MAR-CRM

Processing pair MAR-STX

Processing pair MAR-SRE

Processing pair MAR-NOW
ADF test for MAR-NOW failed with LinAlgError

Processing pair MAR-SHW

Processing pair MAR-SNA

Processing pair MAR-SO

Processing pair MAR-STLD

Processing pair MAR-STE

Processing pair MAR-SYK

Processing pair MAR-SNPS

Processing pair MAR-SYY

Processing pair MAR-TMUS

Processing pair MAR-TEL

Processing pair MAR-TXN

Processing pair MAR-TXT

Processing pair MAR-TJX

Processing pair MAR-TSCO

Processing pair MAR-TT

Processing pair MAR-TDG

Processing pair MAR-TRV

Processing pair MAR-TYL

Processing pair MAR-ULTA

Processing pair MAR-UNP

Processing pair MAR-URI

Processing pair MAR-UNH

Processing pair MAR-VLO

Processing pair MAR-VRSK

Processing pair MAR-VRTX

Processing pair MAR-V

Processing pair MAR-VMC

Processing pair MAR-WRB

Processing pair MAR-GWW

Processing pair MAR-WMT

Processing pair MAR-WM

Processing pair MAR-WAT

Processing pair MAR-WELL

Processing pair MAR-WTW

Processing pair MAR-XYL
ADF test for MAR-XYL failed with LinAlgError

Processing pair MAR-YUM

Processing pair MMC-MLM

Processing pair MMC-MAS

Processing pair MMC-MA

Processing pair MMC-MCD

Processing pair MMC-MRK

Processing pair MMC-MET

Processing pair MMC-MTD

Processing pair MMC-MCHP

Processing pair MMC-MU

Processing pair MMC-MSFT

Processing pair MMC-MAA

Processing pair MMC-MOH

Processing pair MMC-MDLZ

Processing pair MMC-MPWR

Processing pair MMC-MNST

Processing pair MMC-MCO

Processing pair MMC-MS

Processing pair MMC-MSI

Processing pair MMC-MSCI

Processing pair MMC-NDAQ

Processing pair MMC-NEE

Processing pair MMC-NDSN

Processing pair MMC-NSC

Processing pair MMC-NOC

Processing pair MMC-NUE

Processing pair MMC-NVR

Processing pair MMC-NXPI
ADF test for MMC-NXPI failed with LinAlgError

Processing pair MMC-ORLY

Processing pair MMC-ODFL

Processing pair MMC-ON

Processing pair MMC-OKE

Processing pair MMC-ORCL

Processing pair MMC-OTIS
ADF test for MMC-OTIS failed with LinAlgError

Processing pair MMC-PCAR

Processing pair MMC-PKG

Processing pair MMC-PANW
ADF test for MMC-PANW failed with LinAlgError

Processing pair MMC-PH

Processing pair MMC-PAYX

Processing pair MMC-PNR

Processing pair MMC-PEP

Processing pair MMC-PM

Processing pair MMC-POOL

Processing pair MMC-PFG

Processing pair MMC-PG

Processing pair MMC-PGR

Processing pair MMC-PLD

Processing pair MMC-PEG

Processing pair MMC-PTC

Processing pair MMC-PSA

Processing pair MMC-PHM

Processing pair MMC-PWR

Processing pair MMC-QCOM

Processing pair MMC-DGX

Processing pair MMC-RJF

Processing pair MMC-RTX

Processing pair MMC-REGN

Processing pair MMC-RF

Processing pair MMC-RSG

Processing pair MMC-RMD

Processing pair MMC-ROK

Processing pair MMC-ROL

Processing pair MMC-ROP

Processing pair MMC-ROST

Processing pair MMC-SPGI

Processing pair MMC-CRM

Processing pair MMC-STX

Processing pair MMC-SRE

Processing pair MMC-NOW
ADF test for MMC-NOW failed with LinAlgError

Processing pair MMC-SHW

Processing pair MMC-SNA

Processing pair MMC-SO

Processing pair MMC-STLD

Processing pair MMC-STE

Processing pair MMC-SYK

Processing pair MMC-SNPS

Processing pair MMC-SYY

Processing pair MMC-TMUS

Processing pair MMC-TEL

Processing pair MMC-TDY

Processing pair MMC-TER

Processing pair MMC-TXN

Processing pair MMC-TPL

Processing pair MMC-TXT

Processing pair MMC-TMO

Processing pair MMC-TJX

Processing pair MMC-TSCO

Processing pair MMC-TT

Processing pair MMC-TDG

Processing pair MMC-TRV

Processing pair MMC-TYL

Processing pair MMC-ULTA

Processing pair MMC-UNP

Processing pair MMC-URI

Processing pair MMC-UNH

Processing pair MMC-VLO

Processing pair MMC-VLTO
ADF test for MMC-VLTO failed with LinAlgError

Processing pair MMC-VRSK

Processing pair MMC-VRTX

Processing pair MMC-VICI
ADF test for MMC-VICI failed with LinAlgError

Processing pair MMC-V

Processing pair MMC-VMC

Processing pair MMC-WRB

Processing pair MMC-GWW

Processing pair MMC-WMT

Processing pair MMC-WM

Processing pair MMC-WAT

Processing pair MMC-WEC

Processing pair MMC-WELL

Processing pair MMC-WST

Processing pair MMC-WTW

Processing pair MMC-XYL
ADF test for MMC-XYL failed with LinAlgError

Processing pair MMC-YUM

Processing pair MMC-ZTS
ADF test for MMC-ZTS failed with LinAlgError

Processing pair MLM-MAS

Processing pair MLM-MA

Processing pair MLM-MCD

Processing pair MLM-MRK

Processing pair MLM-META
ADF test for MLM-META failed with LinAlgError

Processing pair MLM-MET

Processing pair MLM-MTD

Processing pair MLM-MCHP

Processing pair MLM-MU

Processing pair MLM-MSFT

Processing pair MLM-MOH

Processing pair MLM-MDLZ

Processing pair MLM-MPWR

Processing pair MLM-MNST

Processing pair MLM-MCO

Processing pair MLM-MS

Processing pair MLM-MSI

Processing pair MLM-MSCI

Processing pair MLM-NDAQ

Processing pair MLM-NTAP

Processing pair MLM-NDSN

Processing pair MLM-NOC

Processing pair MLM-NUE

Processing pair MLM-NVR

Processing pair MLM-NXPI
ADF test for MLM-NXPI failed with LinAlgError

Processing pair MLM-ORLY

Processing pair MLM-ODFL

Processing pair MLM-ON

Processing pair MLM-OKE

Processing pair MLM-ORCL

Processing pair MLM-OTIS
ADF test for MLM-OTIS failed with LinAlgError

Processing pair MLM-PCAR

Processing pair MLM-PKG

Processing pair MLM-PANW
ADF test for MLM-PANW failed with LinAlgError

Processing pair MLM-PH

Processing pair MLM-PAYX

Processing pair MLM-PNR

Processing pair MLM-PEP

Processing pair MLM-PM

Processing pair MLM-PFG

Processing pair MLM-PG

Processing pair MLM-PGR

Processing pair MLM-PLD

Processing pair MLM-PRU

Processing pair MLM-PEG

Processing pair MLM-PTC

Processing pair MLM-PSA

Processing pair MLM-PHM

Processing pair MLM-PWR

Processing pair MLM-QCOM

Processing pair MLM-DGX

Processing pair MLM-RJF

Processing pair MLM-RTX

Processing pair MLM-RF

Processing pair MLM-RSG

Processing pair MLM-ROK

Processing pair MLM-ROL

Processing pair MLM-ROP

Processing pair MLM-ROST

Processing pair MLM-SPGI

Processing pair MLM-CRM

Processing pair MLM-STX

Processing pair MLM-SRE

Processing pair MLM-NOW
ADF test for MLM-NOW failed with LinAlgError

Processing pair MLM-SHW

Processing pair MLM-SNA

Processing pair MLM-SO

Processing pair MLM-STLD

Processing pair MLM-STE

Processing pair MLM-SYK

Processing pair MLM-SNPS

Processing pair MLM-TMUS

Processing pair MLM-TEL

Processing pair MLM-TDY

Processing pair MLM-TER

Processing pair MLM-TXN

Processing pair MLM-TPL

Processing pair MLM-TXT

Processing pair MLM-TMO

Processing pair MLM-TJX

Processing pair MLM-TSCO

Processing pair MLM-TT

Processing pair MLM-TDG

Processing pair MLM-TRV

Processing pair MLM-TYL

Processing pair MLM-UNP

Processing pair MLM-URI

Processing pair MLM-UNH

Processing pair MLM-VLO

Processing pair MLM-VRSK

Processing pair MLM-VRTX

Processing pair MLM-V

Processing pair MLM-VMC

Processing pair MLM-WRB

Processing pair MLM-GWW

Processing pair MLM-WMT

Processing pair MLM-WM

Processing pair MLM-WAT

Processing pair MLM-WELL

Processing pair MLM-WST

Processing pair MLM-WTW

Processing pair MLM-XYL
ADF test for MLM-XYL failed with LinAlgError

Processing pair MLM-YUM

Processing pair MAS-MA

Processing pair MAS-MCD

Processing pair MAS-MRK

Processing pair MAS-META
ADF test for MAS-META failed with LinAlgError

Processing pair MAS-MET

Processing pair MAS-MTD

Processing pair MAS-MCHP

Processing pair MAS-MU

Processing pair MAS-MSFT

Processing pair MAS-MAA

Processing pair MAS-MOH

Processing pair MAS-MDLZ

Processing pair MAS-MPWR

Processing pair MAS-MNST

Processing pair MAS-MCO

Processing pair MAS-MS

Processing pair MAS-MSI

Processing pair MAS-MSCI

Processing pair MAS-NDAQ

Processing pair MAS-NFLX

Processing pair MAS-NEE

Processing pair MAS-NI

Processing pair MAS-NDSN

Processing pair MAS-NSC

Processing pair MAS-NOC

Processing pair MAS-NVR

Processing pair MAS-NXPI
ADF test for MAS-NXPI failed with LinAlgError

Processing pair MAS-ORLY

Processing pair MAS-ODFL

Processing pair MAS-ORCL

Processing pair MAS-PCAR

Processing pair MAS-PKG

Processing pair MAS-PH

Processing pair MAS-PAYX

Processing pair MAS-PNR

Processing pair MAS-PEP

Processing pair MAS-PM

Processing pair MAS-PNC

Processing pair MAS-POOL

Processing pair MAS-PPG

Processing pair MAS-PFG

Processing pair MAS-PG

Processing pair MAS-PGR

Processing pair MAS-PLD

Processing pair MAS-PRU

Processing pair MAS-PEG

Processing pair MAS-PTC

Processing pair MAS-PSA

Processing pair MAS-QCOM

Processing pair MAS-DGX

Processing pair MAS-RJF

Processing pair MAS-RTX

Processing pair MAS-O

Processing pair MAS-RF

Processing pair MAS-RSG

Processing pair MAS-RMD

Processing pair MAS-ROK

Processing pair MAS-ROL

Processing pair MAS-ROP

Processing pair MAS-ROST

Processing pair MAS-SPGI

Processing pair MAS-CRM

Processing pair MAS-STX

Processing pair MAS-SRE

Processing pair MAS-NOW
ADF test for MAS-NOW failed with LinAlgError

Processing pair MAS-SHW

Processing pair MAS-SNA

Processing pair MAS-SO

Processing pair MAS-SBUX

Processing pair MAS-STE

Processing pair MAS-SYK

Processing pair MAS-SNPS

Processing pair MAS-SYY

Processing pair MAS-TMUS

Processing pair MAS-TTWO

Processing pair MAS-TEL

Processing pair MAS-TDY

Processing pair MAS-TER

Processing pair MAS-TXN

Processing pair MAS-TMO

Processing pair MAS-TJX

Processing pair MAS-TSCO

Processing pair MAS-TT

Processing pair MAS-TDG

Processing pair MAS-TRV

Processing pair MAS-TYL

Processing pair MAS-UNP

Processing pair MAS-UNH

Processing pair MAS-VRSK

Processing pair MAS-VRTX

Processing pair MAS-V

Processing pair MAS-VMC

Processing pair MAS-WRB

Processing pair MAS-WMT

Processing pair MAS-WM

Processing pair MAS-WAT

Processing pair MAS-WEC

Processing pair MAS-WELL

Processing pair MAS-WST

Processing pair MAS-WTW

Processing pair MAS-WDAY
ADF test for MAS-WDAY failed with LinAlgError

Processing pair MAS-XEL

Processing pair MAS-XYL
ADF test for MAS-XYL failed with LinAlgError

Processing pair MAS-YUM

Processing pair MAS-ZTS
ADF test for MAS-ZTS failed with LinAlgError

Processing pair MA-MKC

Processing pair MA-MCD

Processing pair MA-MRK

Processing pair MA-MET

Processing pair MA-MTD

Processing pair MA-MCHP

Processing pair MA-MU

Processing pair MA-MSFT

Processing pair MA-MAA

Processing pair MA-MOH

Processing pair MA-MDLZ

Processing pair MA-MPWR

Processing pair MA-MNST

Processing pair MA-MCO

Processing pair MA-MS

Processing pair MA-MSI

Processing pair MA-MSCI

Processing pair MA-NDAQ

Processing pair MA-NFLX

Processing pair MA-NEE

Processing pair MA-NI

Processing pair MA-NDSN

Processing pair MA-NSC

Processing pair MA-NOC

Processing pair MA-NVR

Processing pair MA-NXPI
ADF test for MA-NXPI failed with LinAlgError

Processing pair MA-ORLY

Processing pair MA-ODFL

Processing pair MA-ORCL

Processing pair MA-PCAR

Processing pair MA-PKG

Processing pair MA-PH

Processing pair MA-PAYX

Processing pair MA-PEP

Processing pair MA-PNC

Processing pair MA-POOL

Processing pair MA-PG

Processing pair MA-PGR

Processing pair MA-PLD

Processing pair MA-PEG

Processing pair MA-PTC

Processing pair MA-PSA

Processing pair MA-QCOM

Processing pair MA-DGX

Processing pair MA-RJF

Processing pair MA-RTX

Processing pair MA-RF

Processing pair MA-RSG

Processing pair MA-RMD

Processing pair MA-ROK

Processing pair MA-ROL

Processing pair MA-ROP

Processing pair MA-ROST

Processing pair MA-SPGI

Processing pair MA-CRM

Processing pair MA-STX

Processing pair MA-SRE

Processing pair MA-NOW
ADF test for MA-NOW failed with LinAlgError

Processing pair MA-SHW

Processing pair MA-SNA

Processing pair MA-SO

Processing pair MA-SBUX

Processing pair MA-STE

Processing pair MA-SYK

Processing pair MA-SNPS

Processing pair MA-SYY

Processing pair MA-TMUS

Processing pair MA-TTWO

Processing pair MA-TEL

Processing pair MA-TDY

Processing pair MA-TER

Processing pair MA-TXN

Processing pair MA-TMO

Processing pair MA-TJX

Processing pair MA-TSCO

Processing pair MA-TT

Processing pair MA-TDG

Processing pair MA-TRV

Processing pair MA-TYL

Processing pair MA-UNP

Processing pair MA-UNH

Processing pair MA-VRSN

Processing pair MA-VRSK

Processing pair MA-VRTX

Processing pair MA-V

Processing pair MA-VMC

Processing pair MA-WRB

Processing pair MA-WMT

Processing pair MA-WM

Processing pair MA-WAT

Processing pair MA-WEC

Processing pair MA-WST

Processing pair MA-WTW

Processing pair MA-WDAY
ADF test for MA-WDAY failed with LinAlgError

Processing pair MA-XEL

Processing pair MA-XYL
ADF test for MA-XYL failed with LinAlgError

Processing pair MA-YUM

Processing pair MA-ZTS
ADF test for MA-ZTS failed with LinAlgError

Processing pair MTCH-PYPL
ADF test for MTCH-PYPL failed with LinAlgError

Processing pair MKC-MCD

Processing pair MKC-MDT

Processing pair MKC-MTD

Processing pair MKC-MAA

Processing pair MKC-MDLZ

Processing pair MKC-MNST

Processing pair MKC-MCO

Processing pair MKC-NDAQ

Processing pair MKC-NEE

Processing pair MKC-NKE

Processing pair MKC-NI

Processing pair MKC-NDSN

Processing pair MKC-NSC

Processing pair MKC-NOC

Processing pair MKC-PEP

Processing pair MKC-PFE

Processing pair MKC-POOL

Processing pair MKC-PG

Processing pair MKC-PLD

Processing pair MKC-PEG

Processing pair MKC-DGX

Processing pair MKC-O

Processing pair MKC-RMD

Processing pair MKC-RVTY

Processing pair MKC-ROK

Processing pair MKC-ROL

Processing pair MKC-ROP

Processing pair MKC-ROST

Processing pair MKC-SPGI

Processing pair MKC-CRM

Processing pair MKC-SBAC

Processing pair MKC-SRE

Processing pair MKC-SHW

Processing pair MKC-SBUX

Processing pair MKC-STE

Processing pair MKC-SYY

Processing pair MKC-TTWO

Processing pair MKC-TDY

Processing pair MKC-TFX

Processing pair MKC-TXN

Processing pair MKC-TMO

Processing pair MKC-TYL

Processing pair MKC-UDR

Processing pair MKC-UNP

Processing pair MKC-VRSN

Processing pair MKC-VRSK

Processing pair MKC-V

Processing pair MKC-WAT

Processing pair MKC-WEC

Processing pair MKC-WTW

Processing pair MKC-XEL

Processing pair MKC-YUM

Processing pair MKC-ZTS
ADF test for MKC-ZTS failed with LinAlgError

Processing pair MCD-MRK

Processing pair MCD-MET

Processing pair MCD-MTD

Processing pair MCD-MCHP

Processing pair MCD-MSFT

Processing pair MCD-MAA

Processing pair MCD-MOH

Processing pair MCD-MDLZ

Processing pair MCD-MPWR

Processing pair MCD-MNST

Processing pair MCD-MCO

Processing pair MCD-MS

Processing pair MCD-MSI

Processing pair MCD-MSCI

Processing pair MCD-NDAQ

Processing pair MCD-NEE

Processing pair MCD-NI

Processing pair MCD-NDSN

Processing pair MCD-NSC

Processing pair MCD-NOC

Processing pair MCD-NVR

Processing pair MCD-NXPI
ADF test for MCD-NXPI failed with LinAlgError

Processing pair MCD-ORLY

Processing pair MCD-ODFL

Processing pair MCD-ON

Processing pair MCD-ORCL

Processing pair MCD-PCAR

Processing pair MCD-PKG

Processing pair MCD-PH

Processing pair MCD-PAYX

Processing pair MCD-PEP

Processing pair MCD-PNC

Processing pair MCD-POOL

Processing pair MCD-PFG

Processing pair MCD-PG

Processing pair MCD-PGR

Processing pair MCD-PLD

Processing pair MCD-PEG

Processing pair MCD-PTC

Processing pair MCD-PSA

Processing pair MCD-DGX

Processing pair MCD-RJF

Processing pair MCD-RTX

Processing pair MCD-O

Processing pair MCD-RF

Processing pair MCD-RSG

Processing pair MCD-RMD

Processing pair MCD-ROK

Processing pair MCD-ROL

Processing pair MCD-ROP

Processing pair MCD-ROST

Processing pair MCD-SPGI

Processing pair MCD-CRM

Processing pair MCD-SRE

Processing pair MCD-NOW
ADF test for MCD-NOW failed with LinAlgError

Processing pair MCD-SHW

Processing pair MCD-SNA

Processing pair MCD-SO

Processing pair MCD-SBUX

Processing pair MCD-STE

Processing pair MCD-SYK

Processing pair MCD-SNPS

Processing pair MCD-SYY

Processing pair MCD-TMUS

Processing pair MCD-TTWO

Processing pair MCD-TEL

Processing pair MCD-TDY

Processing pair MCD-TER

Processing pair MCD-TXN

Processing pair MCD-TPL

Processing pair MCD-TMO

Processing pair MCD-TJX

Processing pair MCD-TSCO

Processing pair MCD-TT

Processing pair MCD-TDG

Processing pair MCD-TRV

Processing pair MCD-TYL

Processing pair MCD-ULTA

Processing pair MCD-UNP

Processing pair MCD-UPS

Processing pair MCD-UNH

Processing pair MCD-VLO

Processing pair MCD-VRSN

Processing pair MCD-VRSK

Processing pair MCD-VRTX

Processing pair MCD-VICI
ADF test for MCD-VICI failed with LinAlgError

Processing pair MCD-V

Processing pair MCD-VMC

Processing pair MCD-WRB

Processing pair MCD-WMT

Processing pair MCD-WM

Processing pair MCD-WAT

Processing pair MCD-WEC

Processing pair MCD-WST

Processing pair MCD-WTW

Processing pair MCD-XEL

Processing pair MCD-XYL
ADF test for MCD-XYL failed with LinAlgError

Processing pair MCD-YUM

Processing pair MCD-ZTS
ADF test for MCD-ZTS failed with LinAlgError

Processing pair MCK-NUE

Processing pair MCK-ORLY

Processing pair MCK-ORCL

Processing pair MCK-PCAR

Processing pair MCK-PANW
ADF test for MCK-PANW failed with LinAlgError

Processing pair MCK-PH

Processing pair MCK-PGR

Processing pair MCK-PHM

Processing pair MCK-PWR

Processing pair MCK-REGN

Processing pair MCK-STLD

Processing pair MCK-SNPS

Processing pair MCK-TSCO

Processing pair MCK-TT

Processing pair MCK-TDG

Processing pair MCK-URI

Processing pair MCK-GWW

Processing pair MDT-NKE

Processing pair MDT-NTRS

Processing pair MDT-PPG

Processing pair MDT-O

Processing pair MDT-RVTY

Processing pair MDT-SBAC

Processing pair MDT-SWKS

Processing pair MDT-SBUX

Processing pair MDT-SYY

Processing pair MDT-TROW

Processing pair MDT-TTWO

Processing pair MDT-TFX

Processing pair MDT-TFC

Processing pair MDT-TSN

Processing pair MDT-USB

Processing pair MDT-UDR

Processing pair MDT-VRSN

Processing pair MDT-VZ

Processing pair MDT-DIS

Processing pair MDT-WEC

Processing pair MDT-XEL

Processing pair MDT-ZBH

Processing pair MRK-MET

Processing pair MRK-MTD

Processing pair MRK-MCHP

Processing pair MRK-MSFT

Processing pair MRK-MOH

Processing pair MRK-MDLZ

Processing pair MRK-MPWR

Processing pair MRK-MNST

Processing pair MRK-MCO

Processing pair MRK-MSI

Processing pair MRK-NDAQ

Processing pair MRK-NDSN

Processing pair MRK-NOC

Processing pair MRK-NUE

Processing pair MRK-NVR

Processing pair MRK-NXPI
ADF test for MRK-NXPI failed with LinAlgError

Processing pair MRK-ORLY

Processing pair MRK-ODFL

Processing pair MRK-ON

Processing pair MRK-OKE

Processing pair MRK-ORCL

Processing pair MRK-PCAR

Processing pair MRK-PKG

Processing pair MRK-PANW
ADF test for MRK-PANW failed with LinAlgError

Processing pair MRK-PH

Processing pair MRK-PAYX

Processing pair MRK-PEP

Processing pair MRK-PFG

Processing pair MRK-PG

Processing pair MRK-PGR

Processing pair MRK-PLD

Processing pair MRK-PEG

Processing pair MRK-PTC

Processing pair MRK-PHM

Processing pair MRK-DGX

Processing pair MRK-RJF

Processing pair MRK-RTX

Processing pair MRK-REGN

Processing pair MRK-RSG

Processing pair MRK-ROK

Processing pair MRK-ROL

Processing pair MRK-ROP

Processing pair MRK-ROST

Processing pair MRK-SPGI

Processing pair MRK-SRE

Processing pair MRK-SHW

Processing pair MRK-SNA

Processing pair MRK-SO

Processing pair MRK-STLD

Processing pair MRK-STE

Processing pair MRK-SYK

Processing pair MRK-SNPS

Processing pair MRK-TMUS

Processing pair MRK-TEL

Processing pair MRK-TDY

Processing pair MRK-TXN

Processing pair MRK-TMO

Processing pair MRK-TJX

Processing pair MRK-TSCO

Processing pair MRK-TT

Processing pair MRK-TDG

Processing pair MRK-TRV

Processing pair MRK-ULTA

Processing pair MRK-UNP

Processing pair MRK-URI

Processing pair MRK-UNH

Processing pair MRK-VLO

Processing pair MRK-VRSK

Processing pair MRK-VRTX

Processing pair MRK-V

Processing pair MRK-VMC

Processing pair MRK-WRB

Processing pair MRK-GWW

Processing pair MRK-WMT

Processing pair MRK-WM

Processing pair MRK-WTW

Processing pair MRK-XYL
ADF test for MRK-XYL failed with LinAlgError

Processing pair MRK-YUM

Processing pair META-MU
ADF test for META-MU failed with LinAlgError

Processing pair META-MSFT
ADF test for META-MSFT failed with LinAlgError

Processing pair META-MCO
ADF test for META-MCO failed with LinAlgError

Processing pair META-NFLX
ADF test for META-NFLX failed with LinAlgError

Processing pair META-NVR
ADF test for META-NVR failed with LinAlgError

Processing pair META-NXPI
ADF test for META-NXPI failed with LinAlgError

Processing pair META-ORCL
ADF test for META-ORCL failed with LinAlgError

Processing pair META-PKG
ADF test for META-PKG failed with LinAlgError

Processing pair META-PH
ADF test for META-PH failed with LinAlgError

Processing pair META-PNR
ADF test for META-PNR failed with LinAlgError

Processing pair META-PTC
ADF test for META-PTC failed with LinAlgError

Processing pair META-PHM
ADF test for META-PHM failed with LinAlgError

Processing pair META-ROST
ADF test for META-ROST failed with LinAlgError

Processing pair META-CRM
ADF test for META-CRM failed with LinAlgError

Processing pair META-NOW
ADF test for META-NOW failed with LinAlgError

Processing pair META-SHW
ADF test for META-SHW failed with LinAlgError

Processing pair META-SYK
ADF test for META-SYK failed with LinAlgError

Processing pair META-TJX
ADF test for META-TJX failed with LinAlgError

Processing pair META-TT
ADF test for META-TT failed with LinAlgError

Processing pair META-TDG
ADF test for META-TDG failed with LinAlgError

Processing pair META-TYL
ADF test for META-TYL failed with LinAlgError

Processing pair META-UBER
ADF test for META-UBER failed with LinAlgError

Processing pair META-VMC
ADF test for META-VMC failed with LinAlgError

Processing pair META-WMT
ADF test for META-WMT failed with LinAlgError

Processing pair META-XYL
ADF test for META-XYL failed with LinAlgError

Processing pair MET-MTD

Processing pair MET-MGM

Processing pair MET-MCHP

Processing pair MET-MU

Processing pair MET-MSFT

Processing pair MET-MOH

Processing pair MET-MDLZ

Processing pair MET-MPWR

Processing pair MET-MCO

Processing pair MET-MS

Processing pair MET-MSI

Processing pair MET-NDAQ

Processing pair MET-NDSN

Processing pair MET-NOC

Processing pair MET-NUE

Processing pair MET-NVR

Processing pair MET-NXPI
ADF test for MET-NXPI failed with LinAlgError

Processing pair MET-ORLY

Processing pair MET-ODFL

Processing pair MET-ON

Processing pair MET-OKE

Processing pair MET-ORCL

Processing pair MET-PCAR

Processing pair MET-PKG

Processing pair MET-PANW
ADF test for MET-PANW failed with LinAlgError

Processing pair MET-PH

Processing pair MET-PAYX

Processing pair MET-PNR

Processing pair MET-PEP

Processing pair MET-PNC

Processing pair MET-PFG

Processing pair MET-PG

Processing pair MET-PGR

Processing pair MET-PLD

Processing pair MET-PRU

Processing pair MET-PEG

Processing pair MET-PTC

Processing pair MET-PSA

Processing pair MET-DGX

Processing pair MET-RJF

Processing pair MET-RTX

Processing pair MET-RF

Processing pair MET-RSG

Processing pair MET-ROK

Processing pair MET-ROL

Processing pair MET-ROP

Processing pair MET-SPGI

Processing pair MET-STX

Processing pair MET-SRE

Processing pair MET-SHW

Processing pair MET-SNA

Processing pair MET-SO

Processing pair MET-STLD

Processing pair MET-STE

Processing pair MET-SYK

Processing pair MET-SNPS

Processing pair MET-TMUS

Processing pair MET-TEL

Processing pair MET-TXN

Processing pair MET-TPL

Processing pair MET-TXT

Processing pair MET-TMO

Processing pair MET-TJX

Processing pair MET-TSCO

Processing pair MET-TT

Processing pair MET-TDG

Processing pair MET-TRV

Processing pair MET-UNP

Processing pair MET-URI

Processing pair MET-UNH

Processing pair MET-VLO

Processing pair MET-VRSK

Processing pair MET-VICI
ADF test for MET-VICI failed with LinAlgError

Processing pair MET-VMC

Processing pair MET-WRB

Processing pair MET-GWW

Processing pair MET-WMT

Processing pair MET-WM

Processing pair MET-WAT

Processing pair MET-WELL

Processing pair MET-WTW

Processing pair MET-YUM

Processing pair MTD-MCHP

Processing pair MTD-MU

Processing pair MTD-MSFT

Processing pair MTD-MAA

Processing pair MTD-MOH

Processing pair MTD-MDLZ

Processing pair MTD-MPWR

Processing pair MTD-MNST

Processing pair MTD-MCO

Processing pair MTD-MS

Processing pair MTD-MSI

Processing pair MTD-MSCI

Processing pair MTD-NDAQ

Processing pair MTD-NEE

Processing pair MTD-NKE

Processing pair MTD-NDSN

Processing pair MTD-NSC

Processing pair MTD-NOC

Processing pair MTD-NVR

Processing pair MTD-NXPI
ADF test for MTD-NXPI failed with LinAlgError

Processing pair MTD-ORLY

Processing pair MTD-ODFL

Processing pair MTD-PKG

Processing pair MTD-PAYX

Processing pair MTD-PEP

Processing pair MTD-PNC

Processing pair MTD-POOL

Processing pair MTD-PG

Processing pair MTD-PLD

Processing pair MTD-PEG

Processing pair MTD-PTC

Processing pair MTD-PSA

Processing pair MTD-QCOM

Processing pair MTD-DGX

Processing pair MTD-RJF

Processing pair MTD-O

Processing pair MTD-RF

Processing pair MTD-RSG

Processing pair MTD-RMD

Processing pair MTD-RVTY

Processing pair MTD-ROK

Processing pair MTD-ROL

Processing pair MTD-ROP

Processing pair MTD-ROST

Processing pair MTD-SPGI

Processing pair MTD-CRM

Processing pair MTD-SBAC

Processing pair MTD-STX

Processing pair MTD-SRE

Processing pair MTD-NOW
ADF test for MTD-NOW failed with LinAlgError

Processing pair MTD-SHW

Processing pair MTD-SO

Processing pair MTD-SBUX

Processing pair MTD-STE

Processing pair MTD-SYK

Processing pair MTD-SYY

Processing pair MTD-TMUS

Processing pair MTD-TROW

Processing pair MTD-TTWO

Processing pair MTD-TGT

Processing pair MTD-TEL

Processing pair MTD-TDY

Processing pair MTD-TER

Processing pair MTD-TSLA
ADF test for MTD-TSLA failed with LinAlgError

Processing pair MTD-TXN

Processing pair MTD-TMO

Processing pair MTD-TJX

Processing pair MTD-TSCO

Processing pair MTD-TRV

Processing pair MTD-TRMB

Processing pair MTD-TYL

Processing pair MTD-UDR

Processing pair MTD-ULTA

Processing pair MTD-UNP

Processing pair MTD-UPS

Processing pair MTD-UNH

Processing pair MTD-VRSN

Processing pair MTD-VRSK

Processing pair MTD-V

Processing pair MTD-VMC

Processing pair MTD-WRB

Processing pair MTD-WMT

Processing pair MTD-WM

Processing pair MTD-WAT

Processing pair MTD-WEC

Processing pair MTD-WST

Processing pair MTD-WTW

Processing pair MTD-XEL

Processing pair MTD-XYL
ADF test for MTD-XYL failed with LinAlgError

Processing pair MTD-YUM

Processing pair MTD-ZBRA

Processing pair MTD-ZTS
ADF test for MTD-ZTS failed with LinAlgError

Processing pair MGM-MCHP

Processing pair MGM-MS

Processing pair MGM-NXPI
ADF test for MGM-NXPI failed with LinAlgError

Processing pair MGM-PKG

Processing pair MGM-PNC

Processing pair MGM-PPG

Processing pair MGM-PFG

Processing pair MGM-PRU

Processing pair MGM-RJF

Processing pair MGM-RF

Processing pair MGM-ROK

Processing pair MGM-SNA

Processing pair MGM-TEL

Processing pair MGM-TXT

Processing pair MGM-TRV

Processing pair MGM-ULTA

Processing pair MGM-VMC

Processing pair MGM-WAT

Processing pair MGM-WY

Processing pair MGM-YUM

Processing pair MCHP-MU

Processing pair MCHP-MSFT

Processing pair MCHP-MAA

Processing pair MCHP-MOH

Processing pair MCHP-MDLZ

Processing pair MCHP-MPWR

Processing pair MCHP-MNST

Processing pair MCHP-MCO

Processing pair MCHP-MS

Processing pair MCHP-MSI

Processing pair MCHP-MSCI

Processing pair MCHP-NDAQ

Processing pair MCHP-NEE

Processing pair MCHP-NDSN

Processing pair MCHP-NSC

Processing pair MCHP-NOC

Processing pair MCHP-NVR

Processing pair MCHP-NXPI
ADF test for MCHP-NXPI failed with LinAlgError

Processing pair MCHP-ORLY

Processing pair MCHP-ODFL

Processing pair MCHP-ON

Processing pair MCHP-PCAR

Processing pair MCHP-PKG

Processing pair MCHP-PH

Processing pair MCHP-PAYX

Processing pair MCHP-PEP

Processing pair MCHP-PNC

Processing pair MCHP-POOL

Processing pair MCHP-PFG

Processing pair MCHP-PG

Processing pair MCHP-PGR

Processing pair MCHP-PLD

Processing pair MCHP-PEG

Processing pair MCHP-PTC

Processing pair MCHP-PSA

Processing pair MCHP-QCOM

Processing pair MCHP-DGX

Processing pair MCHP-RJF

Processing pair MCHP-RF

Processing pair MCHP-RSG

Processing pair MCHP-RMD

Processing pair MCHP-RVTY

Processing pair MCHP-ROK

Processing pair MCHP-ROL

Processing pair MCHP-ROP

Processing pair MCHP-ROST

Processing pair MCHP-SPGI

Processing pair MCHP-CRM

Processing pair MCHP-STX

Processing pair MCHP-SRE

Processing pair MCHP-NOW
ADF test for MCHP-NOW failed with LinAlgError

Processing pair MCHP-SHW

Processing pair MCHP-SNA

Processing pair MCHP-SO

Processing pair MCHP-SBUX

Processing pair MCHP-STE

Processing pair MCHP-SYK

Processing pair MCHP-SNPS

Processing pair MCHP-SYY

Processing pair MCHP-TMUS

Processing pair MCHP-TTWO

Processing pair MCHP-TEL

Processing pair MCHP-TDY

Processing pair MCHP-TER

Processing pair MCHP-TXN

Processing pair MCHP-TXT

Processing pair MCHP-TMO

Processing pair MCHP-TJX

Processing pair MCHP-TSCO

Processing pair MCHP-TT

Processing pair MCHP-TDG

Processing pair MCHP-TRV

Processing pair MCHP-TYL

Processing pair MCHP-ULTA

Processing pair MCHP-UNP

Processing pair MCHP-UPS

Processing pair MCHP-UNH

Processing pair MCHP-VRSK

Processing pair MCHP-VRTX

Processing pair MCHP-V

Processing pair MCHP-VMC

Processing pair MCHP-WRB

Processing pair MCHP-WMT

Processing pair MCHP-WM

Processing pair MCHP-WAT

Processing pair MCHP-WEC

Processing pair MCHP-WST

Processing pair MCHP-WTW

Processing pair MCHP-WDAY
ADF test for MCHP-WDAY failed with LinAlgError

Processing pair MCHP-XEL

Processing pair MCHP-XYL
ADF test for MCHP-XYL failed with LinAlgError

Processing pair MCHP-YUM

Processing pair MCHP-ZTS
ADF test for MCHP-ZTS failed with LinAlgError

Processing pair MU-MSFT

Processing pair MU-MPWR

Processing pair MU-MCO

Processing pair MU-MS

Processing pair MU-MSI

Processing pair MU-NDAQ

Processing pair MU-NTAP

Processing pair MU-NFLX

Processing pair MU-NDSN

Processing pair MU-NSC

Processing pair MU-NVR

Processing pair MU-NXPI
ADF test for MU-NXPI failed with LinAlgError

Processing pair MU-ODFL

Processing pair MU-PCAR

Processing pair MU-PKG

Processing pair MU-PH

Processing pair MU-PAYX

Processing pair MU-PNR

Processing pair MU-PNC

Processing pair MU-PG

Processing pair MU-PGR

Processing pair MU-PEG

Processing pair MU-PTC

Processing pair MU-QCOM

Processing pair MU-DGX

Processing pair MU-RJF

Processing pair MU-RF

Processing pair MU-RSG

Processing pair MU-ROK

Processing pair MU-ROL

Processing pair MU-ROP

Processing pair MU-ROST

Processing pair MU-SPGI

Processing pair MU-CRM

Processing pair MU-STX

Processing pair MU-NOW
ADF test for MU-NOW failed with LinAlgError

Processing pair MU-SHW

Processing pair MU-STE

Processing pair MU-SYK

Processing pair MU-SNPS

Processing pair MU-TMUS

Processing pair MU-TEL

Processing pair MU-TDY

Processing pair MU-TER

Processing pair MU-TXN

Processing pair MU-TMO

Processing pair MU-TJX

Processing pair MU-TSCO

Processing pair MU-TT

Processing pair MU-TDG

Processing pair MU-TRV

Processing pair MU-TYL

Processing pair MU-UNP

Processing pair MU-URI

Processing pair MU-UNH

Processing pair MU-VRSK

Processing pair MU-V

Processing pair MU-VMC

Processing pair MU-WRB

Processing pair MU-WMT

Processing pair MU-WM

Processing pair MU-WAT

Processing pair MU-WTW

Processing pair MU-XYL
ADF test for MU-XYL failed with LinAlgError

Processing pair MU-YUM

Processing pair MSFT-MOH

Processing pair MSFT-MDLZ

Processing pair MSFT-MPWR

Processing pair MSFT-MNST

Processing pair MSFT-MCO

Processing pair MSFT-MS

Processing pair MSFT-MSI

Processing pair MSFT-MSCI

Processing pair MSFT-NDAQ

Processing pair MSFT-NTAP

Processing pair MSFT-NEE

Processing pair MSFT-NDSN

Processing pair MSFT-NSC

Processing pair MSFT-NOC

Processing pair MSFT-NUE

Processing pair MSFT-NVR

Processing pair MSFT-NXPI
ADF test for MSFT-NXPI failed with LinAlgError

Processing pair MSFT-ORLY

Processing pair MSFT-ODFL

Processing pair MSFT-ON

Processing pair MSFT-ORCL

Processing pair MSFT-OTIS
ADF test for MSFT-OTIS failed with LinAlgError

Processing pair MSFT-PCAR

Processing pair MSFT-PKG

Processing pair MSFT-PANW
ADF test for MSFT-PANW failed with LinAlgError

Processing pair MSFT-PH

Processing pair MSFT-PAYX

Processing pair MSFT-PEP

Processing pair MSFT-POOL

Processing pair MSFT-PG

Processing pair MSFT-PGR

Processing pair MSFT-PLD

Processing pair MSFT-PEG

Processing pair MSFT-PTC

Processing pair MSFT-PSA

Processing pair MSFT-PHM

Processing pair MSFT-PWR

Processing pair MSFT-QCOM

Processing pair MSFT-DGX

Processing pair MSFT-RJF

Processing pair MSFT-RSG

Processing pair MSFT-RMD

Processing pair MSFT-ROK

Processing pair MSFT-ROL

Processing pair MSFT-ROP

Processing pair MSFT-ROST

Processing pair MSFT-SPGI

Processing pair MSFT-CRM

Processing pair MSFT-STX

Processing pair MSFT-NOW
ADF test for MSFT-NOW failed with LinAlgError

Processing pair MSFT-SHW

Processing pair MSFT-SNA

Processing pair MSFT-SO

Processing pair MSFT-STLD

Processing pair MSFT-STE

Processing pair MSFT-SYK

Processing pair MSFT-SNPS

Processing pair MSFT-TMUS

Processing pair MSFT-TEL

Processing pair MSFT-TDY

Processing pair MSFT-TER

Processing pair MSFT-TXN

Processing pair MSFT-TPL

Processing pair MSFT-TMO

Processing pair MSFT-TJX

Processing pair MSFT-TSCO

Processing pair MSFT-TT

Processing pair MSFT-TDG

Processing pair MSFT-TRV

Processing pair MSFT-TYL

Processing pair MSFT-UNP

Processing pair MSFT-URI

Processing pair MSFT-UNH

Processing pair MSFT-VRSK

Processing pair MSFT-VRTX

Processing pair MSFT-V

Processing pair MSFT-VMC

Processing pair MSFT-WRB

Processing pair MSFT-GWW

Processing pair MSFT-WMT

Processing pair MSFT-WM

Processing pair MSFT-WAT

Processing pair MSFT-WST

Processing pair MSFT-WTW

Processing pair MSFT-XYL
ADF test for MSFT-XYL failed with LinAlgError

Processing pair MSFT-YUM

Processing pair MSFT-ZTS
ADF test for MSFT-ZTS failed with LinAlgError

Processing pair MAA-MOH

Processing pair MAA-MDLZ

Processing pair MAA-MNST

Processing pair MAA-MCO

Processing pair MAA-MS

Processing pair MAA-MSCI

Processing pair MAA-NDAQ

Processing pair MAA-NEE

Processing pair MAA-NKE

Processing pair MAA-NDSN

Processing pair MAA-NSC

Processing pair MAA-NOC

Processing pair MAA-NXPI
ADF test for MAA-NXPI failed with LinAlgError

Processing pair MAA-PAYX

Processing pair MAA-PEP

Processing pair MAA-PFE

Processing pair MAA-PNC

Processing pair MAA-POOL

Processing pair MAA-PG

Processing pair MAA-PLD

Processing pair MAA-PEG

Processing pair MAA-PSA

Processing pair MAA-DGX

Processing pair MAA-RJF

Processing pair MAA-O

Processing pair MAA-RF

Processing pair MAA-RMD

Processing pair MAA-RVTY

Processing pair MAA-ROK

Processing pair MAA-ROL

Processing pair MAA-ROP

Processing pair MAA-SPGI

Processing pair MAA-SBAC

Processing pair MAA-SRE

Processing pair MAA-SHW

Processing pair MAA-SO

Processing pair MAA-SBUX

Processing pair MAA-STE

Processing pair MAA-SYK

Processing pair MAA-SYY

Processing pair MAA-TMUS

Processing pair MAA-TROW

Processing pair MAA-TGT

Processing pair MAA-TEL

Processing pair MAA-TDY

Processing pair MAA-TER

Processing pair MAA-TXN

Processing pair MAA-TMO

Processing pair MAA-TRMB

Processing pair MAA-TYL

Processing pair MAA-UDR

Processing pair MAA-UNP

Processing pair MAA-UPS

Processing pair MAA-UNH

Processing pair MAA-VRSN

Processing pair MAA-VRSK

Processing pair MAA-V

Processing pair MAA-WM

Processing pair MAA-WAT

Processing pair MAA-WEC

Processing pair MAA-WST

Processing pair MAA-WTW

Processing pair MAA-XEL

Processing pair MAA-XYL
ADF test for MAA-XYL failed with LinAlgError

Processing pair MAA-YUM

Processing pair MAA-ZBRA

Processing pair MAA-ZTS
ADF test for MAA-ZTS failed with LinAlgError

Processing pair MHK-VLTO
ADF test for MHK-VLTO failed with LinAlgError

Processing pair MOH-MDLZ

Processing pair MOH-MPWR

Processing pair MOH-MNST

Processing pair MOH-MCO

Processing pair MOH-MS

Processing pair MOH-MSI

Processing pair MOH-MSCI

Processing pair MOH-NDAQ

Processing pair MOH-NEE

Processing pair MOH-NDSN

Processing pair MOH-NSC

Processing pair MOH-NOC

Processing pair MOH-NUE

Processing pair MOH-NVR

Processing pair MOH-NXPI
ADF test for MOH-NXPI failed with LinAlgError

Processing pair MOH-ORLY

Processing pair MOH-ODFL

Processing pair MOH-ON

Processing pair MOH-PCAR

Processing pair MOH-PKG

Processing pair MOH-PANW
ADF test for MOH-PANW failed with LinAlgError

Processing pair MOH-PH

Processing pair MOH-PAYX

Processing pair MOH-PEP

Processing pair MOH-POOL

Processing pair MOH-PG

Processing pair MOH-PGR

Processing pair MOH-PLD

Processing pair MOH-PEG

Processing pair MOH-PTC

Processing pair MOH-PSA

Processing pair MOH-QCOM

Processing pair MOH-DGX

Processing pair MOH-RJF

Processing pair MOH-RF

Processing pair MOH-RSG

Processing pair MOH-RMD

Processing pair MOH-ROK

Processing pair MOH-ROL

Processing pair MOH-ROP

Processing pair MOH-SPGI

Processing pair MOH-CRM

Processing pair MOH-STX

Processing pair MOH-SRE

Processing pair MOH-NOW
ADF test for MOH-NOW failed with LinAlgError

Processing pair MOH-SHW

Processing pair MOH-SNA

Processing pair MOH-SO

Processing pair MOH-STLD

Processing pair MOH-STE

Processing pair MOH-SYK

Processing pair MOH-SNPS

Processing pair MOH-TMUS

Processing pair MOH-TEL

Processing pair MOH-TDY

Processing pair MOH-TER

Processing pair MOH-TSLA
ADF test for MOH-TSLA failed with LinAlgError

Processing pair MOH-TXN

Processing pair MOH-TPL

Processing pair MOH-TMO

Processing pair MOH-TJX

Processing pair MOH-TSCO

Processing pair MOH-TT

Processing pair MOH-TDG

Processing pair MOH-TRV

Processing pair MOH-TYL

Processing pair MOH-UNP

Processing pair MOH-UPS

Processing pair MOH-UNH

Processing pair MOH-VRSK

Processing pair MOH-VRTX

Processing pair MOH-VICI
ADF test for MOH-VICI failed with LinAlgError

Processing pair MOH-V

Processing pair MOH-VMC

Processing pair MOH-WRB

Processing pair MOH-WMT

Processing pair MOH-WM

Processing pair MOH-WAT

Processing pair MOH-WST

Processing pair MOH-WTW

Processing pair MOH-XYL
ADF test for MOH-XYL failed with LinAlgError

Processing pair MOH-YUM

Processing pair MOH-ZTS
ADF test for MOH-ZTS failed with LinAlgError

Processing pair MDLZ-MNST

Processing pair MDLZ-MCO

Processing pair MDLZ-MS

Processing pair MDLZ-MSI

Processing pair MDLZ-MSCI

Processing pair MDLZ-NDAQ

Processing pair MDLZ-NEE

Processing pair MDLZ-NI

Processing pair MDLZ-NDSN

Processing pair MDLZ-NSC

Processing pair MDLZ-NOC

Processing pair MDLZ-NVR

Processing pair MDLZ-NXPI
ADF test for MDLZ-NXPI failed with LinAlgError

Processing pair MDLZ-ORLY

Processing pair MDLZ-ODFL

Processing pair MDLZ-OMC

Processing pair MDLZ-PKG

Processing pair MDLZ-PAYX

Processing pair MDLZ-PEP

Processing pair MDLZ-PM

Processing pair MDLZ-POOL

Processing pair MDLZ-PPG

Processing pair MDLZ-PFG

Processing pair MDLZ-PG

Processing pair MDLZ-PGR

Processing pair MDLZ-PLD

Processing pair MDLZ-PEG

Processing pair MDLZ-PTC

Processing pair MDLZ-PSA

Processing pair MDLZ-DGX

Processing pair MDLZ-RJF

Processing pair MDLZ-RTX

Processing pair MDLZ-O

Processing pair MDLZ-REGN

Processing pair MDLZ-RF

Processing pair MDLZ-RSG

Processing pair MDLZ-RMD

Processing pair MDLZ-ROK

Processing pair MDLZ-ROL

Processing pair MDLZ-ROP

Processing pair MDLZ-ROST

Processing pair MDLZ-SPGI

Processing pair MDLZ-CRM

Processing pair MDLZ-SRE

Processing pair MDLZ-NOW
ADF test for MDLZ-NOW failed with LinAlgError

Processing pair MDLZ-SHW

Processing pair MDLZ-SJM

Processing pair MDLZ-SNA

Processing pair MDLZ-SO

Processing pair MDLZ-SBUX

Processing pair MDLZ-STE

Processing pair MDLZ-SYK

Processing pair MDLZ-SNPS

Processing pair MDLZ-SYY

Processing pair MDLZ-TMUS

Processing pair MDLZ-TEL

Processing pair MDLZ-TDY

Processing pair MDLZ-TER

Processing pair MDLZ-TXN

Processing pair MDLZ-TMO

Processing pair MDLZ-TJX

Processing pair MDLZ-TSCO

Processing pair MDLZ-TDG

Processing pair MDLZ-TRV

Processing pair MDLZ-TYL

Processing pair MDLZ-ULTA

Processing pair MDLZ-UNP

Processing pair MDLZ-UPS

Processing pair MDLZ-UNH

Processing pair MDLZ-VRSN

Processing pair MDLZ-VRSK

Processing pair MDLZ-VRTX

Processing pair MDLZ-VICI
ADF test for MDLZ-VICI failed with LinAlgError

Processing pair MDLZ-V

Processing pair MDLZ-VMC

Processing pair MDLZ-WRB

Processing pair MDLZ-WMT

Processing pair MDLZ-WM

Processing pair MDLZ-WAT

Processing pair MDLZ-WEC

Processing pair MDLZ-WELL

Processing pair MDLZ-WST

Processing pair MDLZ-WTW

Processing pair MDLZ-XEL

Processing pair MDLZ-XYL
ADF test for MDLZ-XYL failed with LinAlgError

Processing pair MDLZ-YUM

Processing pair MDLZ-ZTS
ADF test for MDLZ-ZTS failed with LinAlgError

Processing pair MPWR-MCO

Processing pair MPWR-MS

Processing pair MPWR-MSI

Processing pair MPWR-MSCI

Processing pair MPWR-NDAQ

Processing pair MPWR-NTAP

Processing pair MPWR-NDSN

Processing pair MPWR-NUE

Processing pair MPWR-NVR

Processing pair MPWR-NXPI
ADF test for MPWR-NXPI failed with LinAlgError

Processing pair MPWR-ORLY

Processing pair MPWR-ODFL

Processing pair MPWR-ON

Processing pair MPWR-ORCL

Processing pair MPWR-PCAR

Processing pair MPWR-PKG

Processing pair MPWR-PANW
ADF test for MPWR-PANW failed with LinAlgError

Processing pair MPWR-PH

Processing pair MPWR-PAYX

Processing pair MPWR-PNR

Processing pair MPWR-PEP

Processing pair MPWR-PG

Processing pair MPWR-PGR

Processing pair MPWR-PLD

Processing pair MPWR-PEG

Processing pair MPWR-PTC

Processing pair MPWR-PHM

Processing pair MPWR-PWR

Processing pair MPWR-QCOM

Processing pair MPWR-RJF

Processing pair MPWR-RSG

Processing pair MPWR-ROL

Processing pair MPWR-ROP

Processing pair MPWR-SPGI

Processing pair MPWR-STX

Processing pair MPWR-NOW
ADF test for MPWR-NOW failed with LinAlgError

Processing pair MPWR-SHW

Processing pair MPWR-SNA

Processing pair MPWR-SO

Processing pair MPWR-STLD

Processing pair MPWR-STE

Processing pair MPWR-SYK

Processing pair MPWR-SNPS

Processing pair MPWR-TMUS

Processing pair MPWR-TEL

Processing pair MPWR-TER

Processing pair MPWR-TXN

Processing pair MPWR-TPL

Processing pair MPWR-TMO

Processing pair MPWR-TJX

Processing pair MPWR-TSCO

Processing pair MPWR-TT

Processing pair MPWR-TDG

Processing pair MPWR-TRV

Processing pair MPWR-TYL

Processing pair MPWR-UNP

Processing pair MPWR-URI

Processing pair MPWR-UNH

Processing pair MPWR-VRSK

Processing pair MPWR-VRTX

Processing pair MPWR-V

Processing pair MPWR-VMC

Processing pair MPWR-WRB

Processing pair MPWR-GWW

Processing pair MPWR-WMT

Processing pair MPWR-WM

Processing pair MPWR-WST

Processing pair MPWR-WTW

Processing pair MPWR-XYL
ADF test for MPWR-XYL failed with LinAlgError

Processing pair MPWR-YUM

Processing pair MNST-MCO

Processing pair MNST-MS

Processing pair MNST-MSCI

Processing pair MNST-NDAQ

Processing pair MNST-NEE

Processing pair MNST-NI

Processing pair MNST-NDSN

Processing pair MNST-NSC

Processing pair MNST-NOC

Processing pair MNST-NVR

Processing pair MNST-NXPI
ADF test for MNST-NXPI failed with LinAlgError

Processing pair MNST-ORLY

Processing pair MNST-ODFL

Processing pair MNST-PKG

Processing pair MNST-PAYX

Processing pair MNST-PEP

Processing pair MNST-POOL

Processing pair MNST-PPG

Processing pair MNST-PFG

Processing pair MNST-PG

Processing pair MNST-PLD

Processing pair MNST-PEG

Processing pair MNST-PTC

Processing pair MNST-PSA

Processing pair MNST-DGX

Processing pair MNST-RJF

Processing pair MNST-O

Processing pair MNST-REGN

Processing pair MNST-RF

Processing pair MNST-RSG

Processing pair MNST-RMD

Processing pair MNST-ROK

Processing pair MNST-ROL

Processing pair MNST-ROP

Processing pair MNST-ROST

Processing pair MNST-SPGI

Processing pair MNST-CRM

Processing pair MNST-SRE

Processing pair MNST-NOW
ADF test for MNST-NOW failed with LinAlgError

Processing pair MNST-SHW

Processing pair MNST-SJM

Processing pair MNST-SNA

Processing pair MNST-SO

Processing pair MNST-SBUX

Processing pair MNST-STE

Processing pair MNST-SYK

Processing pair MNST-SYY

Processing pair MNST-TMUS

Processing pair MNST-TTWO

Processing pair MNST-TEL

Processing pair MNST-TDY

Processing pair MNST-TXN

Processing pair MNST-TMO

Processing pair MNST-TJX

Processing pair MNST-TSCO

Processing pair MNST-TRV

Processing pair MNST-TYL

Processing pair MNST-ULTA

Processing pair MNST-UNP

Processing pair MNST-UPS

Processing pair MNST-UNH

Processing pair MNST-VRSN

Processing pair MNST-VRSK

Processing pair MNST-VRTX

Processing pair MNST-VICI
ADF test for MNST-VICI failed with LinAlgError

Processing pair MNST-V

Processing pair MNST-VMC

Processing pair MNST-WRB

Processing pair MNST-WMT

Processing pair MNST-WM

Processing pair MNST-WAT

Processing pair MNST-WEC

Processing pair MNST-WST

Processing pair MNST-WTW

Processing pair MNST-XEL

Processing pair MNST-XYL
ADF test for MNST-XYL failed with LinAlgError

Processing pair MNST-YUM

Processing pair MNST-ZTS
ADF test for MNST-ZTS failed with LinAlgError

Processing pair MCO-MS

Processing pair MCO-MSI

Processing pair MCO-MSCI

Processing pair MCO-NDAQ

Processing pair MCO-NFLX

Processing pair MCO-NEE

Processing pair MCO-NDSN

Processing pair MCO-NSC

Processing pair MCO-NOC

Processing pair MCO-NVR

Processing pair MCO-NXPI
ADF test for MCO-NXPI failed with LinAlgError

Processing pair MCO-ORLY

Processing pair MCO-ODFL

Processing pair MCO-ORCL

Processing pair MCO-PCAR

Processing pair MCO-PKG

Processing pair MCO-PANW
ADF test for MCO-PANW failed with LinAlgError

Processing pair MCO-PH

Processing pair MCO-PAYX

Processing pair MCO-PNR

Processing pair MCO-PEP

Processing pair MCO-PNC

Processing pair MCO-POOL

Processing pair MCO-PG

Processing pair MCO-PGR

Processing pair MCO-PLD

Processing pair MCO-PEG

Processing pair MCO-PTC

Processing pair MCO-PSA

Processing pair MCO-PHM

Processing pair MCO-QCOM

Processing pair MCO-DGX

Processing pair MCO-RJF

Processing pair MCO-RTX

Processing pair MCO-RF

Processing pair MCO-RSG

Processing pair MCO-RMD

Processing pair MCO-RVTY

Processing pair MCO-ROK

Processing pair MCO-ROL

Processing pair MCO-ROP

Processing pair MCO-ROST

Processing pair MCO-SPGI

Processing pair MCO-CRM

Processing pair MCO-STX

Processing pair MCO-SRE

Processing pair MCO-NOW
ADF test for MCO-NOW failed with LinAlgError

Processing pair MCO-SHW

Processing pair MCO-SNA

Processing pair MCO-SO

Processing pair MCO-SBUX

Processing pair MCO-STE

Processing pair MCO-SYK

Processing pair MCO-SNPS

Processing pair MCO-SYY

Processing pair MCO-TMUS

Processing pair MCO-TTWO

Processing pair MCO-TEL

Processing pair MCO-TDY

Processing pair MCO-TER

Processing pair MCO-TXN

Processing pair MCO-TMO

Processing pair MCO-TJX

Processing pair MCO-TSCO

Processing pair MCO-TT

Processing pair MCO-TDG

Processing pair MCO-TRV

Processing pair MCO-TYL

Processing pair MCO-UNP

Processing pair MCO-UPS

Processing pair MCO-URI

Processing pair MCO-UNH

Processing pair MCO-VLTO
ADF test for MCO-VLTO failed with LinAlgError

Processing pair MCO-VRSN

Processing pair MCO-VRSK

Processing pair MCO-VRTX

Processing pair MCO-V

Processing pair MCO-VMC

Processing pair MCO-WRB

Processing pair MCO-WMT

Processing pair MCO-WM

Processing pair MCO-WAT

Processing pair MCO-WEC

Processing pair MCO-WELL

Processing pair MCO-WST

Processing pair MCO-WTW

Processing pair MCO-WDAY
ADF test for MCO-WDAY failed with LinAlgError

Processing pair MCO-XEL

Processing pair MCO-XYL
ADF test for MCO-XYL failed with LinAlgError

Processing pair MCO-YUM

Processing pair MCO-ZTS
ADF test for MCO-ZTS failed with LinAlgError

Processing pair MS-MSI

Processing pair MS-MSCI

Processing pair MS-NDAQ

Processing pair MS-NTAP

Processing pair MS-NEE

Processing pair MS-NDSN

Processing pair MS-NSC

Processing pair MS-NOC

Processing pair MS-NUE

Processing pair MS-NVR

Processing pair MS-NXPI
ADF test for MS-NXPI failed with LinAlgError

Processing pair MS-ORLY

Processing pair MS-ODFL

Processing pair MS-ON

Processing pair MS-ORCL

Processing pair MS-OTIS
ADF test for MS-OTIS failed with LinAlgError

Processing pair MS-PCAR

Processing pair MS-PKG

Processing pair MS-PANW
ADF test for MS-PANW failed with LinAlgError

Processing pair MS-PH

Processing pair MS-PAYX

Processing pair MS-PNR

Processing pair MS-PEP

Processing pair MS-PNC

Processing pair MS-POOL

Processing pair MS-PFG

Processing pair MS-PG

Processing pair MS-PGR

Processing pair MS-PLD

Processing pair MS-PRU

Processing pair MS-PEG

Processing pair MS-PTC

Processing pair MS-PSA

Processing pair MS-QCOM

Processing pair MS-DGX

Processing pair MS-RJF

Processing pair MS-RTX

Processing pair MS-RF

Processing pair MS-RSG

Processing pair MS-RMD

Processing pair MS-ROK

Processing pair MS-ROL

Processing pair MS-ROP

Processing pair MS-SPGI

Processing pair MS-STX

Processing pair MS-NOW
ADF test for MS-NOW failed with LinAlgError

Processing pair MS-SHW

Processing pair MS-SNA

Processing pair MS-SO

Processing pair MS-STLD

Processing pair MS-STE

Processing pair MS-SYK

Processing pair MS-SNPS

Processing pair MS-TMUS

Processing pair MS-TEL

Processing pair MS-TDY

Processing pair MS-TER

Processing pair MS-TSLA
ADF test for MS-TSLA failed with LinAlgError

Processing pair MS-TXN

Processing pair MS-TPL

Processing pair MS-TXT

Processing pair MS-TMO

Processing pair MS-TJX

Processing pair MS-TSCO

Processing pair MS-TT

Processing pair MS-TDG

Processing pair MS-TRV

Processing pair MS-TYL

Processing pair MS-UNP

Processing pair MS-UPS

Processing pair MS-URI

Processing pair MS-UNH

Processing pair MS-VRSK

Processing pair MS-VICI
ADF test for MS-VICI failed with LinAlgError

Processing pair MS-V

Processing pair MS-VMC

Processing pair MS-WRB

Processing pair MS-GWW

Processing pair MS-WMT

Processing pair MS-WM

Processing pair MS-WAT

Processing pair MS-WST

Processing pair MS-WTW

Processing pair MS-XYL
ADF test for MS-XYL failed with LinAlgError

Processing pair MS-YUM

Processing pair MS-ZTS
ADF test for MS-ZTS failed with LinAlgError

Processing pair MSI-MSCI

Processing pair MSI-NDAQ

Processing pair MSI-NTAP

Processing pair MSI-NDSN

Processing pair MSI-NOC

Processing pair MSI-NRG

Processing pair MSI-NUE

Processing pair MSI-NVR

Processing pair MSI-NXPI
ADF test for MSI-NXPI failed with LinAlgError

Processing pair MSI-ORLY

Processing pair MSI-ODFL

Processing pair MSI-ON

Processing pair MSI-OKE

Processing pair MSI-ORCL

Processing pair MSI-OTIS
ADF test for MSI-OTIS failed with LinAlgError

Processing pair MSI-PCAR

Processing pair MSI-PKG

Processing pair MSI-PANW
ADF test for MSI-PANW failed with LinAlgError

Processing pair MSI-PH

Processing pair MSI-PAYX

Processing pair MSI-PNR

Processing pair MSI-PEP

Processing pair MSI-PFG

Processing pair MSI-PG

Processing pair MSI-PGR

Processing pair MSI-PLD

Processing pair MSI-PEG

Processing pair MSI-PTC

Processing pair MSI-PSA

Processing pair MSI-PHM

Processing pair MSI-PWR

Processing pair MSI-QCOM

Processing pair MSI-DGX

Processing pair MSI-RJF

Processing pair MSI-RTX

Processing pair MSI-RSG

Processing pair MSI-ROK

Processing pair MSI-ROL

Processing pair MSI-ROP

Processing pair MSI-ROST

Processing pair MSI-SPGI

Processing pair MSI-STX

Processing pair MSI-SRE

Processing pair MSI-NOW
ADF test for MSI-NOW failed with LinAlgError

Processing pair MSI-SHW

Processing pair MSI-SNA

Processing pair MSI-SO

Processing pair MSI-STLD

Processing pair MSI-STE

Processing pair MSI-SYK

Processing pair MSI-SNPS

Processing pair MSI-TMUS

Processing pair MSI-TEL

Processing pair MSI-TDY

Processing pair MSI-TXN

Processing pair MSI-TPL

Processing pair MSI-TMO

Processing pair MSI-TJX

Processing pair MSI-TSCO

Processing pair MSI-TT

Processing pair MSI-TDG

Processing pair MSI-TRV

Processing pair MSI-TYL

Processing pair MSI-UNP

Processing pair MSI-URI

Processing pair MSI-UNH

Processing pair MSI-VLO

Processing pair MSI-VLTO
ADF test for MSI-VLTO failed with LinAlgError

Processing pair MSI-VRSK

Processing pair MSI-VRTX

Processing pair MSI-V

Processing pair MSI-VMC

Processing pair MSI-WRB

Processing pair MSI-GWW

Processing pair MSI-WMT

Processing pair MSI-WM

Processing pair MSI-WELL

Processing pair MSI-WTW

Processing pair MSI-XYL
ADF test for MSI-XYL failed with LinAlgError

Processing pair MSI-YUM

Processing pair MSCI-NDAQ

Processing pair MSCI-NEE

Processing pair MSCI-NKE

Processing pair MSCI-NDSN

Processing pair MSCI-NSC

Processing pair MSCI-NOC

Processing pair MSCI-NVR

Processing pair MSCI-NXPI
ADF test for MSCI-NXPI failed with LinAlgError

Processing pair MSCI-ORLY

Processing pair MSCI-ODFL

Processing pair MSCI-ON

Processing pair MSCI-PKG

Processing pair MSCI-PAYX

Processing pair MSCI-PEP

Processing pair MSCI-POOL

Processing pair MSCI-PG

Processing pair MSCI-PGR

Processing pair MSCI-PLD

Processing pair MSCI-PEG

Processing pair MSCI-PTC

Processing pair MSCI-PSA

Processing pair MSCI-QCOM

Processing pair MSCI-DGX

Processing pair MSCI-RJF

Processing pair MSCI-RF

Processing pair MSCI-RSG

Processing pair MSCI-RMD

Processing pair MSCI-RVTY

Processing pair MSCI-ROK

Processing pair MSCI-ROL

Processing pair MSCI-ROP

Processing pair MSCI-SPGI

Processing pair MSCI-CRM

Processing pair MSCI-STX

Processing pair MSCI-NOW
ADF test for MSCI-NOW failed with LinAlgError

Processing pair MSCI-SHW

Processing pair MSCI-SO

Processing pair MSCI-SBUX

Processing pair MSCI-STE

Processing pair MSCI-SYK

Processing pair MSCI-SNPS

Processing pair MSCI-TMUS

Processing pair MSCI-TGT

Processing pair MSCI-TEL

Processing pair MSCI-TDY

Processing pair MSCI-TER

Processing pair MSCI-TSLA
ADF test for MSCI-TSLA failed with LinAlgError

Processing pair MSCI-TXN

Processing pair MSCI-TMO

Processing pair MSCI-TJX

Processing pair MSCI-TSCO

Processing pair MSCI-TT

Processing pair MSCI-TYL

Processing pair MSCI-UNP

Processing pair MSCI-UPS

Processing pair MSCI-UNH

Processing pair MSCI-VRSK

Processing pair MSCI-V

Processing pair MSCI-VMC

Processing pair MSCI-WRB

Processing pair MSCI-WMT

Processing pair MSCI-WM

Processing pair MSCI-WAT

Processing pair MSCI-WEC

Processing pair MSCI-WST

Processing pair MSCI-WTW

Processing pair MSCI-WDAY
ADF test for MSCI-WDAY failed with LinAlgError

Processing pair MSCI-XEL

Processing pair MSCI-XYL
ADF test for MSCI-XYL failed with LinAlgError

Processing pair MSCI-YUM

Processing pair MSCI-ZBRA

Processing pair MSCI-ZTS
ADF test for MSCI-ZTS failed with LinAlgError

Processing pair NDAQ-NEE

Processing pair NDAQ-NDSN

Processing pair NDAQ-NSC

Processing pair NDAQ-NOC

Processing pair NDAQ-NVR

Processing pair NDAQ-NXPI
ADF test for NDAQ-NXPI failed with LinAlgError

Processing pair NDAQ-ORLY

Processing pair NDAQ-ODFL

Processing pair NDAQ-ORCL

Processing pair NDAQ-PKG

Processing pair NDAQ-PH

Processing pair NDAQ-PAYX

Processing pair NDAQ-PEP

Processing pair NDAQ-PNC

Processing pair NDAQ-POOL

Processing pair NDAQ-PFG

Processing pair NDAQ-PG

Processing pair NDAQ-PGR

Processing pair NDAQ-PLD

Processing pair NDAQ-PEG

Processing pair NDAQ-PTC

Processing pair NDAQ-PSA

Processing pair NDAQ-QCOM

Processing pair NDAQ-DGX

Processing pair NDAQ-RJF

Processing pair NDAQ-RTX

Processing pair NDAQ-RF

Processing pair NDAQ-RSG

Processing pair NDAQ-RMD

Processing pair NDAQ-RVTY

Processing pair NDAQ-ROK

Processing pair NDAQ-ROL

Processing pair NDAQ-ROP

Processing pair NDAQ-ROST

Processing pair NDAQ-SPGI

Processing pair NDAQ-CRM

Processing pair NDAQ-STX

Processing pair NDAQ-SRE

Processing pair NDAQ-NOW
ADF test for NDAQ-NOW failed with LinAlgError

Processing pair NDAQ-SHW

Processing pair NDAQ-SNA

Processing pair NDAQ-SO

Processing pair NDAQ-SBUX

Processing pair NDAQ-STE

Processing pair NDAQ-SYK

Processing pair NDAQ-SNPS

Processing pair NDAQ-SYY

Processing pair NDAQ-TMUS

Processing pair NDAQ-TGT

Processing pair NDAQ-TEL

Processing pair NDAQ-TDY

Processing pair NDAQ-TER

Processing pair NDAQ-TSLA
ADF test for NDAQ-TSLA failed with LinAlgError

Processing pair NDAQ-TXN

Processing pair NDAQ-TPL

Processing pair NDAQ-TMO

Processing pair NDAQ-TJX

Processing pair NDAQ-TSCO

Processing pair NDAQ-TT

Processing pair NDAQ-TDG

Processing pair NDAQ-TRV

Processing pair NDAQ-TYL

Processing pair NDAQ-UDR

Processing pair NDAQ-ULTA

Processing pair NDAQ-UNP

Processing pair NDAQ-UPS

Processing pair NDAQ-UNH

Processing pair NDAQ-VRSN

Processing pair NDAQ-VRSK

Processing pair NDAQ-VRTX

Processing pair NDAQ-VICI
ADF test for NDAQ-VICI failed with LinAlgError

Processing pair NDAQ-V

Processing pair NDAQ-VMC

Processing pair NDAQ-WRB

Processing pair NDAQ-WMT

Processing pair NDAQ-WM

Processing pair NDAQ-WAT

Processing pair NDAQ-WEC

Processing pair NDAQ-WST

Processing pair NDAQ-WTW

Processing pair NDAQ-XEL

Processing pair NDAQ-XYL
ADF test for NDAQ-XYL failed with LinAlgError

Processing pair NDAQ-YUM

Processing pair NDAQ-ZBRA

Processing pair NDAQ-ZTS
ADF test for NDAQ-ZTS failed with LinAlgError

Processing pair NTAP-NRG

Processing pair NTAP-NVR

Processing pair NTAP-ORCL

Processing pair NTAP-PANW
ADF test for NTAP-PANW failed with LinAlgError

Processing pair NTAP-PH

Processing pair NTAP-PGR

Processing pair NTAP-PTC

Processing pair NTAP-RJF

Processing pair NTAP-RSG

Processing pair NTAP-NOW
ADF test for NTAP-NOW failed with LinAlgError

Processing pair NTAP-TT

Processing pair NTAP-TDG

Processing pair NTAP-URI

Processing pair NTAP-VLTO
ADF test for NTAP-VLTO failed with LinAlgError

Processing pair NTAP-WM

Processing pair NTAP-XYL
ADF test for NTAP-XYL failed with LinAlgError

Processing pair NFLX-NDSN

Processing pair NFLX-NSC

Processing pair NFLX-NVR

Processing pair NFLX-PEG

Processing pair NFLX-PTC

Processing pair NFLX-ROK

Processing pair NFLX-ROL

Processing pair NFLX-ROP

Processing pair NFLX-ROST

Processing pair NFLX-SPGI

Processing pair NFLX-CRM

Processing pair NFLX-NOW
ADF test for NFLX-NOW failed with LinAlgError

Processing pair NFLX-SHW

Processing pair NFLX-STE

Processing pair NFLX-SYK

Processing pair NFLX-TTWO

Processing pair NFLX-TEL

Processing pair NFLX-TDY

Processing pair NFLX-TXN

Processing pair NFLX-TYL

Processing pair NFLX-UNP

Processing pair NFLX-VRSK

Processing pair NFLX-V

Processing pair NFLX-WMT

Processing pair NFLX-WTW

Processing pair NFLX-WDAY
ADF test for NFLX-WDAY failed with LinAlgError

Processing pair NFLX-XYL
ADF test for NFLX-XYL failed with LinAlgError

Processing pair NWSA-NWS
ADF test for NWSA-NWS failed with LinAlgError

Processing pair NWSA-PNR
ADF test for NWSA-PNR failed with LinAlgError

Processing pair NWS-PNR
ADF test for NWS-PNR failed with LinAlgError

Processing pair NWS-STX
ADF test for NWS-STX failed with LinAlgError

Processing pair NWS-URI
ADF test for NWS-URI failed with LinAlgError

Processing pair NEE-NKE

Processing pair NEE-NDSN

Processing pair NEE-NSC

Processing pair NEE-NOC

Processing pair NEE-NXPI
ADF test for NEE-NXPI failed with LinAlgError

Processing pair NEE-ODFL

Processing pair NEE-PKG

Processing pair NEE-PAYX

Processing pair NEE-PEP

Processing pair NEE-PNC

Processing pair NEE-POOL

Processing pair NEE-PG

Processing pair NEE-PLD

Processing pair NEE-PEG

Processing pair NEE-PTC

Processing pair NEE-PSA

Processing pair NEE-DGX

Processing pair NEE-RJF

Processing pair NEE-O

Processing pair NEE-RF

Processing pair NEE-RSG

Processing pair NEE-RMD

Processing pair NEE-RVTY

Processing pair NEE-ROK

Processing pair NEE-ROL

Processing pair NEE-ROP

Processing pair NEE-ROST

Processing pair NEE-SPGI

Processing pair NEE-CRM

Processing pair NEE-SBAC

Processing pair NEE-SRE

Processing pair NEE-NOW
ADF test for NEE-NOW failed with LinAlgError

Processing pair NEE-SHW

Processing pair NEE-SO

Processing pair NEE-SBUX

Processing pair NEE-STE

Processing pair NEE-SYK

Processing pair NEE-SYY

Processing pair NEE-TMUS

Processing pair NEE-TROW

Processing pair NEE-TTWO

Processing pair NEE-TGT

Processing pair NEE-TEL

Processing pair NEE-TDY

Processing pair NEE-TER

Processing pair NEE-TXN

Processing pair NEE-TMO

Processing pair NEE-TSCO

Processing pair NEE-TYL

Processing pair NEE-UDR

Processing pair NEE-UNP

Processing pair NEE-UPS

Processing pair NEE-UNH

Processing pair NEE-VLTO
ADF test for NEE-VLTO failed with LinAlgError

Processing pair NEE-VRSN

Processing pair NEE-VRSK

Processing pair NEE-V

Processing pair NEE-WRB

Processing pair NEE-WMT

Processing pair NEE-WM

Processing pair NEE-WAT

Processing pair NEE-WEC

Processing pair NEE-WST

Processing pair NEE-WTW

Processing pair NEE-XEL

Processing pair NEE-XYL
ADF test for NEE-XYL failed with LinAlgError

Processing pair NEE-YUM

Processing pair NEE-ZBRA

Processing pair NEE-ZTS
ADF test for NEE-ZTS failed with LinAlgError

Processing pair NKE-NDSN

Processing pair NKE-NSC

Processing pair NKE-PAYC
ADF test for NKE-PAYC failed with LinAlgError

Processing pair NKE-POOL

Processing pair NKE-PPG

Processing pair NKE-PLD

Processing pair NKE-RMD

Processing pair NKE-RVTY

Processing pair NKE-ROK

Processing pair NKE-SPGI

Processing pair NKE-CRM

Processing pair NKE-SBAC

Processing pair NKE-SWKS

Processing pair NKE-SBUX

Processing pair NKE-STE

Processing pair NKE-SYY

Processing pair NKE-TROW

Processing pair NKE-TTWO

Processing pair NKE-TGT

Processing pair NKE-TEL

Processing pair NKE-TDY

Processing pair NKE-TER

Processing pair NKE-TXN

Processing pair NKE-TMO

Processing pair NKE-TRMB

Processing pair NKE-TYL

Processing pair NKE-UDR

Processing pair NKE-UNP

Processing pair NKE-UPS

Processing pair NKE-VRSN

Processing pair NKE-WAT

Processing pair NKE-WEC

Processing pair NKE-WST

Processing pair NKE-XEL

Processing pair NKE-ZBRA

Processing pair NKE-ZTS
ADF test for NKE-ZTS failed with LinAlgError

Processing pair NI-NOC

Processing pair NI-OMC

Processing pair NI-PKG

Processing pair NI-PAYX

Processing pair NI-PEP

Processing pair NI-PM

Processing pair NI-PNW

Processing pair NI-PNC

Processing pair NI-PPL

Processing pair NI-PRU

Processing pair NI-PEG

Processing pair NI-PSA

Processing pair NI-DGX

Processing pair NI-RTX

Processing pair NI-O

Processing pair NI-REG

Processing pair NI-ROL

Processing pair NI-ROP

Processing pair NI-ROST

Processing pair NI-SRE

Processing pair NI-SNA

Processing pair NI-SO

Processing pair NI-SYK

Processing pair NI-SYY

Processing pair NI-TEL

Processing pair NI-TXN

Processing pair NI-TJX

Processing pair NI-TRV

Processing pair NI-TSN

Processing pair NI-UDR

Processing pair NI-ULTA

Processing pair NI-UNP

Processing pair NI-V

Processing pair NI-VMC

Processing pair NI-WM

Processing pair NI-WAT

Processing pair NI-WEC

Processing pair NI-WTW

Processing pair NI-XEL

Processing pair NI-YUM

Processing pair NDSN-NSC

Processing pair NDSN-NOC

Processing pair NDSN-NVR

Processing pair NDSN-NXPI
ADF test for NDSN-NXPI failed with LinAlgError

Processing pair NDSN-ORLY

Processing pair NDSN-ODFL

Processing pair NDSN-PKG

Processing pair NDSN-PH

Processing pair NDSN-PAYX

Processing pair NDSN-PEP

Processing pair NDSN-PNC

Processing pair NDSN-POOL

Processing pair NDSN-PFG

Processing pair NDSN-PG

Processing pair NDSN-PGR

Processing pair NDSN-PLD

Processing pair NDSN-PEG

Processing pair NDSN-PTC

Processing pair NDSN-PSA

Processing pair NDSN-QCOM

Processing pair NDSN-DGX

Processing pair NDSN-RJF

Processing pair NDSN-RTX

Processing pair NDSN-O

Processing pair NDSN-RF

Processing pair NDSN-RSG

Processing pair NDSN-RMD

Processing pair NDSN-RVTY

Processing pair NDSN-ROK

Processing pair NDSN-ROL

Processing pair NDSN-ROP

Processing pair NDSN-ROST

Processing pair NDSN-SPGI

Processing pair NDSN-CRM

Processing pair NDSN-SBAC

Processing pair NDSN-STX

Processing pair NDSN-SRE

Processing pair NDSN-NOW
ADF test for NDSN-NOW failed with LinAlgError

Processing pair NDSN-SHW

Processing pair NDSN-SNA

Processing pair NDSN-SO

Processing pair NDSN-SBUX

Processing pair NDSN-STE

Processing pair NDSN-SYK

Processing pair NDSN-SNPS

Processing pair NDSN-SYY

Processing pair NDSN-TMUS

Processing pair NDSN-TTWO

Processing pair NDSN-TEL

Processing pair NDSN-TDY

Processing pair NDSN-TER

Processing pair NDSN-TXN

Processing pair NDSN-TMO

Processing pair NDSN-TJX

Processing pair NDSN-TSCO

Processing pair NDSN-TT

Processing pair NDSN-TDG

Processing pair NDSN-TRV

Processing pair NDSN-TYL

Processing pair NDSN-ULTA

Processing pair NDSN-UNP

Processing pair NDSN-UPS

Processing pair NDSN-UNH

Processing pair NDSN-VRSN

Processing pair NDSN-VRSK

Processing pair NDSN-VRTX

Processing pair NDSN-VICI
ADF test for NDSN-VICI failed with LinAlgError

Processing pair NDSN-V

Processing pair NDSN-VMC

Processing pair NDSN-WRB

Processing pair NDSN-WMT

Processing pair NDSN-WM

Processing pair NDSN-WAT

Processing pair NDSN-WEC

Processing pair NDSN-WST

Processing pair NDSN-WTW

Processing pair NDSN-WDAY
ADF test for NDSN-WDAY failed with LinAlgError

Processing pair NDSN-XEL

Processing pair NDSN-XYL
ADF test for NDSN-XYL failed with LinAlgError

Processing pair NDSN-YUM

Processing pair NDSN-ZTS
ADF test for NDSN-ZTS failed with LinAlgError

Processing pair NSC-NOC

Processing pair NSC-NVR

Processing pair NSC-NXPI
ADF test for NSC-NXPI failed with LinAlgError

Processing pair NSC-ODFL

Processing pair NSC-PKG

Processing pair NSC-PAYX

Processing pair NSC-PEP

Processing pair NSC-PNC

Processing pair NSC-POOL

Processing pair NSC-PG

Processing pair NSC-PLD

Processing pair NSC-PEG

Processing pair NSC-PTC

Processing pair NSC-PSA

Processing pair NSC-QCOM

Processing pair NSC-DGX

Processing pair NSC-RJF

Processing pair NSC-O

Processing pair NSC-RF

Processing pair NSC-RSG

Processing pair NSC-RMD

Processing pair NSC-RVTY

Processing pair NSC-ROK

Processing pair NSC-ROL

Processing pair NSC-ROP

Processing pair NSC-ROST

Processing pair NSC-SPGI

Processing pair NSC-CRM

Processing pair NSC-SBAC

Processing pair NSC-STX

Processing pair NSC-SRE

Processing pair NSC-NOW
ADF test for NSC-NOW failed with LinAlgError

Processing pair NSC-SHW

Processing pair NSC-SO

Processing pair NSC-SBUX

Processing pair NSC-STE

Processing pair NSC-SYK

Processing pair NSC-SYY

Processing pair NSC-TMUS

Processing pair NSC-TROW

Processing pair NSC-TTWO

Processing pair NSC-TGT

Processing pair NSC-TEL

Processing pair NSC-TDY

Processing pair NSC-TER

Processing pair NSC-TXN

Processing pair NSC-TMO

Processing pair NSC-TJX

Processing pair NSC-TRV

Processing pair NSC-TRMB

Processing pair NSC-TYL

Processing pair NSC-UDR

Processing pair NSC-UNP

Processing pair NSC-UPS

Processing pair NSC-UNH

Processing pair NSC-VRSN

Processing pair NSC-VRSK

Processing pair NSC-V

Processing pair NSC-VMC

Processing pair NSC-WRB

Processing pair NSC-WMT

Processing pair NSC-WM

Processing pair NSC-WAT

Processing pair NSC-WEC

Processing pair NSC-WST

Processing pair NSC-WTW

Processing pair NSC-WDAY
ADF test for NSC-WDAY failed with LinAlgError

Processing pair NSC-XEL

Processing pair NSC-XYL
ADF test for NSC-XYL failed with LinAlgError

Processing pair NSC-YUM

Processing pair NSC-ZBRA

Processing pair NSC-ZTS
ADF test for NSC-ZTS failed with LinAlgError

Processing pair NTRS-PNC

Processing pair NTRS-O

Processing pair NTRS-RF

Processing pair NTRS-RVTY

Processing pair NTRS-SYY

Processing pair NTRS-TFC

Processing pair NTRS-TSN

Processing pair NTRS-USB

Processing pair NTRS-UDR

Processing pair NTRS-WAT

Processing pair NOC-NVR

Processing pair NOC-NXPI
ADF test for NOC-NXPI failed with LinAlgError

Processing pair NOC-ORLY

Processing pair NOC-ODFL

Processing pair NOC-PKG

Processing pair NOC-PAYX

Processing pair NOC-PEP

Processing pair NOC-PNW

Processing pair NOC-PNC

Processing pair NOC-PFG

Processing pair NOC-PG

Processing pair NOC-PLD

Processing pair NOC-PRU

Processing pair NOC-PEG

Processing pair NOC-PTC

Processing pair NOC-PSA

Processing pair NOC-DGX

Processing pair NOC-RJF

Processing pair NOC-RTX

Processing pair NOC-O

Processing pair NOC-RF

Processing pair NOC-RSG

Processing pair NOC-RMD

Processing pair NOC-ROK

Processing pair NOC-ROL

Processing pair NOC-ROP

Processing pair NOC-ROST

Processing pair NOC-SPGI

Processing pair NOC-SRE

Processing pair NOC-SHW

Processing pair NOC-SNA

Processing pair NOC-SO

Processing pair NOC-SBUX

Processing pair NOC-STE

Processing pair NOC-SYK

Processing pair NOC-SYY

Processing pair NOC-TMUS

Processing pair NOC-TEL

Processing pair NOC-TDY

Processing pair NOC-TXN

Processing pair NOC-TXT

Processing pair NOC-TMO

Processing pair NOC-TJX

Processing pair NOC-TRV

Processing pair NOC-TYL

Processing pair NOC-UDR

Processing pair NOC-ULTA

Processing pair NOC-UNP

Processing pair NOC-UNH

Processing pair NOC-VLO

Processing pair NOC-VRSN

Processing pair NOC-VRSK

Processing pair NOC-VRTX

Processing pair NOC-V

Processing pair NOC-VMC

Processing pair NOC-WRB

Processing pair NOC-WMT

Processing pair NOC-WM

Processing pair NOC-WAT

Processing pair NOC-WEC

Processing pair NOC-WTW

Processing pair NOC-XEL

Processing pair NOC-XYL
ADF test for NOC-XYL failed with LinAlgError

Processing pair NOC-YUM

Processing pair NRG-NVDA

Processing pair NRG-PH

Processing pair NRG-PGR

Processing pair NRG-PHM

Processing pair NRG-TT

Processing pair NRG-TDG

Processing pair NRG-URI

Processing pair NRG-VLTO
ADF test for NRG-VLTO failed with LinAlgError

Processing pair NRG-VST
ADF test for NRG-VST failed with LinAlgError

Processing pair NUE-ORLY

Processing pair NUE-ODFL

Processing pair NUE-ON

Processing pair NUE-ORCL

Processing pair NUE-PCAR

Processing pair NUE-PANW
ADF test for NUE-PANW failed with LinAlgError

Processing pair NUE-PH

Processing pair NUE-PAYX

Processing pair NUE-PFG

Processing pair NUE-PGR

Processing pair NUE-PWR

Processing pair NUE-RJF

Processing pair NUE-RSG

Processing pair NUE-SNA

Processing pair NUE-STLD

Processing pair NUE-SNPS

Processing pair NUE-TSCO

Processing pair NUE-URI

Processing pair NUE-UNH

Processing pair NUE-VLO

Processing pair NUE-WRB

Processing pair NUE-GWW

Processing pair NUE-WM

Processing pair NVDA-ORCL

Processing pair NVDA-PANW
ADF test for NVDA-PANW failed with LinAlgError

Processing pair NVDA-PH

Processing pair NVDA-PHM

Processing pair NVDA-PWR

Processing pair NVDA-TT

Processing pair NVDA-URI

Processing pair NVDA-VLTO
ADF test for NVDA-VLTO failed with LinAlgError

Processing pair NVDA-VST
ADF test for NVDA-VST failed with LinAlgError

Processing pair NVDA-GWW

Processing pair NVR-NXPI
ADF test for NVR-NXPI failed with LinAlgError

Processing pair NVR-ORLY

Processing pair NVR-ODFL

Processing pair NVR-OKE

Processing pair NVR-ORCL

Processing pair NVR-OTIS
ADF test for NVR-OTIS failed with LinAlgError

Processing pair NVR-PCAR

Processing pair NVR-PKG

Processing pair NVR-PANW
ADF test for NVR-PANW failed with LinAlgError

Processing pair NVR-PH

Processing pair NVR-PAYX

Processing pair NVR-PNR

Processing pair NVR-PEP

Processing pair NVR-PFG

Processing pair NVR-PG

Processing pair NVR-PGR

Processing pair NVR-PLD

Processing pair NVR-PEG

Processing pair NVR-PTC

Processing pair NVR-PSA

Processing pair NVR-PHM

Processing pair NVR-PWR

Processing pair NVR-QCOM

Processing pair NVR-DGX

Processing pair NVR-RJF

Processing pair NVR-RTX

Processing pair NVR-RF

Processing pair NVR-RSG

Processing pair NVR-ROK

Processing pair NVR-ROL

Processing pair NVR-ROP

Processing pair NVR-ROST

Processing pair NVR-SPGI

Processing pair NVR-CRM

Processing pair NVR-STX

Processing pair NVR-SRE

Processing pair NVR-NOW
ADF test for NVR-NOW failed with LinAlgError

Processing pair NVR-SHW

Processing pair NVR-SNA

Processing pair NVR-SO

Processing pair NVR-STLD

Processing pair NVR-STE

Processing pair NVR-SYK

Processing pair NVR-SNPS

Processing pair NVR-TMUS

Processing pair NVR-TEL

Processing pair NVR-TDY

Processing pair NVR-TER

Processing pair NVR-TXN

Processing pair NVR-TPL

Processing pair NVR-TMO

Processing pair NVR-TJX

Processing pair NVR-TSCO

Processing pair NVR-TT

Processing pair NVR-TDG

Processing pair NVR-TRV

Processing pair NVR-TYL

Processing pair NVR-UNP

Processing pair NVR-URI

Processing pair NVR-UNH

Processing pair NVR-VLO

Processing pair NVR-VLTO
ADF test for NVR-VLTO failed with LinAlgError

Processing pair NVR-VRSK

Processing pair NVR-VRTX

Processing pair NVR-V

Processing pair NVR-VMC

Processing pair NVR-WRB

Processing pair NVR-GWW

Processing pair NVR-WMT

Processing pair NVR-WM

Processing pair NVR-WAT

Processing pair NVR-WELL

Processing pair NVR-WTW

Processing pair NVR-XYL
ADF test for NVR-XYL failed with LinAlgError

Processing pair NVR-YUM

Processing pair NXPI-ORLY
ADF test for NXPI-ORLY failed with LinAlgError

Processing pair NXPI-ODFL
ADF test for NXPI-ODFL failed with LinAlgError

Processing pair NXPI-ORCL
ADF test for NXPI-ORCL failed with LinAlgError

Processing pair NXPI-OTIS
ADF test for NXPI-OTIS failed with LinAlgError

Processing pair NXPI-PCAR
ADF test for NXPI-PCAR failed with LinAlgError

Processing pair NXPI-PKG
ADF test for NXPI-PKG failed with LinAlgError

Processing pair NXPI-PANW
ADF test for NXPI-PANW failed with LinAlgError

Processing pair NXPI-PH
ADF test for NXPI-PH failed with LinAlgError

Processing pair NXPI-PAYX
ADF test for NXPI-PAYX failed with LinAlgError

Processing pair NXPI-PNR
ADF test for NXPI-PNR failed with LinAlgError

Processing pair NXPI-PEP
ADF test for NXPI-PEP failed with LinAlgError

Processing pair NXPI-PM
ADF test for NXPI-PM failed with LinAlgError

Processing pair NXPI-PNC
ADF test for NXPI-PNC failed with LinAlgError

Processing pair NXPI-POOL
ADF test for NXPI-POOL failed with LinAlgError

Processing pair NXPI-PPG
ADF test for NXPI-PPG failed with LinAlgError

Processing pair NXPI-PFG
ADF test for NXPI-PFG failed with LinAlgError

Processing pair NXPI-PG
ADF test for NXPI-PG failed with LinAlgError

Processing pair NXPI-PGR
ADF test for NXPI-PGR failed with LinAlgError

Processing pair NXPI-PLD
ADF test for NXPI-PLD failed with LinAlgError

Processing pair NXPI-PRU
ADF test for NXPI-PRU failed with LinAlgError

Processing pair NXPI-PEG
ADF test for NXPI-PEG failed with LinAlgError

Processing pair NXPI-PTC
ADF test for NXPI-PTC failed with LinAlgError

Processing pair NXPI-PSA
ADF test for NXPI-PSA failed with LinAlgError

Processing pair NXPI-QCOM
ADF test for NXPI-QCOM failed with LinAlgError

Processing pair NXPI-DGX
ADF test for NXPI-DGX failed with LinAlgError

Processing pair NXPI-RJF
ADF test for NXPI-RJF failed with LinAlgError

Processing pair NXPI-REGN
ADF test for NXPI-REGN failed with LinAlgError

Processing pair NXPI-RF
ADF test for NXPI-RF failed with LinAlgError

Processing pair NXPI-RSG
ADF test for NXPI-RSG failed with LinAlgError

Processing pair NXPI-ROK
ADF test for NXPI-ROK failed with LinAlgError

Processing pair NXPI-ROL
ADF test for NXPI-ROL failed with LinAlgError

Processing pair NXPI-ROP
ADF test for NXPI-ROP failed with LinAlgError

Processing pair NXPI-ROST
ADF test for NXPI-ROST failed with LinAlgError

Processing pair NXPI-SPGI
ADF test for NXPI-SPGI failed with LinAlgError

Processing pair NXPI-CRM
ADF test for NXPI-CRM failed with LinAlgError

Processing pair NXPI-STX
ADF test for NXPI-STX failed with LinAlgError

Processing pair NXPI-SRE
ADF test for NXPI-SRE failed with LinAlgError

Processing pair NXPI-NOW
ADF test for NXPI-NOW failed with LinAlgError

Processing pair NXPI-SHW
ADF test for NXPI-SHW failed with LinAlgError

Processing pair NXPI-SNA
ADF test for NXPI-SNA failed with LinAlgError

Processing pair NXPI-SO
ADF test for NXPI-SO failed with LinAlgError

Processing pair NXPI-SBUX
ADF test for NXPI-SBUX failed with LinAlgError

Processing pair NXPI-STE
ADF test for NXPI-STE failed with LinAlgError

Processing pair NXPI-SYK
ADF test for NXPI-SYK failed with LinAlgError

Processing pair NXPI-SNPS
ADF test for NXPI-SNPS failed with LinAlgError

Processing pair NXPI-TMUS
ADF test for NXPI-TMUS failed with LinAlgError

Processing pair NXPI-TEL
ADF test for NXPI-TEL failed with LinAlgError

Processing pair NXPI-TDY
ADF test for NXPI-TDY failed with LinAlgError

Processing pair NXPI-TER
ADF test for NXPI-TER failed with LinAlgError

Processing pair NXPI-TXN
ADF test for NXPI-TXN failed with LinAlgError

Processing pair NXPI-TXT
ADF test for NXPI-TXT failed with LinAlgError

Processing pair NXPI-TMO
ADF test for NXPI-TMO failed with LinAlgError

Processing pair NXPI-TJX
ADF test for NXPI-TJX failed with LinAlgError

Processing pair NXPI-TSCO
ADF test for NXPI-TSCO failed with LinAlgError

Processing pair NXPI-TT
ADF test for NXPI-TT failed with LinAlgError

Processing pair NXPI-TDG
ADF test for NXPI-TDG failed with LinAlgError

Processing pair NXPI-TRV
ADF test for NXPI-TRV failed with LinAlgError

Processing pair NXPI-TYL
ADF test for NXPI-TYL failed with LinAlgError

Processing pair NXPI-UNP
ADF test for NXPI-UNP failed with LinAlgError

Processing pair NXPI-URI
ADF test for NXPI-URI failed with LinAlgError

Processing pair NXPI-UNH
ADF test for NXPI-UNH failed with LinAlgError

Processing pair NXPI-VRSK
ADF test for NXPI-VRSK failed with LinAlgError

Processing pair NXPI-VRTX
ADF test for NXPI-VRTX failed with LinAlgError

Processing pair NXPI-V
ADF test for NXPI-V failed with LinAlgError

Processing pair NXPI-VMC
ADF test for NXPI-VMC failed with LinAlgError

Processing pair NXPI-WRB
ADF test for NXPI-WRB failed with LinAlgError

Processing pair NXPI-WMT
ADF test for NXPI-WMT failed with LinAlgError

Processing pair NXPI-WM
ADF test for NXPI-WM failed with LinAlgError

Processing pair NXPI-WAT
ADF test for NXPI-WAT failed with LinAlgError

Processing pair NXPI-WELL
ADF test for NXPI-WELL failed with LinAlgError

Processing pair NXPI-WST
ADF test for NXPI-WST failed with LinAlgError

Processing pair NXPI-WTW
ADF test for NXPI-WTW failed with LinAlgError

Processing pair NXPI-XYL
ADF test for NXPI-XYL failed with LinAlgError

Processing pair NXPI-YUM
ADF test for NXPI-YUM failed with LinAlgError

Processing pair ORLY-ODFL

Processing pair ORLY-ON

Processing pair ORLY-OKE

Processing pair ORLY-ORCL

Processing pair ORLY-PCAR

Processing pair ORLY-PKG

Processing pair ORLY-PANW
ADF test for ORLY-PANW failed with LinAlgError

Processing pair ORLY-PH

Processing pair ORLY-PAYX

Processing pair ORLY-PEP

Processing pair ORLY-PFG

Processing pair ORLY-PG

Processing pair ORLY-PGR

Processing pair ORLY-PLD

Processing pair ORLY-PEG

Processing pair ORLY-PTC

Processing pair ORLY-PSA

Processing pair ORLY-PHM

Processing pair ORLY-PWR

Processing pair ORLY-DGX

Processing pair ORLY-RJF

Processing pair ORLY-RTX

Processing pair ORLY-REGN

Processing pair ORLY-RSG

Processing pair ORLY-ROK

Processing pair ORLY-ROL

Processing pair ORLY-ROP

Processing pair ORLY-ROST

Processing pair ORLY-SPGI

Processing pair ORLY-SRE

Processing pair ORLY-NOW
ADF test for ORLY-NOW failed with LinAlgError

Processing pair ORLY-SHW

Processing pair ORLY-SNA

Processing pair ORLY-SO

Processing pair ORLY-STLD

Processing pair ORLY-STE

Processing pair ORLY-SYK

Processing pair ORLY-SNPS

Processing pair ORLY-TMUS

Processing pair ORLY-TEL

Processing pair ORLY-TXN

Processing pair ORLY-TPL

Processing pair ORLY-TMO

Processing pair ORLY-TJX

Processing pair ORLY-TSCO

Processing pair ORLY-TT

Processing pair ORLY-TDG

Processing pair ORLY-TRV

Processing pair ORLY-TYL

Processing pair ORLY-UNP

Processing pair ORLY-URI

Processing pair ORLY-UNH

Processing pair ORLY-VLO

Processing pair ORLY-VRSK

Processing pair ORLY-VRTX

Processing pair ORLY-VICI
ADF test for ORLY-VICI failed with LinAlgError

Processing pair ORLY-V

Processing pair ORLY-VMC

Processing pair ORLY-WRB

Processing pair ORLY-GWW

Processing pair ORLY-WMT

Processing pair ORLY-WM

Processing pair ORLY-WELL

Processing pair ORLY-WTW

Processing pair ORLY-XYL
ADF test for ORLY-XYL failed with LinAlgError

Processing pair ORLY-YUM

Processing pair ODFL-ON

Processing pair ODFL-ORCL

Processing pair ODFL-PCAR

Processing pair ODFL-PKG

Processing pair ODFL-PANW
ADF test for ODFL-PANW failed with LinAlgError

Processing pair ODFL-PH

Processing pair ODFL-PAYX

Processing pair ODFL-PEP

Processing pair ODFL-POOL

Processing pair ODFL-PFG

Processing pair ODFL-PG

Processing pair ODFL-PGR

Processing pair ODFL-PLD

Processing pair ODFL-PEG

Processing pair ODFL-PTC

Processing pair ODFL-PSA

Processing pair ODFL-PHM

Processing pair ODFL-PWR

Processing pair ODFL-QCOM

Processing pair ODFL-DGX

Processing pair ODFL-RJF

Processing pair ODFL-RSG

Processing pair ODFL-RMD

Processing pair ODFL-ROK

Processing pair ODFL-ROL

Processing pair ODFL-ROP

Processing pair ODFL-SPGI

Processing pair ODFL-CRM

Processing pair ODFL-STX

Processing pair ODFL-NOW
ADF test for ODFL-NOW failed with LinAlgError

Processing pair ODFL-SHW

Processing pair ODFL-SNA

Processing pair ODFL-SO

Processing pair ODFL-STLD

Processing pair ODFL-STE

Processing pair ODFL-SYK

Processing pair ODFL-SNPS

Processing pair ODFL-TMUS

Processing pair ODFL-TEL

Processing pair ODFL-TDY

Processing pair ODFL-TER

Processing pair ODFL-TSLA
ADF test for ODFL-TSLA failed with LinAlgError

Processing pair ODFL-TXN

Processing pair ODFL-TPL

Processing pair ODFL-TMO

Processing pair ODFL-TJX

Processing pair ODFL-TSCO

Processing pair ODFL-TT

Processing pair ODFL-TDG

Processing pair ODFL-TRV

Processing pair ODFL-TYL

Processing pair ODFL-UNP

Processing pair ODFL-URI

Processing pair ODFL-UNH

Processing pair ODFL-VRSK

Processing pair ODFL-VRTX

Processing pair ODFL-VICI
ADF test for ODFL-VICI failed with LinAlgError

Processing pair ODFL-V

Processing pair ODFL-VMC

Processing pair ODFL-WRB

Processing pair ODFL-GWW

Processing pair ODFL-WMT

Processing pair ODFL-WM

Processing pair ODFL-WAT

Processing pair ODFL-WST

Processing pair ODFL-WTW

Processing pair ODFL-XYL
ADF test for ODFL-XYL failed with LinAlgError

Processing pair ODFL-YUM

Processing pair ODFL-ZTS
ADF test for ODFL-ZTS failed with LinAlgError

Processing pair OMC-OKE

Processing pair OMC-PKG

Processing pair OMC-PM

Processing pair OMC-PFG

Processing pair OMC-PRU

Processing pair OMC-RTX

Processing pair OMC-REG

Processing pair OMC-SRE

Processing pair OMC-SNA

Processing pair OMC-TXT

Processing pair OMC-TJX

Processing pair OMC-TRV

Processing pair OMC-UHS

Processing pair OMC-VMC

Processing pair OMC-WAB

Processing pair OMC-WELL

Processing pair ON-ORCL

Processing pair ON-PANW
ADF test for ON-PANW failed with LinAlgError

Processing pair ON-PAYX

Processing pair ON-PEP

Processing pair ON-PWR

Processing pair ON-RJF

Processing pair ON-RSG

Processing pair ON-STLD

Processing pair ON-SNPS

Processing pair ON-TMO

Processing pair ON-TSCO

Processing pair ON-UNH

Processing pair ON-WRB

Processing pair ON-GWW

Processing pair ON-WM

Processing pair OKE-ORCL

Processing pair OKE-PKG

Processing pair OKE-PH

Processing pair OKE-PAYX

Processing pair OKE-PSX
ADF test for OKE-PSX failed with LinAlgError

Processing pair OKE-PFG

Processing pair OKE-PGR

Processing pair OKE-PRU

Processing pair OKE-PEG

Processing pair OKE-PTC

Processing pair OKE-RJF

Processing pair OKE-RTX

Processing pair OKE-RF

Processing pair OKE-RSG

Processing pair OKE-SNA

Processing pair OKE-SO

Processing pair OKE-SYK

Processing pair OKE-TPL

Processing pair OKE-TXT

Processing pair OKE-TJX

Processing pair OKE-TDG

Processing pair OKE-TRV

Processing pair OKE-URI

Processing pair OKE-VLO

Processing pair OKE-VMC

Processing pair OKE-WRB

Processing pair OKE-GWW

Processing pair OKE-WM

Processing pair OKE-WELL

Processing pair ORCL-PCAR

Processing pair ORCL-PKG

Processing pair ORCL-PANW
ADF test for ORCL-PANW failed with LinAlgError

Processing pair ORCL-PH

Processing pair ORCL-PAYX

Processing pair ORCL-PNR

Processing pair ORCL-PG

Processing pair ORCL-PGR

Processing pair ORCL-PEG

Processing pair ORCL-PTC

Processing pair ORCL-PHM

Processing pair ORCL-PWR

Processing pair ORCL-RJF

Processing pair ORCL-RSG

Processing pair ORCL-ROL

Processing pair ORCL-SPGI

Processing pair ORCL-NOW
ADF test for ORCL-NOW failed with LinAlgError

Processing pair ORCL-SHW

Processing pair ORCL-SNA

Processing pair ORCL-SO

Processing pair ORCL-STLD

Processing pair ORCL-SYK

Processing pair ORCL-SNPS

Processing pair ORCL-TMUS

Processing pair ORCL-TPL

Processing pair ORCL-TJX

Processing pair ORCL-TSCO

Processing pair ORCL-TT

Processing pair ORCL-TDG

Processing pair ORCL-TRV

Processing pair ORCL-URI

Processing pair ORCL-UNH

Processing pair ORCL-VRSK

Processing pair ORCL-VRTX

Processing pair ORCL-VMC

Processing pair ORCL-WRB

Processing pair ORCL-GWW

Processing pair ORCL-WMT

Processing pair ORCL-WM

Processing pair ORCL-WELL

Processing pair ORCL-WTW

Processing pair OTIS-ROP
ADF test for OTIS-ROP failed with LinAlgError

Processing pair OTIS-SPG
ADF test for OTIS-SPG failed with LinAlgError

Processing pair OTIS-SNA
ADF test for OTIS-SNA failed with LinAlgError

Processing pair OTIS-SYK
ADF test for OTIS-SYK failed with LinAlgError

Processing pair OTIS-TXT
ADF test for OTIS-TXT failed with LinAlgError

Processing pair OTIS-TSCO
ADF test for OTIS-TSCO failed with LinAlgError

Processing pair OTIS-URI
ADF test for OTIS-URI failed with LinAlgError

Processing pair OTIS-VMC
ADF test for OTIS-VMC failed with LinAlgError

Processing pair OTIS-WM
ADF test for OTIS-WM failed with LinAlgError

Processing pair OTIS-YUM
ADF test for OTIS-YUM failed with LinAlgError

Processing pair PCAR-PKG

Processing pair PCAR-PANW
ADF test for PCAR-PANW failed with LinAlgError

Processing pair PCAR-PH

Processing pair PCAR-PAYX

Processing pair PCAR-PNR

Processing pair PCAR-PG

Processing pair PCAR-PGR

Processing pair PCAR-PTC

Processing pair PCAR-PHM

Processing pair PCAR-PWR

Processing pair PCAR-RJF

Processing pair PCAR-RSG

Processing pair PCAR-ROL

Processing pair PCAR-ROP

Processing pair PCAR-NOW
ADF test for PCAR-NOW failed with LinAlgError

Processing pair PCAR-SHW

Processing pair PCAR-SNA

Processing pair PCAR-SO

Processing pair PCAR-STLD

Processing pair PCAR-SYK

Processing pair PCAR-SNPS

Processing pair PCAR-TMUS

Processing pair PCAR-TJX

Processing pair PCAR-TSCO

Processing pair PCAR-TT

Processing pair PCAR-TDG

Processing pair PCAR-TRV

Processing pair PCAR-URI

Processing pair PCAR-UNH

Processing pair PCAR-VLO

Processing pair PCAR-VRSK

Processing pair PCAR-VRTX

Processing pair PCAR-V

Processing pair PCAR-VMC

Processing pair PCAR-WRB

Processing pair PCAR-GWW

Processing pair PCAR-WMT

Processing pair PCAR-WM

Processing pair PCAR-WTW

Processing pair PKG-PANW
ADF test for PKG-PANW failed with LinAlgError

Processing pair PKG-PH

Processing pair PKG-PAYX

Processing pair PKG-PNR

Processing pair PKG-PEP

Processing pair PKG-PM

Processing pair PKG-PNC

Processing pair PKG-PFG

Processing pair PKG-PG

Processing pair PKG-PGR

Processing pair PKG-PLD

Processing pair PKG-PRU

Processing pair PKG-PEG

Processing pair PKG-PTC

Processing pair PKG-PSA

Processing pair PKG-PHM

Processing pair PKG-DGX

Processing pair PKG-RJF

Processing pair PKG-RTX

Processing pair PKG-REGN

Processing pair PKG-RF

Processing pair PKG-RSG

Processing pair PKG-ROK

Processing pair PKG-ROL

Processing pair PKG-ROP

Processing pair PKG-ROST

Processing pair PKG-SPGI

Processing pair PKG-CRM

Processing pair PKG-STX

Processing pair PKG-SRE

Processing pair PKG-NOW
ADF test for PKG-NOW failed with LinAlgError

Processing pair PKG-SHW

Processing pair PKG-SNA

Processing pair PKG-SO

Processing pair PKG-STLD

Processing pair PKG-STE

Processing pair PKG-SYK

Processing pair PKG-SNPS

Processing pair PKG-SYY

Processing pair PKG-TMUS

Processing pair PKG-TEL

Processing pair PKG-TDY

Processing pair PKG-TXN

Processing pair PKG-TPL

Processing pair PKG-TXT

Processing pair PKG-TMO

Processing pair PKG-TJX

Processing pair PKG-TSCO

Processing pair PKG-TT

Processing pair PKG-TDG

Processing pair PKG-TRV

Processing pair PKG-TYL

Processing pair PKG-UNP

Processing pair PKG-URI

Processing pair PKG-UNH

Processing pair PKG-VLO

Processing pair PKG-VRSK

Processing pair PKG-VRTX

Processing pair PKG-V

Processing pair PKG-VMC

Processing pair PKG-WRB

Processing pair PKG-GWW

Processing pair PKG-WMT

Processing pair PKG-WM

Processing pair PKG-WAT

Processing pair PKG-WEC

Processing pair PKG-WELL

Processing pair PKG-WTW

Processing pair PKG-XYL
ADF test for PKG-XYL failed with LinAlgError

Processing pair PKG-YUM

Processing pair PANW-PH
ADF test for PANW-PH failed with LinAlgError

Processing pair PANW-PAYX
ADF test for PANW-PAYX failed with LinAlgError

Processing pair PANW-PG
ADF test for PANW-PG failed with LinAlgError

Processing pair PANW-PGR
ADF test for PANW-PGR failed with LinAlgError

Processing pair PANW-PTC
ADF test for PANW-PTC failed with LinAlgError

Processing pair PANW-PHM
ADF test for PANW-PHM failed with LinAlgError

Processing pair PANW-PWR
ADF test for PANW-PWR failed with LinAlgError

Processing pair PANW-RJF
ADF test for PANW-RJF failed with LinAlgError

Processing pair PANW-REGN
ADF test for PANW-REGN failed with LinAlgError

Processing pair PANW-RSG
ADF test for PANW-RSG failed with LinAlgError

Processing pair PANW-NOW
ADF test for PANW-NOW failed with LinAlgError

Processing pair PANW-SNA
ADF test for PANW-SNA failed with LinAlgError

Processing pair PANW-SO
ADF test for PANW-SO failed with LinAlgError

Processing pair PANW-STLD
ADF test for PANW-STLD failed with LinAlgError

Processing pair PANW-SYK
ADF test for PANW-SYK failed with LinAlgError

Processing pair PANW-SNPS
ADF test for PANW-SNPS failed with LinAlgError

Processing pair PANW-TMUS
ADF test for PANW-TMUS failed with LinAlgError

Processing pair PANW-TJX
ADF test for PANW-TJX failed with LinAlgError

Processing pair PANW-TSCO
ADF test for PANW-TSCO failed with LinAlgError

Processing pair PANW-TT
ADF test for PANW-TT failed with LinAlgError

Processing pair PANW-TDG
ADF test for PANW-TDG failed with LinAlgError

Processing pair PANW-TRV
ADF test for PANW-TRV failed with LinAlgError

Processing pair PANW-URI
ADF test for PANW-URI failed with LinAlgError

Processing pair PANW-UNH
ADF test for PANW-UNH failed with LinAlgError

Processing pair PANW-VRSK
ADF test for PANW-VRSK failed with LinAlgError

Processing pair PANW-VRTX
ADF test for PANW-VRTX failed with LinAlgError

Processing pair PANW-VMC
ADF test for PANW-VMC failed with LinAlgError

Processing pair PANW-WRB
ADF test for PANW-WRB failed with LinAlgError

Processing pair PANW-GWW
ADF test for PANW-GWW failed with LinAlgError

Processing pair PANW-WMT
ADF test for PANW-WMT failed with LinAlgError

Processing pair PANW-WM
ADF test for PANW-WM failed with LinAlgError

Processing pair PANW-WELL
ADF test for PANW-WELL failed with LinAlgError

Processing pair PH-PAYX

Processing pair PH-PNR

Processing pair PH-PG

Processing pair PH-PGR

Processing pair PH-PEG

Processing pair PH-PTC

Processing pair PH-PHM

Processing pair PH-PWR

Processing pair PH-QCOM

Processing pair PH-RJF

Processing pair PH-RSG

Processing pair PH-ROL

Processing pair PH-ROP

Processing pair PH-SPGI

Processing pair PH-STX

Processing pair PH-NOW
ADF test for PH-NOW failed with LinAlgError

Processing pair PH-SHW

Processing pair PH-SNA

Processing pair PH-SO

Processing pair PH-STLD

Processing pair PH-SYK

Processing pair PH-SNPS

Processing pair PH-TMUS

Processing pair PH-TEL

Processing pair PH-TXN

Processing pair PH-TPL

Processing pair PH-TJX

Processing pair PH-TSCO

Processing pair PH-TT

Processing pair PH-TDG

Processing pair PH-TRV

Processing pair PH-URI

Processing pair PH-UNH

Processing pair PH-VLO

Processing pair PH-VRSK

Processing pair PH-VRTX

Processing pair PH-V

Processing pair PH-VMC

Processing pair PH-WRB

Processing pair PH-GWW

Processing pair PH-WMT

Processing pair PH-WM

Processing pair PH-WELL

Processing pair PH-WTW

Processing pair PH-XYL
ADF test for PH-XYL failed with LinAlgError

Processing pair PAYX-PEP

Processing pair PAYX-PM

Processing pair PAYX-PNC

Processing pair PAYX-POOL

Processing pair PAYX-PFG

Processing pair PAYX-PG

Processing pair PAYX-PGR

Processing pair PAYX-PLD

Processing pair PAYX-PRU

Processing pair PAYX-PEG

Processing pair PAYX-PTC

Processing pair PAYX-PSA

Processing pair PAYX-QCOM

Processing pair PAYX-DGX

Processing pair PAYX-RJF

Processing pair PAYX-RTX

Processing pair PAYX-O

Processing pair PAYX-RF

Processing pair PAYX-RSG

Processing pair PAYX-RMD

Processing pair PAYX-RVTY

Processing pair PAYX-ROK

Processing pair PAYX-ROL

Processing pair PAYX-ROP

Processing pair PAYX-ROST

Processing pair PAYX-SPGI

Processing pair PAYX-CRM

Processing pair PAYX-STX

Processing pair PAYX-SRE

Processing pair PAYX-NOW
ADF test for PAYX-NOW failed with LinAlgError

Processing pair PAYX-SHW

Processing pair PAYX-SNA

Processing pair PAYX-SO

Processing pair PAYX-SBUX

Processing pair PAYX-STLD

Processing pair PAYX-STE

Processing pair PAYX-SYK

Processing pair PAYX-SNPS

Processing pair PAYX-SYY

Processing pair PAYX-TMUS

Processing pair PAYX-TEL

Processing pair PAYX-TDY

Processing pair PAYX-TER

Processing pair PAYX-TXN

Processing pair PAYX-TPL

Processing pair PAYX-TXT

Processing pair PAYX-TMO

Processing pair PAYX-TJX

Processing pair PAYX-TSCO

Processing pair PAYX-TT

Processing pair PAYX-TDG

Processing pair PAYX-TRV

Processing pair PAYX-TYL

Processing pair PAYX-UDR

Processing pair PAYX-ULTA

Processing pair PAYX-UNP

Processing pair PAYX-UPS

Processing pair PAYX-URI

Processing pair PAYX-UNH

Processing pair PAYX-VLO

Processing pair PAYX-VRSK

Processing pair PAYX-VRTX

Processing pair PAYX-VICI
ADF test for PAYX-VICI failed with LinAlgError

Processing pair PAYX-V

Processing pair PAYX-VMC

Processing pair PAYX-WRB

Processing pair PAYX-WMT

Processing pair PAYX-WM

Processing pair PAYX-WAT

Processing pair PAYX-WEC

Processing pair PAYX-WELL

Processing pair PAYX-WST

Processing pair PAYX-WTW

Processing pair PAYX-XEL

Processing pair PAYX-XYL
ADF test for PAYX-XYL failed with LinAlgError

Processing pair PAYX-YUM

Processing pair PAYX-ZTS
ADF test for PAYX-ZTS failed with LinAlgError

Processing pair PAYC-RVTY
ADF test for PAYC-RVTY failed with LinAlgError

Processing pair PAYC-SBAC
ADF test for PAYC-SBAC failed with LinAlgError

Processing pair PAYC-TROW
ADF test for PAYC-TROW failed with LinAlgError

Processing pair PAYC-ZBRA
ADF test for PAYC-ZBRA failed with LinAlgError

Processing pair PNR-PTC

Processing pair PNR-PHM

Processing pair PNR-STX

Processing pair PNR-SHW

Processing pair PNR-SNA

Processing pair PNR-SYK

Processing pair PNR-TEL

Processing pair PNR-TJX

Processing pair PNR-TSCO

Processing pair PNR-TT

Processing pair PNR-TDG

Processing pair PNR-TRV

Processing pair PNR-URI

Processing pair PNR-VMC

Processing pair PNR-WMT

Processing pair PNR-WELL

Processing pair PEP-PM

Processing pair PEP-PNC

Processing pair PEP-POOL

Processing pair PEP-PFG

Processing pair PEP-PG

Processing pair PEP-PGR

Processing pair PEP-PLD

Processing pair PEP-PEG

Processing pair PEP-PTC

Processing pair PEP-PSA

Processing pair PEP-DGX

Processing pair PEP-RJF

Processing pair PEP-RTX

Processing pair PEP-O

Processing pair PEP-REGN

Processing pair PEP-RF

Processing pair PEP-RSG

Processing pair PEP-RMD

Processing pair PEP-RVTY

Processing pair PEP-ROK

Processing pair PEP-ROL

Processing pair PEP-ROP

Processing pair PEP-ROST

Processing pair PEP-SPGI

Processing pair PEP-CRM

Processing pair PEP-SRE

Processing pair PEP-NOW
ADF test for PEP-NOW failed with LinAlgError

Processing pair PEP-SHW

Processing pair PEP-SJM

Processing pair PEP-SNA

Processing pair PEP-SO

Processing pair PEP-SBUX

Processing pair PEP-STE

Processing pair PEP-SYK

Processing pair PEP-SNPS

Processing pair PEP-SYY

Processing pair PEP-TMUS

Processing pair PEP-TEL

Processing pair PEP-TDY

Processing pair PEP-TER

Processing pair PEP-TXN

Processing pair PEP-TMO

Processing pair PEP-TJX

Processing pair PEP-TSCO

Processing pair PEP-TDG

Processing pair PEP-TRV

Processing pair PEP-TYL

Processing pair PEP-UDR

Processing pair PEP-ULTA

Processing pair PEP-UNP

Processing pair PEP-UPS

Processing pair PEP-UNH

Processing pair PEP-VLO

Processing pair PEP-VRSN

Processing pair PEP-VRSK

Processing pair PEP-VRTX

Processing pair PEP-VICI
ADF test for PEP-VICI failed with LinAlgError

Processing pair PEP-V

Processing pair PEP-VMC

Processing pair PEP-WRB

Processing pair PEP-WMT

Processing pair PEP-WM

Processing pair PEP-WAT

Processing pair PEP-WEC

Processing pair PEP-WST

Processing pair PEP-WTW

Processing pair PEP-XEL

Processing pair PEP-XYL
ADF test for PEP-XYL failed with LinAlgError

Processing pair PEP-YUM

Processing pair PEP-ZTS
ADF test for PEP-ZTS failed with LinAlgError

Processing pair PFE-O

Processing pair PFE-RVTY

Processing pair PFE-SBAC

Processing pair PFE-UDR

Processing pair PFE-XEL

Processing pair PM-PFG

Processing pair PM-PRU

Processing pair PM-PEG

Processing pair PM-PSA

Processing pair PM-DGX

Processing pair PM-RJF

Processing pair PM-RTX

Processing pair PM-SRE

Processing pair PM-SNA

Processing pair PM-SO

Processing pair PM-TEL

Processing pair PM-TJX

Processing pair PM-TRV

Processing pair PM-VMC

Processing pair PM-WELL

Processing pair PSX-TRV
ADF test for PSX-TRV failed with LinAlgError

Processing pair PSX-VLO
ADF test for PSX-VLO failed with LinAlgError

Processing pair PNW-PPL

Processing pair PNW-PEG

Processing pair PNW-O

Processing pair PNW-ROST

Processing pair PNW-SRE

Processing pair PNW-SYY

Processing pair PNW-WEC

Processing pair PNW-XEL

Processing pair PNC-POOL

Processing pair PNC-PFG

Processing pair PNC-PLD

Processing pair PNC-PRU

Processing pair PNC-PEG

Processing pair PNC-PTC

Processing pair PNC-PSA

Processing pair PNC-DGX

Processing pair PNC-RJF

Processing pair PNC-RTX

Processing pair PNC-O

Processing pair PNC-RF

Processing pair PNC-RMD

Processing pair PNC-RVTY

Processing pair PNC-ROK

Processing pair PNC-ROL

Processing pair PNC-ROP

Processing pair PNC-ROST

Processing pair PNC-SPGI

Processing pair PNC-CRM

Processing pair PNC-STX

Processing pair PNC-SRE

Processing pair PNC-SHW

Processing pair PNC-SBUX

Processing pair PNC-STE

Processing pair PNC-SYK

Processing pair PNC-SYY

Processing pair PNC-TMUS

Processing pair PNC-TROW

Processing pair PNC-TTWO

Processing pair PNC-TEL

Processing pair PNC-TDY

Processing pair PNC-TER

Processing pair PNC-TXN

Processing pair PNC-TXT

Processing pair PNC-TMO

Processing pair PNC-TRV

Processing pair PNC-TRMB

Processing pair PNC-TFC

Processing pair PNC-TYL

Processing pair PNC-USB

Processing pair PNC-UDR

Processing pair PNC-UNP

Processing pair PNC-UNH

Processing pair PNC-V

Processing pair PNC-VMC

Processing pair PNC-WM

Processing pair PNC-WAT

Processing pair PNC-WEC

Processing pair PNC-WTW

Processing pair PNC-XEL

Processing pair PNC-XYL
ADF test for PNC-XYL failed with LinAlgError

Processing pair PNC-YUM

Processing pair PNC-ZBRA

Processing pair POOL-PG

Processing pair POOL-PLD

Processing pair POOL-PEG

Processing pair POOL-PTC

Processing pair POOL-PSA

Processing pair POOL-QCOM

Processing pair POOL-DGX

Processing pair POOL-RJF

Processing pair POOL-RF

Processing pair POOL-RSG

Processing pair POOL-RMD

Processing pair POOL-RVTY

Processing pair POOL-ROK

Processing pair POOL-ROL

Processing pair POOL-ROP

Processing pair POOL-SPGI

Processing pair POOL-CRM

Processing pair POOL-SBAC

Processing pair POOL-STX

Processing pair POOL-NOW
ADF test for POOL-NOW failed with LinAlgError

Processing pair POOL-SHW

Processing pair POOL-SO

Processing pair POOL-SBUX

Processing pair POOL-STE

Processing pair POOL-SYK

Processing pair POOL-SYY

Processing pair POOL-TMUS

Processing pair POOL-TROW

Processing pair POOL-TTWO

Processing pair POOL-TGT

Processing pair POOL-TEL

Processing pair POOL-TDY

Processing pair POOL-TER

Processing pair POOL-TSLA
ADF test for POOL-TSLA failed with LinAlgError

Processing pair POOL-TXN

Processing pair POOL-TMO

Processing pair POOL-TSCO

Processing pair POOL-TRMB

Processing pair POOL-TYL

Processing pair POOL-UNP

Processing pair POOL-UPS

Processing pair POOL-UNH

Processing pair POOL-VRSN

Processing pair POOL-VRSK

Processing pair POOL-V

Processing pair POOL-WM

Processing pair POOL-WAT

Processing pair POOL-WEC

Processing pair POOL-WST

Processing pair POOL-WTW

Processing pair POOL-WDAY
ADF test for POOL-WDAY failed with LinAlgError

Processing pair POOL-XEL

Processing pair POOL-XYL
ADF test for POOL-XYL failed with LinAlgError

Processing pair POOL-YUM

Processing pair POOL-ZBRA

Processing pair POOL-ZTS
ADF test for POOL-ZTS failed with LinAlgError

Processing pair PPG-O

Processing pair PPG-ROK

Processing pair PPG-SRE

Processing pair PPG-SWKS

Processing pair PPG-SBUX

Processing pair PPG-TEL

Processing pair PPG-UNP

Processing pair PPG-UPS

Processing pair PPG-WY

Processing pair PPG-ZBH

Processing pair PPL-O

Processing pair PPL-REG

Processing pair PPL-UHS

Processing pair PPL-VLTO
ADF test for PPL-VLTO failed with LinAlgError

Processing pair PFG-PG

Processing pair PFG-PRU

Processing pair PFG-PEG

Processing pair PFG-PTC

Processing pair PFG-PSA

Processing pair PFG-DGX

Processing pair PFG-RJF

Processing pair PFG-RTX

Processing pair PFG-RF

Processing pair PFG-RSG

Processing pair PFG-ROK

Processing pair PFG-ROP

Processing pair PFG-SRE

Processing pair PFG-SNA

Processing pair PFG-SO

Processing pair PFG-STLD

Processing pair PFG-SYK

Processing pair PFG-TMUS

Processing pair PFG-TEL

Processing pair PFG-TXN

Processing pair PFG-TXT

Processing pair PFG-TJX

Processing pair PFG-TSCO

Processing pair PFG-TRV

Processing pair PFG-ULTA

Processing pair PFG-UNP

Processing pair PFG-UNH

Processing pair PFG-VLO

Processing pair PFG-VMC

Processing pair PFG-WRB

Processing pair PFG-WM

Processing pair PFG-WAT

Processing pair PFG-WTW

Processing pair PFG-YUM

Processing pair PG-PGR

Processing pair PG-PLD

Processing pair PG-PEG

Processing pair PG-PTC

Processing pair PG-PSA

Processing pair PG-QCOM

Processing pair PG-DGX

Processing pair PG-RJF

Processing pair PG-RTX

Processing pair PG-RF

Processing pair PG-RSG

Processing pair PG-RMD

Processing pair PG-ROK

Processing pair PG-ROL

Processing pair PG-ROP

Processing pair PG-ROST

Processing pair PG-SPGI

Processing pair PG-CRM

Processing pair PG-STX

Processing pair PG-SRE

Processing pair PG-NOW
ADF test for PG-NOW failed with LinAlgError

Processing pair PG-SHW

Processing pair PG-SNA

Processing pair PG-SO

Processing pair PG-SBUX

Processing pair PG-STE

Processing pair PG-SYK

Processing pair PG-SNPS

Processing pair PG-SYY

Processing pair PG-TMUS

Processing pair PG-TEL

Processing pair PG-TDY

Processing pair PG-TER

Processing pair PG-TXN

Processing pair PG-TMO

Processing pair PG-TJX

Processing pair PG-TSCO

Processing pair PG-TT

Processing pair PG-TDG

Processing pair PG-TRV

Processing pair PG-TYL

Processing pair PG-UNP

Processing pair PG-UPS

Processing pair PG-UNH

Processing pair PG-VLTO
ADF test for PG-VLTO failed with LinAlgError

Processing pair PG-VRSN

Processing pair PG-VRSK

Processing pair PG-VRTX

Processing pair PG-V

Processing pair PG-VMC

Processing pair PG-WRB

Processing pair PG-WMT

Processing pair PG-WM

Processing pair PG-WAT

Processing pair PG-WEC

Processing pair PG-WELL

Processing pair PG-WST

Processing pair PG-WTW

Processing pair PG-XEL

Processing pair PG-XYL
ADF test for PG-XYL failed with LinAlgError

Processing pair PG-YUM

Processing pair PG-ZTS
ADF test for PG-ZTS failed with LinAlgError

Processing pair PGR-PEG

Processing pair PGR-PTC

Processing pair PGR-PHM

Processing pair PGR-PWR

Processing pair PGR-QCOM

Processing pair PGR-RJF

Processing pair PGR-RSG

Processing pair PGR-ROL

Processing pair PGR-ROP

Processing pair PGR-SPGI

Processing pair PGR-NOW
ADF test for PGR-NOW failed with LinAlgError

Processing pair PGR-SHW

Processing pair PGR-SNA

Processing pair PGR-SO

Processing pair PGR-STLD

Processing pair PGR-STE

Processing pair PGR-SYK

Processing pair PGR-SNPS

Processing pair PGR-TMUS

Processing pair PGR-TXN

Processing pair PGR-TPL

Processing pair PGR-TJX

Processing pair PGR-TSCO

Processing pair PGR-TT

Processing pair PGR-TDG

Processing pair PGR-TRV

Processing pair PGR-UNP

Processing pair PGR-URI

Processing pair PGR-UNH

Processing pair PGR-VLO

Processing pair PGR-VLTO
ADF test for PGR-VLTO failed with LinAlgError

Processing pair PGR-VRSK

Processing pair PGR-VRTX

Processing pair PGR-V

Processing pair PGR-VMC

Processing pair PGR-WRB

Processing pair PGR-GWW

Processing pair PGR-WMT

Processing pair PGR-WM

Processing pair PGR-WELL

Processing pair PGR-WTW

Processing pair PGR-XYL
ADF test for PGR-XYL failed with LinAlgError

Processing pair PGR-YUM

Processing pair PLD-PEG

Processing pair PLD-PTC

Processing pair PLD-PSA

Processing pair PLD-QCOM

Processing pair PLD-DGX

Processing pair PLD-RJF

Processing pair PLD-O

Processing pair PLD-RF

Processing pair PLD-RSG

Processing pair PLD-RMD

Processing pair PLD-RVTY

Processing pair PLD-ROK

Processing pair PLD-ROL

Processing pair PLD-ROP

Processing pair PLD-ROST

Processing pair PLD-SPGI

Processing pair PLD-CRM

Processing pair PLD-SBAC

Processing pair PLD-STX

Processing pair PLD-SRE

Processing pair PLD-NOW
ADF test for PLD-NOW failed with LinAlgError

Processing pair PLD-SHW

Processing pair PLD-SO

Processing pair PLD-SBUX

Processing pair PLD-STE

Processing pair PLD-SYK

Processing pair PLD-SNPS

Processing pair PLD-SYY

Processing pair PLD-TMUS

Processing pair PLD-TTWO

Processing pair PLD-TGT

Processing pair PLD-TEL

Processing pair PLD-TDY

Processing pair PLD-TER

Processing pair PLD-TSLA
ADF test for PLD-TSLA failed with LinAlgError

Processing pair PLD-TXN

Processing pair PLD-TMO

Processing pair PLD-TJX

Processing pair PLD-TSCO

Processing pair PLD-TRV

Processing pair PLD-TRMB

Processing pair PLD-TYL

Processing pair PLD-UDR

Processing pair PLD-ULTA

Processing pair PLD-UNP

Processing pair PLD-UPS

Processing pair PLD-UNH

Processing pair PLD-VRSN

Processing pair PLD-VRSK

Processing pair PLD-V

Processing pair PLD-VMC

Processing pair PLD-WRB

Processing pair PLD-WMT

Processing pair PLD-WM

Processing pair PLD-WAT

Processing pair PLD-WEC

Processing pair PLD-WST

Processing pair PLD-WTW

Processing pair PLD-WDAY
ADF test for PLD-WDAY failed with LinAlgError

Processing pair PLD-XEL

Processing pair PLD-XYL
ADF test for PLD-XYL failed with LinAlgError

Processing pair PLD-YUM

Processing pair PLD-ZBRA

Processing pair PLD-ZTS
ADF test for PLD-ZTS failed with LinAlgError

Processing pair PRU-PEG

Processing pair PRU-PSA

Processing pair PRU-RJF

Processing pair PRU-RTX

Processing pair PRU-RF

Processing pair PRU-SRE

Processing pair PRU-SNA

Processing pair PRU-TEL

Processing pair PRU-TXT

Processing pair PRU-TRV

Processing pair PRU-VLO

Processing pair PRU-VMC

Processing pair PRU-WELL

Processing pair PRU-WY

Processing pair PEG-PTC

Processing pair PEG-PSA

Processing pair PEG-DGX

Processing pair PEG-RJF

Processing pair PEG-RTX

Processing pair PEG-O

Processing pair PEG-RF

Processing pair PEG-RSG

Processing pair PEG-RMD

Processing pair PEG-ROK

Processing pair PEG-ROL

Processing pair PEG-ROP

Processing pair PEG-ROST

Processing pair PEG-SPGI

Processing pair PEG-CRM

Processing pair PEG-STX

Processing pair PEG-SRE

Processing pair PEG-NOW
ADF test for PEG-NOW failed with LinAlgError

Processing pair PEG-SHW

Processing pair PEG-SNA

Processing pair PEG-SO

Processing pair PEG-SBUX

Processing pair PEG-STE

Processing pair PEG-SYK

Processing pair PEG-SYY

Processing pair PEG-TMUS

Processing pair PEG-TEL

Processing pair PEG-TDY

Processing pair PEG-TER

Processing pair PEG-TXN

Processing pair PEG-TPL

Processing pair PEG-TXT

Processing pair PEG-TMO

Processing pair PEG-TJX

Processing pair PEG-TSCO

Processing pair PEG-TT

Processing pair PEG-TDG

Processing pair PEG-TRV

Processing pair PEG-TYL

Processing pair PEG-UDR

Processing pair PEG-UNP

Processing pair PEG-UNH

Processing pair PEG-VLO

Processing pair PEG-VLTO
ADF test for PEG-VLTO failed with LinAlgError

Processing pair PEG-VRSN

Processing pair PEG-VRSK

Processing pair PEG-VRTX

Processing pair PEG-V

Processing pair PEG-VMC

Processing pair PEG-WRB

Processing pair PEG-WMT

Processing pair PEG-WM

Processing pair PEG-WAT

Processing pair PEG-WEC

Processing pair PEG-WELL

Processing pair PEG-WTW

Processing pair PEG-XEL

Processing pair PEG-XYL
ADF test for PEG-XYL failed with LinAlgError

Processing pair PEG-YUM

Processing pair PEG-ZTS
ADF test for PEG-ZTS failed with LinAlgError

Processing pair PTC-PHM

Processing pair PTC-QCOM

Processing pair PTC-DGX

Processing pair PTC-RJF

Processing pair PTC-RTX

Processing pair PTC-RF

Processing pair PTC-RSG

Processing pair PTC-ROK

Processing pair PTC-ROL

Processing pair PTC-ROP

Processing pair PTC-ROST

Processing pair PTC-SPGI

Processing pair PTC-CRM

Processing pair PTC-STX

Processing pair PTC-SRE

Processing pair PTC-NOW
ADF test for PTC-NOW failed with LinAlgError

Processing pair PTC-SHW

Processing pair PTC-SNA

Processing pair PTC-SO

Processing pair PTC-STLD

Processing pair PTC-STE

Processing pair PTC-SYK

Processing pair PTC-SNPS

Processing pair PTC-SYY

Processing pair PTC-TMUS

Processing pair PTC-TEL

Processing pair PTC-TDY

Processing pair PTC-TER

Processing pair PTC-TXN

Processing pair PTC-TPL

Processing pair PTC-TXT

Processing pair PTC-TMO

Processing pair PTC-TJX

Processing pair PTC-TSCO

Processing pair PTC-TT

Processing pair PTC-TDG

Processing pair PTC-TRV

Processing pair PTC-TYL

Processing pair PTC-UNP

Processing pair PTC-URI

Processing pair PTC-UNH

Processing pair PTC-VLO

Processing pair PTC-VRSK

Processing pair PTC-VRTX

Processing pair PTC-V

Processing pair PTC-VMC

Processing pair PTC-WRB

Processing pair PTC-GWW

Processing pair PTC-WMT

Processing pair PTC-WM

Processing pair PTC-WAT

Processing pair PTC-WST

Processing pair PTC-WTW

Processing pair PTC-WDAY
ADF test for PTC-WDAY failed with LinAlgError

Processing pair PTC-XYL
ADF test for PTC-XYL failed with LinAlgError

Processing pair PTC-YUM

Processing pair PTC-ZTS
ADF test for PTC-ZTS failed with LinAlgError

Processing pair PSA-DGX

Processing pair PSA-RJF

Processing pair PSA-RTX

Processing pair PSA-O

Processing pair PSA-REG

Processing pair PSA-RF

Processing pair PSA-RSG

Processing pair PSA-RMD

Processing pair PSA-ROK

Processing pair PSA-ROL

Processing pair PSA-ROP

Processing pair PSA-SPGI

Processing pair PSA-STX

Processing pair PSA-SRE

Processing pair PSA-SHW

Processing pair PSA-SJM

Processing pair PSA-SNA

Processing pair PSA-SO

Processing pair PSA-SBUX

Processing pair PSA-STE

Processing pair PSA-SYK

Processing pair PSA-SYY

Processing pair PSA-TMUS

Processing pair PSA-TEL

Processing pair PSA-TDY

Processing pair PSA-TXN

Processing pair PSA-TXT

Processing pair PSA-TMO

Processing pair PSA-TJX

Processing pair PSA-TSCO

Processing pair PSA-TRV

Processing pair PSA-TYL

Processing pair PSA-UDR

Processing pair PSA-ULTA

Processing pair PSA-UNP

Processing pair PSA-UPS

Processing pair PSA-UNH

Processing pair PSA-VRSK

Processing pair PSA-V

Processing pair PSA-VMC

Processing pair PSA-WRB

Processing pair PSA-WM

Processing pair PSA-WAT

Processing pair PSA-WEC

Processing pair PSA-WELL

Processing pair PSA-WST

Processing pair PSA-WTW

Processing pair PSA-XEL

Processing pair PSA-YUM

Processing pair PHM-PWR

Processing pair PHM-RSG

Processing pair PHM-NOW
ADF test for PHM-NOW failed with LinAlgError

Processing pair PHM-SO

Processing pair PHM-STLD

Processing pair PHM-SYK

Processing pair PHM-SNPS

Processing pair PHM-TMUS

Processing pair PHM-TJX

Processing pair PHM-TSCO

Processing pair PHM-TT

Processing pair PHM-TDG

Processing pair PHM-TRV

Processing pair PHM-URI

Processing pair PHM-VLTO
ADF test for PHM-VLTO failed with LinAlgError

Processing pair PHM-VRSK

Processing pair PHM-VRTX

Processing pair PHM-VMC

Processing pair PHM-WRB

Processing pair PHM-GWW

Processing pair PHM-WMT

Processing pair PHM-WM

Processing pair PHM-WELL

Processing pair PWR-RJF

Processing pair PWR-RSG

Processing pair PWR-STLD

Processing pair PWR-SNPS

Processing pair PWR-TPL

Processing pair PWR-TJX

Processing pair PWR-TSCO

Processing pair PWR-TT

Processing pair PWR-TDG

Processing pair PWR-URI

Processing pair PWR-VLTO
ADF test for PWR-VLTO failed with LinAlgError

Processing pair PWR-WRB

Processing pair PWR-GWW

Processing pair PWR-WMT

Processing pair QCOM-RJF

Processing pair QCOM-RSG

Processing pair QCOM-RMD

Processing pair QCOM-ROL

Processing pair QCOM-ROP

Processing pair QCOM-SPGI

Processing pair QCOM-STX

Processing pair QCOM-NOW
ADF test for QCOM-NOW failed with LinAlgError

Processing pair QCOM-SHW

Processing pair QCOM-SO

Processing pair QCOM-STE

Processing pair QCOM-SYK

Processing pair QCOM-SNPS

Processing pair QCOM-TMUS

Processing pair QCOM-TGT

Processing pair QCOM-TEL

Processing pair QCOM-TER

Processing pair QCOM-TSLA
ADF test for QCOM-TSLA failed with LinAlgError

Processing pair QCOM-TXN

Processing pair QCOM-TMO

Processing pair QCOM-TSCO

Processing pair QCOM-TT

Processing pair QCOM-TDG

Processing pair QCOM-TYL

Processing pair QCOM-UNP

Processing pair QCOM-URI

Processing pair QCOM-UNH

Processing pair QCOM-VRSK

Processing pair QCOM-WRB

Processing pair QCOM-WMT

Processing pair QCOM-WM

Processing pair QCOM-WST

Processing pair QCOM-WTW

Processing pair DGX-RJF

Processing pair DGX-RTX

Processing pair DGX-O

Processing pair DGX-RF

Processing pair DGX-RSG

Processing pair DGX-RMD

Processing pair DGX-RVTY

Processing pair DGX-ROK

Processing pair DGX-ROL

Processing pair DGX-ROP

Processing pair DGX-ROST

Processing pair DGX-SPGI

Processing pair DGX-CRM

Processing pair DGX-SBAC

Processing pair DGX-SRE

Processing pair DGX-NOW
ADF test for DGX-NOW failed with LinAlgError

Processing pair DGX-SHW

Processing pair DGX-SNA

Processing pair DGX-SO

Processing pair DGX-SBUX

Processing pair DGX-STE

Processing pair DGX-SYK

Processing pair DGX-SYY

Processing pair DGX-TMUS

Processing pair DGX-TTWO

Processing pair DGX-TEL

Processing pair DGX-TDY

Processing pair DGX-TER

Processing pair DGX-TXN

Processing pair DGX-TMO

Processing pair DGX-TJX

Processing pair DGX-TSCO

Processing pair DGX-TRV

Processing pair DGX-TYL

Processing pair DGX-UDR

Processing pair DGX-ULTA

Processing pair DGX-UNP

Processing pair DGX-UPS

Processing pair DGX-UNH

Processing pair DGX-VRSN

Processing pair DGX-VRSK

Processing pair DGX-VICI
ADF test for DGX-VICI failed with LinAlgError

Processing pair DGX-V

Processing pair DGX-VMC

Processing pair DGX-WRB

Processing pair DGX-WMT

Processing pair DGX-WM

Processing pair DGX-WAT

Processing pair DGX-WEC

Processing pair DGX-WST

Processing pair DGX-WTW

Processing pair DGX-XEL

Processing pair DGX-XYL
ADF test for DGX-XYL failed with LinAlgError

Processing pair DGX-YUM

Processing pair DGX-ZTS
ADF test for DGX-ZTS failed with LinAlgError

Processing pair RJF-RTX

Processing pair RJF-RF

Processing pair RJF-RSG

Processing pair RJF-ROK

Processing pair RJF-ROL

Processing pair RJF-ROP

Processing pair RJF-SPGI

Processing pair RJF-STX

Processing pair RJF-SRE

Processing pair RJF-NOW
ADF test for RJF-NOW failed with LinAlgError

Processing pair RJF-SHW

Processing pair RJF-SNA

Processing pair RJF-SO

Processing pair RJF-STLD

Processing pair RJF-STE

Processing pair RJF-SYK

Processing pair RJF-SNPS

Processing pair RJF-SYY

Processing pair RJF-TMUS

Processing pair RJF-TEL

Processing pair RJF-TDY

Processing pair RJF-TXN

Processing pair RJF-TPL

Processing pair RJF-TXT

Processing pair RJF-TMO

Processing pair RJF-TJX

Processing pair RJF-TSCO

Processing pair RJF-TT

Processing pair RJF-TDG

Processing pair RJF-TRV

Processing pair RJF-TYL

Processing pair RJF-ULTA

Processing pair RJF-UNP

Processing pair RJF-URI

Processing pair RJF-UNH

Processing pair RJF-VLO

Processing pair RJF-VRSK

Processing pair RJF-VRTX

Processing pair RJF-VICI
ADF test for RJF-VICI failed with LinAlgError

Processing pair RJF-V

Processing pair RJF-VMC

Processing pair RJF-WRB

Processing pair RJF-GWW

Processing pair RJF-WMT

Processing pair RJF-WM

Processing pair RJF-WAT

Processing pair RJF-WELL

Processing pair RJF-WST

Processing pair RJF-WTW

Processing pair RJF-XYL
ADF test for RJF-XYL failed with LinAlgError

Processing pair RJF-YUM

Processing pair RTX-RF

Processing pair RTX-RSG

Processing pair RTX-ROP

Processing pair RTX-ROST

Processing pair RTX-SRE

Processing pair RTX-SHW

Processing pair RTX-SNA

Processing pair RTX-SO

Processing pair RTX-SYK

Processing pair RTX-SYY

Processing pair RTX-TMUS

Processing pair RTX-TEL

Processing pair RTX-TXN

Processing pair RTX-TXT

Processing pair RTX-TJX

Processing pair RTX-TRV

Processing pair RTX-UNP

Processing pair RTX-UNH

Processing pair RTX-VLO

Processing pair RTX-VLTO
ADF test for RTX-VLTO failed with LinAlgError

Processing pair RTX-V

Processing pair RTX-VMC

Processing pair RTX-WRB

Processing pair RTX-WMT

Processing pair RTX-WM

Processing pair RTX-WAT

Processing pair RTX-WELL

Processing pair RTX-WTW

Processing pair RTX-YUM

Processing pair O-RVTY

Processing pair O-ROP

Processing pair O-ROST

Processing pair O-SBAC

Processing pair O-SRE

Processing pair O-SBUX

Processing pair O-STE

Processing pair O-SYY

Processing pair O-TDY

Processing pair O-TXN

Processing pair O-TSN

Processing pair O-UDR

Processing pair O-ULTA

Processing pair O-UNP

Processing pair O-VRSN

Processing pair O-V

Processing pair O-WAT

Processing pair O-WEC

Processing pair O-WTW

Processing pair O-XEL

Processing pair O-YUM

Processing pair REG-UHS

Processing pair REGN-SNA

Processing pair REGN-TJX

Processing pair REGN-TSCO

Processing pair REGN-TRV

Processing pair REGN-VRTX

Processing pair REGN-VMC

Processing pair RF-RSG

Processing pair RF-RMD

Processing pair RF-RVTY

Processing pair RF-ROK

Processing pair RF-ROL

Processing pair RF-ROP

Processing pair RF-ROST

Processing pair RF-SPGI

Processing pair RF-STX

Processing pair RF-SRE

Processing pair RF-SHW

Processing pair RF-SNA

Processing pair RF-SO

Processing pair RF-STE

Processing pair RF-SYK

Processing pair RF-SYY

Processing pair RF-TMUS

Processing pair RF-TEL

Processing pair RF-TDY

Processing pair RF-TXN

Processing pair RF-TPL

Processing pair RF-TXT

Processing pair RF-TMO

Processing pair RF-TJX

Processing pair RF-TRV

Processing pair RF-TYL

Processing pair RF-UNP

Processing pair RF-UPS

Processing pair RF-UNH

Processing pair RF-V

Processing pair RF-VMC

Processing pair RF-WRB

Processing pair RF-WM

Processing pair RF-WAT

Processing pair RF-WTW

Processing pair RF-XYL
ADF test for RF-XYL failed with LinAlgError

Processing pair RF-YUM

Processing pair RSG-RMD

Processing pair RSG-ROK

Processing pair RSG-ROL

Processing pair RSG-ROP

Processing pair RSG-ROST

Processing pair RSG-SPGI

Processing pair RSG-CRM

Processing pair RSG-STX

Processing pair RSG-SRE

Processing pair RSG-NOW
ADF test for RSG-NOW failed with LinAlgError

Processing pair RSG-SHW

Processing pair RSG-SNA

Processing pair RSG-SO

Processing pair RSG-STLD

Processing pair RSG-STE

Processing pair RSG-SYK

Processing pair RSG-SNPS

Processing pair RSG-TMUS

Processing pair RSG-TEL

Processing pair RSG-TDY

Processing pair RSG-TER

Processing pair RSG-TXN

Processing pair RSG-TPL

Processing pair RSG-TMO

Processing pair RSG-TJX

Processing pair RSG-TSCO

Processing pair RSG-TT

Processing pair RSG-TDG

Processing pair RSG-TRV

Processing pair RSG-TYL

Processing pair RSG-UNP

Processing pair RSG-URI

Processing pair RSG-UNH

Processing pair RSG-VLO

Processing pair RSG-VLTO
ADF test for RSG-VLTO failed with LinAlgError

Processing pair RSG-VRSK

Processing pair RSG-VRTX

Processing pair RSG-V

Processing pair RSG-VMC

Processing pair RSG-WRB

Processing pair RSG-GWW

Processing pair RSG-WMT

Processing pair RSG-WM

Processing pair RSG-WAT

Processing pair RSG-WELL

Processing pair RSG-WST

Processing pair RSG-WTW

Processing pair RSG-XYL
ADF test for RSG-XYL failed with LinAlgError

Processing pair RSG-YUM

Processing pair RSG-ZTS
ADF test for RSG-ZTS failed with LinAlgError

Processing pair RMD-RVTY

Processing pair RMD-ROK

Processing pair RMD-ROL

Processing pair RMD-ROP

Processing pair RMD-SPGI

Processing pair RMD-CRM

Processing pair RMD-SBAC

Processing pair RMD-NOW
ADF test for RMD-NOW failed with LinAlgError

Processing pair RMD-SHW

Processing pair RMD-SO

Processing pair RMD-SBUX

Processing pair RMD-STE

Processing pair RMD-SYK

Processing pair RMD-SYY

Processing pair RMD-TMUS

Processing pair RMD-TROW

Processing pair RMD-TTWO

Processing pair RMD-TGT

Processing pair RMD-TEL

Processing pair RMD-TDY

Processing pair RMD-TER

Processing pair RMD-TXN

Processing pair RMD-TMO

Processing pair RMD-TSCO

Processing pair RMD-TRMB

Processing pair RMD-TYL

Processing pair RMD-UDR

Processing pair RMD-UNP

Processing pair RMD-UPS

Processing pair RMD-UNH

Processing pair RMD-VLTO
ADF test for RMD-VLTO failed with LinAlgError

Processing pair RMD-VRSN

Processing pair RMD-VRSK

Processing pair RMD-V

Processing pair RMD-WMT

Processing pair RMD-WM

Processing pair RMD-WAT

Processing pair RMD-WEC

Processing pair RMD-WST

Processing pair RMD-WTW

Processing pair RMD-XEL

Processing pair RMD-XYL
ADF test for RMD-XYL failed with LinAlgError

Processing pair RMD-YUM

Processing pair RMD-ZBRA

Processing pair RMD-ZTS
ADF test for RMD-ZTS failed with LinAlgError

Processing pair RVTY-ROK

Processing pair RVTY-ROP

Processing pair RVTY-SPGI

Processing pair RVTY-CRM

Processing pair RVTY-SBAC

Processing pair RVTY-SHW

Processing pair RVTY-SBUX

Processing pair RVTY-STE

Processing pair RVTY-SYY

Processing pair RVTY-TROW

Processing pair RVTY-TTWO

Processing pair RVTY-TGT

Processing pair RVTY-TEL

Processing pair RVTY-TDY

Processing pair RVTY-TER

Processing pair RVTY-TXN

Processing pair RVTY-TMO

Processing pair RVTY-TRMB

Processing pair RVTY-TYL

Processing pair RVTY-UDR

Processing pair RVTY-UNP

Processing pair RVTY-UPS

Processing pair RVTY-VRSN

Processing pair RVTY-V

Processing pair RVTY-WAT

Processing pair RVTY-WEC

Processing pair RVTY-WST

Processing pair RVTY-XEL

Processing pair RVTY-YUM

Processing pair RVTY-ZBRA

Processing pair RVTY-ZTS
ADF test for RVTY-ZTS failed with LinAlgError

Processing pair ROK-ROL

Processing pair ROK-ROP

Processing pair ROK-ROST

Processing pair ROK-SPGI

Processing pair ROK-CRM

Processing pair ROK-STX

Processing pair ROK-SRE

Processing pair ROK-NOW
ADF test for ROK-NOW failed with LinAlgError

Processing pair ROK-SHW

Processing pair ROK-SNA

Processing pair ROK-SO

Processing pair ROK-SBUX

Processing pair ROK-STE

Processing pair ROK-SYK

Processing pair ROK-SNPS

Processing pair ROK-SYY

Processing pair ROK-TMUS

Processing pair ROK-TROW

Processing pair ROK-TTWO

Processing pair ROK-TEL

Processing pair ROK-TDY

Processing pair ROK-TER

Processing pair ROK-TXN

Processing pair ROK-TMO

Processing pair ROK-TJX

Processing pair ROK-TSCO

Processing pair ROK-TRV

Processing pair ROK-TRMB

Processing pair ROK-TYL

Processing pair ROK-ULTA

Processing pair ROK-UNP

Processing pair ROK-UPS

Processing pair ROK-UNH

Processing pair ROK-VRSN

Processing pair ROK-VRSK

Processing pair ROK-V

Processing pair ROK-VMC

Processing pair ROK-WRB

Processing pair ROK-WMT

Processing pair ROK-WM

Processing pair ROK-WAT

Processing pair ROK-WEC

Processing pair ROK-WST

Processing pair ROK-WTW

Processing pair ROK-WDAY
ADF test for ROK-WDAY failed with LinAlgError

Processing pair ROK-XEL

Processing pair ROK-XYL
ADF test for ROK-XYL failed with LinAlgError

Processing pair ROK-YUM

Processing pair ROK-ZBRA

Processing pair ROK-ZTS
ADF test for ROK-ZTS failed with LinAlgError

Processing pair ROL-ROP

Processing pair ROL-ROST

Processing pair ROL-SPGI

Processing pair ROL-CRM

Processing pair ROL-SRE

Processing pair ROL-NOW
ADF test for ROL-NOW failed with LinAlgError

Processing pair ROL-SHW

Processing pair ROL-SNA

Processing pair ROL-SO

Processing pair ROL-SBUX

Processing pair ROL-STE

Processing pair ROL-SYK

Processing pair ROL-SNPS

Processing pair ROL-SYY

Processing pair ROL-TMUS

Processing pair ROL-TTWO

Processing pair ROL-TEL

Processing pair ROL-TDY

Processing pair ROL-TER

Processing pair ROL-TXN

Processing pair ROL-TMO

Processing pair ROL-TJX

Processing pair ROL-TSCO

Processing pair ROL-TT

Processing pair ROL-TDG

Processing pair ROL-TRV

Processing pair ROL-TYL

Processing pair ROL-ULTA

Processing pair ROL-UNP

Processing pair ROL-UNH

Processing pair ROL-VLTO
ADF test for ROL-VLTO failed with LinAlgError

Processing pair ROL-VRSN

Processing pair ROL-VRSK

Processing pair ROL-VRTX

Processing pair ROL-V

Processing pair ROL-VMC

Processing pair ROL-WRB

Processing pair ROL-WMT

Processing pair ROL-WM

Processing pair ROL-WAT

Processing pair ROL-WEC

Processing pair ROL-WST

Processing pair ROL-WTW

Processing pair ROL-XEL

Processing pair ROL-XYL
ADF test for ROL-XYL failed with LinAlgError

Processing pair ROL-YUM

Processing pair ROL-ZTS
ADF test for ROL-ZTS failed with LinAlgError

Processing pair ROP-ROST

Processing pair ROP-SPGI

Processing pair ROP-CRM

Processing pair ROP-SBAC

Processing pair ROP-STX

Processing pair ROP-SRE

Processing pair ROP-NOW
ADF test for ROP-NOW failed with LinAlgError

Processing pair ROP-SHW

Processing pair ROP-SNA

Processing pair ROP-SO

Processing pair ROP-SBUX

Processing pair ROP-STE

Processing pair ROP-SYK

Processing pair ROP-SNPS

Processing pair ROP-SYY

Processing pair ROP-TMUS

Processing pair ROP-TTWO

Processing pair ROP-TEL

Processing pair ROP-TDY

Processing pair ROP-TER

Processing pair ROP-TXN

Processing pair ROP-TMO

Processing pair ROP-TJX

Processing pair ROP-TSCO

Processing pair ROP-TT

Processing pair ROP-TDG

Processing pair ROP-TRV

Processing pair ROP-TYL

Processing pair ROP-UDR

Processing pair ROP-ULTA

Processing pair ROP-UNP

Processing pair ROP-UPS

Processing pair ROP-UNH

Processing pair ROP-VRSN

Processing pair ROP-VRSK

Processing pair ROP-VRTX

Processing pair ROP-V

Processing pair ROP-VMC

Processing pair ROP-WRB

Processing pair ROP-WMT

Processing pair ROP-WM

Processing pair ROP-WAT

Processing pair ROP-WEC

Processing pair ROP-WST

Processing pair ROP-WTW

Processing pair ROP-WDAY
ADF test for ROP-WDAY failed with LinAlgError

Processing pair ROP-XEL

Processing pair ROP-XYL
ADF test for ROP-XYL failed with LinAlgError

Processing pair ROP-YUM

Processing pair ROP-ZTS
ADF test for ROP-ZTS failed with LinAlgError

Processing pair ROST-SPGI

Processing pair ROST-CRM

Processing pair ROST-SRE

Processing pair ROST-NOW
ADF test for ROST-NOW failed with LinAlgError

Processing pair ROST-SHW

Processing pair ROST-SNA

Processing pair ROST-SO

Processing pair ROST-SBUX

Processing pair ROST-STE

Processing pair ROST-SYK

Processing pair ROST-SYY

Processing pair ROST-TMUS

Processing pair ROST-TTWO

Processing pair ROST-TEL

Processing pair ROST-TDY

Processing pair ROST-TXN

Processing pair ROST-TMO

Processing pair ROST-TJX

Processing pair ROST-TDG

Processing pair ROST-TRV

Processing pair ROST-TYL

Processing pair ROST-ULTA

Processing pair ROST-UNP

Processing pair ROST-UNH

Processing pair ROST-VRSN

Processing pair ROST-VRSK

Processing pair ROST-VRTX

Processing pair ROST-V

Processing pair ROST-VMC

Processing pair ROST-WRB

Processing pair ROST-WMT

Processing pair ROST-WM

Processing pair ROST-WAT

Processing pair ROST-WEC

Processing pair ROST-WTW

Processing pair ROST-WDAY
ADF test for ROST-WDAY failed with LinAlgError

Processing pair ROST-XEL

Processing pair ROST-XYL
ADF test for ROST-XYL failed with LinAlgError

Processing pair ROST-YUM

Processing pair SPGI-CRM

Processing pair SPGI-SBAC

Processing pair SPGI-STX

Processing pair SPGI-SRE

Processing pair SPGI-NOW
ADF test for SPGI-NOW failed with LinAlgError

Processing pair SPGI-SHW

Processing pair SPGI-SNA

Processing pair SPGI-SO

Processing pair SPGI-SBUX

Processing pair SPGI-STE

Processing pair SPGI-SYK

Processing pair SPGI-SNPS

Processing pair SPGI-SYY

Processing pair SPGI-TMUS

Processing pair SPGI-TROW

Processing pair SPGI-TTWO

Processing pair SPGI-TGT

Processing pair SPGI-TEL

Processing pair SPGI-TDY

Processing pair SPGI-TER

Processing pair SPGI-TXN

Processing pair SPGI-TMO

Processing pair SPGI-TJX

Processing pair SPGI-TSCO

Processing pair SPGI-TT

Processing pair SPGI-TDG

Processing pair SPGI-TRV

Processing pair SPGI-TYL

Processing pair SPGI-UDR

Processing pair SPGI-UNP

Processing pair SPGI-UPS

Processing pair SPGI-UNH

Processing pair SPGI-VRSN

Processing pair SPGI-VRSK

Processing pair SPGI-VRTX

Processing pair SPGI-V

Processing pair SPGI-VMC

Processing pair SPGI-WRB

Processing pair SPGI-WMT

Processing pair SPGI-WM

Processing pair SPGI-WAT

Processing pair SPGI-WEC

Processing pair SPGI-WST

Processing pair SPGI-WTW

Processing pair SPGI-WDAY
ADF test for SPGI-WDAY failed with LinAlgError

Processing pair SPGI-XEL

Processing pair SPGI-XYL
ADF test for SPGI-XYL failed with LinAlgError

Processing pair SPGI-YUM

Processing pair SPGI-ZBRA

Processing pair SPGI-ZTS
ADF test for SPGI-ZTS failed with LinAlgError

Processing pair CRM-STX

Processing pair CRM-NOW
ADF test for CRM-NOW failed with LinAlgError

Processing pair CRM-SHW

Processing pair CRM-SBUX

Processing pair CRM-STE

Processing pair CRM-SYK

Processing pair CRM-SYY

Processing pair CRM-TMUS

Processing pair CRM-TROW

Processing pair CRM-TTWO

Processing pair CRM-TEL

Processing pair CRM-TDY

Processing pair CRM-TER

Processing pair CRM-TXN

Processing pair CRM-TMO

Processing pair CRM-TJX

Processing pair CRM-TDG

Processing pair CRM-TYL

Processing pair CRM-UNP

Processing pair CRM-UNH

Processing pair CRM-VRSN

Processing pair CRM-VRSK

Processing pair CRM-V

Processing pair CRM-VMC

Processing pair CRM-WMT

Processing pair CRM-WM

Processing pair CRM-WAT

Processing pair CRM-WEC

Processing pair CRM-WST

Processing pair CRM-WTW

Processing pair CRM-WDAY
ADF test for CRM-WDAY failed with LinAlgError

Processing pair CRM-XEL

Processing pair CRM-XYL
ADF test for CRM-XYL failed with LinAlgError

Processing pair CRM-YUM

Processing pair CRM-ZBRA

Processing pair CRM-ZTS
ADF test for CRM-ZTS failed with LinAlgError

Processing pair SBAC-SBUX

Processing pair SBAC-STE

Processing pair SBAC-SYY

Processing pair SBAC-TROW

Processing pair SBAC-TTWO

Processing pair SBAC-TGT

Processing pair SBAC-TDY

Processing pair SBAC-TFX

Processing pair SBAC-TXN

Processing pair SBAC-TMO

Processing pair SBAC-TYL

Processing pair SBAC-UDR

Processing pair SBAC-UNP

Processing pair SBAC-UPS

Processing pair SBAC-VRSN

Processing pair SBAC-V

Processing pair SBAC-WAT

Processing pair SBAC-WEC

Processing pair SBAC-XEL

Processing pair SBAC-ZBRA

Processing pair SBAC-ZTS
ADF test for SBAC-ZTS failed with LinAlgError

Processing pair STX-NOW
ADF test for STX-NOW failed with LinAlgError

Processing pair STX-SHW

Processing pair STX-SO

Processing pair STX-STE

Processing pair STX-SYK

Processing pair STX-TMUS

Processing pair STX-TEL

Processing pair STX-TDY

Processing pair STX-TER

Processing pair STX-TXN

Processing pair STX-TMO

Processing pair STX-TJX

Processing pair STX-TSCO

Processing pair STX-TT

Processing pair STX-TDG

Processing pair STX-TRV

Processing pair STX-TYL

Processing pair STX-UNP

Processing pair STX-URI

Processing pair STX-UNH

Processing pair STX-VLTO
ADF test for STX-VLTO failed with LinAlgError

Processing pair STX-VRSK

Processing pair STX-V

Processing pair STX-VMC

Processing pair STX-WRB

Processing pair STX-WMT

Processing pair STX-WM

Processing pair STX-WAT

Processing pair STX-WELL

Processing pair STX-WTW

Processing pair STX-YUM

Processing pair SRE-SHW

Processing pair SRE-SNA

Processing pair SRE-SO

Processing pair SRE-SBUX

Processing pair SRE-STE

Processing pair SRE-SYK

Processing pair SRE-SYY

Processing pair SRE-TMUS

Processing pair SRE-TEL

Processing pair SRE-TDY

Processing pair SRE-TXN

Processing pair SRE-TMO

Processing pair SRE-TJX

Processing pair SRE-TRV

Processing pair SRE-TYL

Processing pair SRE-UDR

Processing pair SRE-ULTA

Processing pair SRE-UNP

Processing pair SRE-UNH

Processing pair SRE-VLO

Processing pair SRE-VRSN

Processing pair SRE-VRSK

Processing pair SRE-VRTX

Processing pair SRE-V

Processing pair SRE-VMC

Processing pair SRE-WRB

Processing pair SRE-WMT

Processing pair SRE-WM

Processing pair SRE-WAT

Processing pair SRE-WEC

Processing pair SRE-WELL

Processing pair SRE-WTW

Processing pair SRE-XEL

Processing pair SRE-XYL
ADF test for SRE-XYL failed with LinAlgError

Processing pair SRE-YUM

Processing pair NOW-SHW
ADF test for NOW-SHW failed with LinAlgError

Processing pair NOW-SO
ADF test for NOW-SO failed with LinAlgError

Processing pair NOW-STE
ADF test for NOW-STE failed with LinAlgError

Processing pair NOW-SYK
ADF test for NOW-SYK failed with LinAlgError

Processing pair NOW-SNPS
ADF test for NOW-SNPS failed with LinAlgError

Processing pair NOW-TMUS
ADF test for NOW-TMUS failed with LinAlgError

Processing pair NOW-TEL
ADF test for NOW-TEL failed with LinAlgError

Processing pair NOW-TDY
ADF test for NOW-TDY failed with LinAlgError

Processing pair NOW-TER
ADF test for NOW-TER failed with LinAlgError

Processing pair NOW-TXN
ADF test for NOW-TXN failed with LinAlgError

Processing pair NOW-TMO
ADF test for NOW-TMO failed with LinAlgError

Processing pair NOW-TJX
ADF test for NOW-TJX failed with LinAlgError

Processing pair NOW-TSCO
ADF test for NOW-TSCO failed with LinAlgError

Processing pair NOW-TT
ADF test for NOW-TT failed with LinAlgError

Processing pair NOW-TDG
ADF test for NOW-TDG failed with LinAlgError

Processing pair NOW-TRV
ADF test for NOW-TRV failed with LinAlgError

Processing pair NOW-TYL
ADF test for NOW-TYL failed with LinAlgError

Processing pair NOW-UNP
ADF test for NOW-UNP failed with LinAlgError

Processing pair NOW-URI
ADF test for NOW-URI failed with LinAlgError

Processing pair NOW-UNH
ADF test for NOW-UNH failed with LinAlgError

Processing pair NOW-VRSK
ADF test for NOW-VRSK failed with LinAlgError

Processing pair NOW-VRTX
ADF test for NOW-VRTX failed with LinAlgError

Processing pair NOW-V
ADF test for NOW-V failed with LinAlgError

Processing pair NOW-VMC
ADF test for NOW-VMC failed with LinAlgError

Processing pair NOW-WRB
ADF test for NOW-WRB failed with LinAlgError

Processing pair NOW-WMT
ADF test for NOW-WMT failed with LinAlgError

Processing pair NOW-WM
ADF test for NOW-WM failed with LinAlgError

Processing pair NOW-WAT
ADF test for NOW-WAT failed with LinAlgError

Processing pair NOW-WST
ADF test for NOW-WST failed with LinAlgError

Processing pair NOW-WTW
ADF test for NOW-WTW failed with LinAlgError

Processing pair NOW-WDAY
ADF test for NOW-WDAY failed with LinAlgError

Processing pair NOW-XYL
ADF test for NOW-XYL failed with LinAlgError

Processing pair NOW-YUM
ADF test for NOW-YUM failed with LinAlgError

Processing pair NOW-ZTS
ADF test for NOW-ZTS failed with LinAlgError

Processing pair SHW-SNA

Processing pair SHW-SO

Processing pair SHW-SBUX

Processing pair SHW-STE

Processing pair SHW-SYK

Processing pair SHW-SNPS

Processing pair SHW-SYY

Processing pair SHW-TMUS

Processing pair SHW-TTWO

Processing pair SHW-TGT

Processing pair SHW-TEL

Processing pair SHW-TDY

Processing pair SHW-TER

Processing pair SHW-TXN

Processing pair SHW-TMO

Processing pair SHW-TJX

Processing pair SHW-TSCO

Processing pair SHW-TT

Processing pair SHW-TDG

Processing pair SHW-TRV

Processing pair SHW-TYL

Processing pair SHW-UDR

Processing pair SHW-UNP

Processing pair SHW-UPS

Processing pair SHW-URI

Processing pair SHW-UNH

Processing pair SHW-VRSN

Processing pair SHW-VRSK

Processing pair SHW-VRTX

Processing pair SHW-V

Processing pair SHW-VMC

Processing pair SHW-WRB

Processing pair SHW-WMT

Processing pair SHW-WM

Processing pair SHW-WAT

Processing pair SHW-WEC

Processing pair SHW-WELL

Processing pair SHW-WST

Processing pair SHW-WTW

Processing pair SHW-WDAY
ADF test for SHW-WDAY failed with LinAlgError

Processing pair SHW-XEL

Processing pair SHW-XYL
ADF test for SHW-XYL failed with LinAlgError

Processing pair SHW-YUM

Processing pair SHW-ZBRA

Processing pair SHW-ZTS
ADF test for SHW-ZTS failed with LinAlgError

Processing pair SWKS-TROW

Processing pair SWKS-TFX

Processing pair SWKS-DIS

Processing pair SWKS-ZBH

Processing pair SJM-ULTA

Processing pair SNA-SO

Processing pair SNA-STLD

Processing pair SNA-STE

Processing pair SNA-SYK

Processing pair SNA-SNPS

Processing pair SNA-TMUS

Processing pair SNA-TEL

Processing pair SNA-TXN

Processing pair SNA-TXT

Processing pair SNA-TMO

Processing pair SNA-TJX

Processing pair SNA-TSCO

Processing pair SNA-TT

Processing pair SNA-TDG

Processing pair SNA-TRV

Processing pair SNA-TYL

Processing pair SNA-ULTA

Processing pair SNA-UNP

Processing pair SNA-URI

Processing pair SNA-UNH

Processing pair SNA-VLO

Processing pair SNA-VRSK

Processing pair SNA-VRTX

Processing pair SNA-VICI
ADF test for SNA-VICI failed with LinAlgError

Processing pair SNA-V

Processing pair SNA-VMC

Processing pair SNA-WRB

Processing pair SNA-GWW

Processing pair SNA-WAB

Processing pair SNA-WMT

Processing pair SNA-WM

Processing pair SNA-WAT

Processing pair SNA-WELL

Processing pair SNA-WTW

Processing pair SNA-XYL
ADF test for SNA-XYL failed with LinAlgError

Processing pair SNA-YUM

Processing pair SO-STLD

Processing pair SO-STE

Processing pair SO-SYK

Processing pair SO-SNPS

Processing pair SO-SYY

Processing pair SO-TMUS

Processing pair SO-TEL

Processing pair SO-TDY

Processing pair SO-TER

Processing pair SO-TXN

Processing pair SO-TPL

Processing pair SO-TMO

Processing pair SO-TJX

Processing pair SO-TSCO

Processing pair SO-TT

Processing pair SO-TDG

Processing pair SO-TRV

Processing pair SO-TYL

Processing pair SO-UNP

Processing pair SO-URI

Processing pair SO-UNH

Processing pair SO-VLTO
ADF test for SO-VLTO failed with LinAlgError

Processing pair SO-VRSK

Processing pair SO-VRTX

Processing pair SO-VICI
ADF test for SO-VICI failed with LinAlgError

Processing pair SO-V

Processing pair SO-VMC

Processing pair SO-WRB

Processing pair SO-GWW

Processing pair SO-WMT

Processing pair SO-WM

Processing pair SO-WAT

Processing pair SO-WEC

Processing pair SO-WELL

Processing pair SO-WST

Processing pair SO-WTW

Processing pair SO-XEL

Processing pair SO-XYL
ADF test for SO-XYL failed with LinAlgError

Processing pair SO-YUM

Processing pair SO-ZTS
ADF test for SO-ZTS failed with LinAlgError

Processing pair SWK-TFX

Processing pair SWK-DIS

Processing pair SBUX-STE

Processing pair SBUX-SYK

Processing pair SBUX-SYY

Processing pair SBUX-TMUS

Processing pair SBUX-TROW

Processing pair SBUX-TTWO

Processing pair SBUX-TEL

Processing pair SBUX-TDY

Processing pair SBUX-TER

Processing pair SBUX-TXN

Processing pair SBUX-TMO

Processing pair SBUX-TYL

Processing pair SBUX-UDR

Processing pair SBUX-ULTA

Processing pair SBUX-UNP

Processing pair SBUX-UPS

Processing pair SBUX-UNH

Processing pair SBUX-VRSN

Processing pair SBUX-VRSK

Processing pair SBUX-V

Processing pair SBUX-VMC

Processing pair SBUX-WM

Processing pair SBUX-WAT

Processing pair SBUX-WEC

Processing pair SBUX-WST

Processing pair SBUX-WTW

Processing pair SBUX-WDAY
ADF test for SBUX-WDAY failed with LinAlgError

Processing pair SBUX-XEL

Processing pair SBUX-XYL
ADF test for SBUX-XYL failed with LinAlgError

Processing pair SBUX-YUM

Processing pair SBUX-ZTS
ADF test for SBUX-ZTS failed with LinAlgError

Processing pair STT-WY

Processing pair STLD-SYK

Processing pair STLD-SNPS

Processing pair STLD-TMUS

Processing pair STLD-TPL

Processing pair STLD-TJX

Processing pair STLD-TSCO

Processing pair STLD-TT

Processing pair STLD-TDG

Processing pair STLD-TRV

Processing pair STLD-URI

Processing pair STLD-UNH

Processing pair STLD-VLO

Processing pair STLD-VRTX

Processing pair STLD-VMC

Processing pair STLD-WRB

Processing pair STLD-GWW

Processing pair STLD-WM

Processing pair STE-SYK

Processing pair STE-SNPS

Processing pair STE-SYY

Processing pair STE-TMUS

Processing pair STE-TTWO

Processing pair STE-TGT

Processing pair STE-TEL

Processing pair STE-TDY

Processing pair STE-TER

Processing pair STE-TXN

Processing pair STE-TMO

Processing pair STE-TJX

Processing pair STE-TSCO

Processing pair STE-TDG

Processing pair STE-TRV

Processing pair STE-TYL

Processing pair STE-UDR

Processing pair STE-UNP

Processing pair STE-UPS

Processing pair STE-UNH

Processing pair STE-VRSN

Processing pair STE-VRSK

Processing pair STE-VRTX

Processing pair STE-V

Processing pair STE-VMC

Processing pair STE-WRB

Processing pair STE-WMT

Processing pair STE-WM

Processing pair STE-WAT

Processing pair STE-WEC

Processing pair STE-WST

Processing pair STE-WTW

Processing pair STE-WDAY
ADF test for STE-WDAY failed with LinAlgError

Processing pair STE-XEL

Processing pair STE-XYL
ADF test for STE-XYL failed with LinAlgError

Processing pair STE-YUM

Processing pair STE-ZBRA

Processing pair STE-ZTS
ADF test for STE-ZTS failed with LinAlgError

Processing pair SYK-SNPS

Processing pair SYK-SYY

Processing pair SYK-TMUS

Processing pair SYK-TTWO

Processing pair SYK-TEL

Processing pair SYK-TDY

Processing pair SYK-TER

Processing pair SYK-TXN

Processing pair SYK-TXT

Processing pair SYK-TMO

Processing pair SYK-TJX

Processing pair SYK-TSCO

Processing pair SYK-TT

Processing pair SYK-TDG

Processing pair SYK-TRV

Processing pair SYK-TYL

Processing pair SYK-ULTA

Processing pair SYK-UNP

Processing pair SYK-URI

Processing pair SYK-UNH

Processing pair SYK-VLO

Processing pair SYK-VRSN

Processing pair SYK-VRSK

Processing pair SYK-VRTX

Processing pair SYK-V

Processing pair SYK-VMC

Processing pair SYK-WRB

Processing pair SYK-GWW

Processing pair SYK-WMT

Processing pair SYK-WM

Processing pair SYK-WAT

Processing pair SYK-WEC

Processing pair SYK-WELL

Processing pair SYK-WST

Processing pair SYK-WTW

Processing pair SYK-WDAY
ADF test for SYK-WDAY failed with LinAlgError

Processing pair SYK-XEL

Processing pair SYK-XYL
ADF test for SYK-XYL failed with LinAlgError

Processing pair SYK-YUM

Processing pair SYK-ZTS
ADF test for SYK-ZTS failed with LinAlgError

Processing pair SNPS-TMUS

Processing pair SNPS-TEL

Processing pair SNPS-TER

Processing pair SNPS-TXN

Processing pair SNPS-TPL

Processing pair SNPS-TMO

Processing pair SNPS-TJX

Processing pair SNPS-TSCO

Processing pair SNPS-TT

Processing pair SNPS-TDG

Processing pair SNPS-TRV

Processing pair SNPS-UNP

Processing pair SNPS-URI

Processing pair SNPS-UNH

Processing pair SNPS-VRSK

Processing pair SNPS-VRTX

Processing pair SNPS-V

Processing pair SNPS-VMC

Processing pair SNPS-WRB

Processing pair SNPS-GWW

Processing pair SNPS-WMT

Processing pair SNPS-WM

Processing pair SNPS-WST

Processing pair SNPS-WTW

Processing pair SNPS-XYL
ADF test for SNPS-XYL failed with LinAlgError

Processing pair SNPS-YUM

Processing pair SYY-TMUS

Processing pair SYY-TTWO

Processing pair SYY-TEL

Processing pair SYY-TDY

Processing pair SYY-TXN

Processing pair SYY-TMO

Processing pair SYY-TRV

Processing pair SYY-TYL

Processing pair SYY-UDR

Processing pair SYY-ULTA

Processing pair SYY-UNP

Processing pair SYY-UPS

Processing pair SYY-UNH

Processing pair SYY-VRSN

Processing pair SYY-VRSK

Processing pair SYY-V

Processing pair SYY-VMC

Processing pair SYY-WRB

Processing pair SYY-WM

Processing pair SYY-WAT

Processing pair SYY-WEC

Processing pair SYY-WTW

Processing pair SYY-XEL

Processing pair SYY-XYL
ADF test for SYY-XYL failed with LinAlgError

Processing pair SYY-YUM

Processing pair SYY-ZTS
ADF test for SYY-ZTS failed with LinAlgError

Processing pair TMUS-TEL

Processing pair TMUS-TDY

Processing pair TMUS-TER

Processing pair TMUS-TXN

Processing pair TMUS-TPL

Processing pair TMUS-TMO

Processing pair TMUS-TJX

Processing pair TMUS-TSCO

Processing pair TMUS-TT

Processing pair TMUS-TDG

Processing pair TMUS-TRV

Processing pair TMUS-TYL

Processing pair TMUS-UNP

Processing pair TMUS-URI

Processing pair TMUS-UNH

Processing pair TMUS-VRSK

Processing pair TMUS-VRTX

Processing pair TMUS-VICI
ADF test for TMUS-VICI failed with LinAlgError

Processing pair TMUS-V

Processing pair TMUS-VMC

Processing pair TMUS-WRB

Processing pair TMUS-GWW

Processing pair TMUS-WMT

Processing pair TMUS-WM

Processing pair TMUS-WAT

Processing pair TMUS-WEC

Processing pair TMUS-WST

Processing pair TMUS-WTW

Processing pair TMUS-XEL

Processing pair TMUS-XYL
ADF test for TMUS-XYL failed with LinAlgError

Processing pair TMUS-YUM

Processing pair TMUS-ZTS
ADF test for TMUS-ZTS failed with LinAlgError

Processing pair TROW-TTWO

Processing pair TROW-TGT

Processing pair TROW-TEL

Processing pair TROW-TDY

Processing pair TROW-TER

Processing pair TROW-TXN

Processing pair TROW-TRMB

Processing pair TROW-TYL

Processing pair TROW-UPS

Processing pair TROW-VRSN

Processing pair TROW-WAT

Processing pair TROW-WST

Processing pair TROW-ZBRA

Processing pair TTWO-TEL

Processing pair TTWO-TDY

Processing pair TTWO-TFX

Processing pair TTWO-TER

Processing pair TTWO-TXN

Processing pair TTWO-TMO

Processing pair TTWO-TYL

Processing pair TTWO-UNP

Processing pair TTWO-VRSN

Processing pair TTWO-VRSK

Processing pair TTWO-V

Processing pair TTWO-WAT

Processing pair TTWO-WEC

Processing pair TTWO-WTW

Processing pair TTWO-WDAY
ADF test for TTWO-WDAY failed with LinAlgError

Processing pair TTWO-XEL

Processing pair TTWO-XYL
ADF test for TTWO-XYL failed with LinAlgError

Processing pair TTWO-YUM

Processing pair TTWO-ZTS
ADF test for TTWO-ZTS failed with LinAlgError

Processing pair TRGP-WMB
ADF test for TRGP-WMB failed with LinAlgError

Processing pair TGT-TDY

Processing pair TGT-TER

Processing pair TGT-TSLA
ADF test for TGT-TSLA failed with LinAlgError

Processing pair TGT-TXN

Processing pair TGT-TMO

Processing pair TGT-TRMB

Processing pair TGT-TYL

Processing pair TGT-UPS

Processing pair TGT-WAT

Processing pair TGT-WST

Processing pair TGT-ZBRA

Processing pair TGT-ZTS
ADF test for TGT-ZTS failed with LinAlgError

Processing pair TEL-TDY

Processing pair TEL-TER

Processing pair TEL-TXN

Processing pair TEL-TXT

Processing pair TEL-TMO

Processing pair TEL-TJX

Processing pair TEL-TSCO

Processing pair TEL-TT

Processing pair TEL-TDG

Processing pair TEL-TRV

Processing pair TEL-TRMB

Processing pair TEL-TYL

Processing pair TEL-UDR

Processing pair TEL-ULTA

Processing pair TEL-UNP

Processing pair TEL-UPS

Processing pair TEL-UNH

Processing pair TEL-VRSN

Processing pair TEL-VRSK

Processing pair TEL-V

Processing pair TEL-VMC

Processing pair TEL-WRB

Processing pair TEL-WMT

Processing pair TEL-WM

Processing pair TEL-WAT

Processing pair TEL-WEC

Processing pair TEL-WST

Processing pair TEL-WY

Processing pair TEL-WTW

Processing pair TEL-WDAY
ADF test for TEL-WDAY failed with LinAlgError

Processing pair TEL-XEL

Processing pair TEL-XYL
ADF test for TEL-XYL failed with LinAlgError

Processing pair TEL-YUM

Processing pair TEL-ZBRA

Processing pair TEL-ZTS
ADF test for TEL-ZTS failed with LinAlgError

Processing pair TDY-TER

Processing pair TDY-TXN

Processing pair TDY-TMO

Processing pair TDY-TJX

Processing pair TDY-TSCO

Processing pair TDY-TRV

Processing pair TDY-TYL

Processing pair TDY-UDR

Processing pair TDY-UNP

Processing pair TDY-UPS

Processing pair TDY-UNH

Processing pair TDY-VRSN

Processing pair TDY-VRSK

Processing pair TDY-V

Processing pair TDY-VMC

Processing pair TDY-WRB

Processing pair TDY-WMT

Processing pair TDY-WM

Processing pair TDY-WAT

Processing pair TDY-WEC

Processing pair TDY-WST

Processing pair TDY-WTW

Processing pair TDY-WDAY
ADF test for TDY-WDAY failed with LinAlgError

Processing pair TDY-XEL

Processing pair TDY-XYL
ADF test for TDY-XYL failed with LinAlgError

Processing pair TDY-YUM

Processing pair TDY-ZBRA

Processing pair TDY-ZTS
ADF test for TDY-ZTS failed with LinAlgError

Processing pair TFX-VRSN

Processing pair TFX-VZ

Processing pair TFX-DIS

Processing pair TER-TSLA
ADF test for TER-TSLA failed with LinAlgError

Processing pair TER-TXN

Processing pair TER-TMO

Processing pair TER-TSCO

Processing pair TER-TRMB

Processing pair TER-TYL

Processing pair TER-UNP

Processing pair TER-UPS

Processing pair TER-UNH

Processing pair TER-VRSK

Processing pair TER-V

Processing pair TER-WMT

Processing pair TER-WM

Processing pair TER-WAT

Processing pair TER-WST

Processing pair TER-WTW

Processing pair TER-WDAY
ADF test for TER-WDAY failed with LinAlgError

Processing pair TER-XYL
ADF test for TER-XYL failed with LinAlgError

Processing pair TER-YUM

Processing pair TER-ZBRA

Processing pair TER-ZTS
ADF test for TER-ZTS failed with LinAlgError

Processing pair TSLA-TMO
ADF test for TSLA-TMO failed with LinAlgError

Processing pair TSLA-UPS
ADF test for TSLA-UPS failed with LinAlgError

Processing pair TSLA-WST
ADF test for TSLA-WST failed with LinAlgError

Processing pair TXN-TPL

Processing pair TXN-TMO

Processing pair TXN-TJX

Processing pair TXN-TSCO

Processing pair TXN-TT

Processing pair TXN-TDG

Processing pair TXN-TRV

Processing pair TXN-TYL

Processing pair TXN-UDR

Processing pair TXN-ULTA

Processing pair TXN-UNP

Processing pair TXN-UPS

Processing pair TXN-UNH

Processing pair TXN-VLTO
ADF test for TXN-VLTO failed with LinAlgError

Processing pair TXN-VRSN

Processing pair TXN-VRSK

Processing pair TXN-VRTX

Processing pair TXN-VICI
ADF test for TXN-VICI failed with LinAlgError

Processing pair TXN-V

Processing pair TXN-VMC

Processing pair TXN-WRB

Processing pair TXN-WMT

Processing pair TXN-WM

Processing pair TXN-WAT

Processing pair TXN-WEC

Processing pair TXN-WST

Processing pair TXN-WTW

Processing pair TXN-WDAY
ADF test for TXN-WDAY failed with LinAlgError

Processing pair TXN-XEL

Processing pair TXN-XYL
ADF test for TXN-XYL failed with LinAlgError

Processing pair TXN-YUM

Processing pair TXN-ZBRA

Processing pair TXN-ZTS
ADF test for TXN-ZTS failed with LinAlgError

Processing pair TPL-TJX

Processing pair TPL-TSCO

Processing pair TPL-TT

Processing pair TPL-TDG

Processing pair TPL-TRV

Processing pair TPL-URI

Processing pair TPL-UNH

Processing pair TPL-WRB

Processing pair TPL-GWW

Processing pair TPL-WMT

Processing pair TPL-WM

Processing pair TPL-WTW

Processing pair TXT-TJX

Processing pair TXT-TRV

Processing pair TXT-VLO

Processing pair TXT-VMC

Processing pair TXT-WM

Processing pair TXT-WY

Processing pair TXT-YUM

Processing pair TMO-TJX

Processing pair TMO-TSCO

Processing pair TMO-TRV

Processing pair TMO-TYL

Processing pair TMO-UNP

Processing pair TMO-UPS

Processing pair TMO-UNH

Processing pair TMO-VRSN

Processing pair TMO-VRSK

Processing pair TMO-VICI
ADF test for TMO-VICI failed with LinAlgError

Processing pair TMO-V

Processing pair TMO-VMC

Processing pair TMO-WRB

Processing pair TMO-WMT

Processing pair TMO-WM

Processing pair TMO-WAT

Processing pair TMO-WEC

Processing pair TMO-WST

Processing pair TMO-WTW

Processing pair TMO-WDAY
ADF test for TMO-WDAY failed with LinAlgError

Processing pair TMO-XEL

Processing pair TMO-XYL
ADF test for TMO-XYL failed with LinAlgError

Processing pair TMO-YUM

Processing pair TMO-ZBRA

Processing pair TMO-ZTS
ADF test for TMO-ZTS failed with LinAlgError

Processing pair TJX-TSCO

Processing pair TJX-TT

Processing pair TJX-TDG

Processing pair TJX-TRV

Processing pair TJX-TYL

Processing pair TJX-UNP

Processing pair TJX-URI

Processing pair TJX-UNH

Processing pair TJX-VLO

Processing pair TJX-VLTO
ADF test for TJX-VLTO failed with LinAlgError

Processing pair TJX-VRSK

Processing pair TJX-VRTX

Processing pair TJX-V

Processing pair TJX-VMC

Processing pair TJX-WRB

Processing pair TJX-GWW

Processing pair TJX-WMT

Processing pair TJX-WM

Processing pair TJX-WAT

Processing pair TJX-WELL

Processing pair TJX-WTW

Processing pair TJX-XYL
ADF test for TJX-XYL failed with LinAlgError

Processing pair TJX-YUM

Processing pair TSCO-TT

Processing pair TSCO-TDG

Processing pair TSCO-TRV

Processing pair TSCO-TYL

Processing pair TSCO-UNP

Processing pair TSCO-URI

Processing pair TSCO-UNH

Processing pair TSCO-VLTO
ADF test for TSCO-VLTO failed with LinAlgError

Processing pair TSCO-VRSK

Processing pair TSCO-VRTX

Processing pair TSCO-VICI
ADF test for TSCO-VICI failed with LinAlgError

Processing pair TSCO-V

Processing pair TSCO-VMC

Processing pair TSCO-WRB

Processing pair TSCO-GWW

Processing pair TSCO-WMT

Processing pair TSCO-WM

Processing pair TSCO-WAT

Processing pair TSCO-WST

Processing pair TSCO-WTW

Processing pair TSCO-XYL
ADF test for TSCO-XYL failed with LinAlgError

Processing pair TSCO-YUM

Processing pair TT-TDG

Processing pair TT-TRV

Processing pair TT-TYL

Processing pair TT-URI

Processing pair TT-UNH

Processing pair TT-VLTO
ADF test for TT-VLTO failed with LinAlgError

Processing pair TT-VRSK

Processing pair TT-VRTX

Processing pair TT-V

Processing pair TT-VMC

Processing pair TT-WRB

Processing pair TT-GWW

Processing pair TT-WMT

Processing pair TT-WM

Processing pair TT-WELL

Processing pair TT-WTW

Processing pair TT-XYL
ADF test for TT-XYL failed with LinAlgError

Processing pair TDG-TRV

Processing pair TDG-TYL

Processing pair TDG-UNP

Processing pair TDG-URI

Processing pair TDG-UNH

Processing pair TDG-VLO

Processing pair TDG-VLTO
ADF test for TDG-VLTO failed with LinAlgError

Processing pair TDG-VRSK

Processing pair TDG-VRTX

Processing pair TDG-V

Processing pair TDG-VMC

Processing pair TDG-WRB

Processing pair TDG-GWW

Processing pair TDG-WMT

Processing pair TDG-WM

Processing pair TDG-WELL

Processing pair TDG-WTW

Processing pair TDG-XYL
ADF test for TDG-XYL failed with LinAlgError

Processing pair TDG-YUM

Processing pair TRV-TYL

Processing pair TRV-ULTA

Processing pair TRV-UNP

Processing pair TRV-URI

Processing pair TRV-UNH

Processing pair TRV-VLO

Processing pair TRV-VRSK

Processing pair TRV-VRTX

Processing pair TRV-V

Processing pair TRV-VMC

Processing pair TRV-WRB

Processing pair TRV-GWW

Processing pair TRV-WMT

Processing pair TRV-WM

Processing pair TRV-WAT

Processing pair TRV-WELL

Processing pair TRV-WTW

Processing pair TRV-XYL
ADF test for TRV-XYL failed with LinAlgError

Processing pair TRV-YUM

Processing pair TRMB-UPS

Processing pair TRMB-WAT

Processing pair TRMB-WST

Processing pair TRMB-ZBRA

Processing pair TFC-TSN

Processing pair TFC-USB

Processing pair TFC-UDR

Processing pair TYL-UDR

Processing pair TYL-UNP

Processing pair TYL-UPS

Processing pair TYL-UNH

Processing pair TYL-VLTO
ADF test for TYL-VLTO failed with LinAlgError

Processing pair TYL-VRSN

Processing pair TYL-VRSK

Processing pair TYL-V

Processing pair TYL-VMC

Processing pair TYL-WRB

Processing pair TYL-WMT

Processing pair TYL-WM

Processing pair TYL-WAT

Processing pair TYL-WEC

Processing pair TYL-WST

Processing pair TYL-WTW

Processing pair TYL-WDAY
ADF test for TYL-WDAY failed with LinAlgError

Processing pair TYL-XEL

Processing pair TYL-XYL
ADF test for TYL-XYL failed with LinAlgError

Processing pair TYL-YUM

Processing pair TYL-ZBRA

Processing pair TYL-ZTS
ADF test for TYL-ZTS failed with LinAlgError

Processing pair TSN-USB

Processing pair TSN-UDR

Processing pair USB-UDR

Processing pair UDR-UNP

Processing pair UDR-VLTO
ADF test for UDR-VLTO failed with LinAlgError

Processing pair UDR-VRSN

Processing pair UDR-V

Processing pair UDR-WAT

Processing pair UDR-WEC

Processing pair UDR-XEL

Processing pair UDR-YUM

Processing pair ULTA-UNP

Processing pair ULTA-UNH

Processing pair ULTA-V

Processing pair ULTA-VMC

Processing pair ULTA-WRB

Processing pair ULTA-WM

Processing pair ULTA-WAT

Processing pair ULTA-WTW

Processing pair ULTA-YUM

Processing pair UNP-UPS

Processing pair UNP-UNH

Processing pair UNP-VRSN

Processing pair UNP-VRSK

Processing pair UNP-VRTX

Processing pair UNP-V

Processing pair UNP-VMC

Processing pair UNP-WRB

Processing pair UNP-WMT

Processing pair UNP-WM

Processing pair UNP-WAT

Processing pair UNP-WEC

Processing pair UNP-WST

Processing pair UNP-WTW

Processing pair UNP-WDAY
ADF test for UNP-WDAY failed with LinAlgError

Processing pair UNP-XEL

Processing pair UNP-XYL
ADF test for UNP-XYL failed with LinAlgError

Processing pair UNP-YUM

Processing pair UNP-ZTS
ADF test for UNP-ZTS failed with LinAlgError

Processing pair UPS-UNH

Processing pair UPS-WAT

Processing pair UPS-WEC

Processing pair UPS-WST

Processing pair UPS-XEL

Processing pair UPS-YUM

Processing pair UPS-ZBRA

Processing pair UPS-ZTS
ADF test for UPS-ZTS failed with LinAlgError

Processing pair URI-VRSK

Processing pair URI-VRTX

Processing pair URI-VMC

Processing pair URI-WRB

Processing pair URI-GWW

Processing pair URI-WMT

Processing pair URI-WM

Processing pair UNH-VLO

Processing pair UNH-VRSK

Processing pair UNH-VRTX

Processing pair UNH-VICI
ADF test for UNH-VICI failed with LinAlgError

Processing pair UNH-V

Processing pair UNH-VMC

Processing pair UNH-WRB

Processing pair UNH-WMT

Processing pair UNH-WM

Processing pair UNH-WAT

Processing pair UNH-WEC

Processing pair UNH-WST

Processing pair UNH-WTW

Processing pair UNH-XEL

Processing pair UNH-XYL
ADF test for UNH-XYL failed with LinAlgError

Processing pair UNH-YUM

Processing pair UNH-ZTS
ADF test for UNH-ZTS failed with LinAlgError

Processing pair UHS-VLTO
ADF test for UHS-VLTO failed with LinAlgError

Processing pair VLO-VRTX

Processing pair VLO-VMC

Processing pair VLO-WRB

Processing pair VLO-GWW

Processing pair VLO-WM

Processing pair VLTO-WAB
ADF test for VLTO-WAB failed with LinAlgError

Processing pair VLTO-ZBRA
ADF test for VLTO-ZBRA failed with LinAlgError

Processing pair VRSN-VRSK

Processing pair VRSN-V

Processing pair VRSN-WAT

Processing pair VRSN-WEC

Processing pair VRSN-WTW

Processing pair VRSN-WDAY
ADF test for VRSN-WDAY failed with LinAlgError

Processing pair VRSN-XEL

Processing pair VRSN-YUM

Processing pair VRSN-ZTS
ADF test for VRSN-ZTS failed with LinAlgError

Processing pair VRSK-VRTX

Processing pair VRSK-V

Processing pair VRSK-VMC

Processing pair VRSK-WRB

Processing pair VRSK-GWW

Processing pair VRSK-WMT

Processing pair VRSK-WM

Processing pair VRSK-WAT

Processing pair VRSK-WEC

Processing pair VRSK-WELL

Processing pair VRSK-WST

Processing pair VRSK-WTW

Processing pair VRSK-WDAY
ADF test for VRSK-WDAY failed with LinAlgError

Processing pair VRSK-XEL

Processing pair VRSK-XYL
ADF test for VRSK-XYL failed with LinAlgError

Processing pair VRSK-YUM

Processing pair VRSK-ZTS
ADF test for VRSK-ZTS failed with LinAlgError

Processing pair VZ-DIS

Processing pair VRTX-V

Processing pair VRTX-VMC

Processing pair VRTX-WRB

Processing pair VRTX-GWW

Processing pair VRTX-WMT

Processing pair VRTX-WM

Processing pair VRTX-WTW

Processing pair VRTX-YUM

Processing pair VICI-WM
ADF test for VICI-WM failed with LinAlgError

Processing pair VICI-YUM
ADF test for VICI-YUM failed with LinAlgError

Processing pair V-VMC

Processing pair V-WRB

Processing pair V-WMT

Processing pair V-WM

Processing pair V-WAT

Processing pair V-WEC

Processing pair V-WST

Processing pair V-WTW

Processing pair V-WDAY
ADF test for V-WDAY failed with LinAlgError

Processing pair V-XEL

Processing pair V-XYL
ADF test for V-XYL failed with LinAlgError

Processing pair V-YUM

Processing pair V-ZTS
ADF test for V-ZTS failed with LinAlgError

Processing pair VMC-WRB

Processing pair VMC-GWW

Processing pair VMC-WMT

Processing pair VMC-WM

Processing pair VMC-WAT

Processing pair VMC-WELL

Processing pair VMC-WTW

Processing pair VMC-XYL
ADF test for VMC-XYL failed with LinAlgError

Processing pair VMC-YUM

Processing pair WRB-GWW

Processing pair WRB-WMT

Processing pair WRB-WM

Processing pair WRB-WAT

Processing pair WRB-WEC

Processing pair WRB-WELL

Processing pair WRB-WTW

Processing pair WRB-XYL
ADF test for WRB-XYL failed with LinAlgError

Processing pair WRB-YUM

Processing pair GWW-WMT

Processing pair GWW-WM

Processing pair WMT-WM

Processing pair WMT-WELL

Processing pair WMT-WTW

Processing pair WMT-XYL
ADF test for WMT-XYL failed with LinAlgError

Processing pair WMT-YUM

Processing pair DIS-ZBH

Processing pair WM-WAT

Processing pair WM-WEC

Processing pair WM-WELL

Processing pair WM-WST

Processing pair WM-WTW

Processing pair WM-XEL

Processing pair WM-XYL
ADF test for WM-XYL failed with LinAlgError

Processing pair WM-YUM

Processing pair WM-ZTS
ADF test for WM-ZTS failed with LinAlgError

Processing pair WAT-WEC

Processing pair WAT-WST

Processing pair WAT-WTW

Processing pair WAT-XEL

Processing pair WAT-XYL
ADF test for WAT-XYL failed with LinAlgError

Processing pair WAT-YUM

Processing pair WAT-ZBRA

Processing pair WAT-ZTS
ADF test for WAT-ZTS failed with LinAlgError

Processing pair WEC-WTW

Processing pair WEC-XEL

Processing pair WEC-XYL
ADF test for WEC-XYL failed with LinAlgError

Processing pair WEC-YUM

Processing pair WEC-ZTS
ADF test for WEC-ZTS failed with LinAlgError

Processing pair WELL-WTW

Processing pair WELL-YUM

Processing pair WST-WTW

Processing pair WST-WDAY
ADF test for WST-WDAY failed with LinAlgError

Processing pair WST-XYL
ADF test for WST-XYL failed with LinAlgError

Processing pair WST-YUM

Processing pair WST-ZBRA

Processing pair WST-ZTS
ADF test for WST-ZTS failed with LinAlgError

Processing pair WTW-WDAY
ADF test for WTW-WDAY failed with LinAlgError

Processing pair WTW-XEL

Processing pair WTW-XYL
ADF test for WTW-XYL failed with LinAlgError

Processing pair WTW-YUM

Processing pair WTW-ZTS
ADF test for WTW-ZTS failed with LinAlgError

Processing pair WDAY-XYL
ADF test for WDAY-XYL failed with LinAlgError

Processing pair WDAY-YUM
ADF test for WDAY-YUM failed with LinAlgError

Processing pair WDAY-ZTS
ADF test for WDAY-ZTS failed with LinAlgError

Processing pair XEL-XYL
ADF test for XEL-XYL failed with LinAlgError

Processing pair XEL-YUM

Processing pair XEL-ZTS
ADF test for XEL-ZTS failed with LinAlgError

Processing pair XYL-YUM
ADF test for XYL-YUM failed with LinAlgError

Processing pair XYL-ZTS
ADF test for XYL-ZTS failed with LinAlgError

Processing pair YUM-ZTS
ADF test for YUM-ZTS failed with LinAlgError

Processing pair ZBRA-ZTS
ADF test for ZBRA-ZTS failed with LinAlgError
In [18]:
""" Notebook Reference 2.1 """

# Filter the batch procedure stationarity results 
if run_batch:
    df_filtered = (df_batch[(df_batch["Significance Level"] == "5%") & 
                            (df_batch["Ticker A Industry"] == df_batch["Ticker B Industry"]) & 
                            (df_batch["Is Stationary"] == True)]
                            .drop_duplicates()
                            .sort_values("t-statistic", ascending=True)
                            .reset_index(drop=True))

    display(df_filtered)
Ticker A Ticker B Ticker A Sector Ticker B Sector Ticker A Industry Ticker B Industry Regressand Regressor t-statistic Significance Level Critical Value Is Stationary
0 WEC XEL Utilities Utilities Utilities - Regulated Electric Utilities - Regulated Electric ΔResidual (Lag 1, Residual) -6.663999 5% -3.33776 True
1 GOOGL GOOG Communication Services Communication Services Internet Content & Information Internet Content & Information ΔResidual (Lag 1, Residual) -6.218724 5% -3.33776 True
2 LH WAT Healthcare Healthcare Diagnostics & Research Diagnostics & Research ΔResidual (Lag 1, Residual) -6.211841 5% -3.33776 True
3 AEE XEL Utilities Utilities Utilities - Regulated Electric Utilities - Regulated Electric ΔResidual (Lag 1, Residual) -5.447909 5% -3.33776 True
4 NDSN ROK Industrials Industrials Specialty Industrial Machinery Specialty Industrial Machinery ΔResidual (Lag 1, Residual) -5.217818 5% -3.33776 True
... ... ... ... ... ... ... ... ... ... ... ... ...
151 CPT MAA Real Estate Real Estate REIT - Residential REIT - Residential ΔResidual (Lag 1, Residual) -3.349393 5% -3.33776 True
152 MCHP MU Technology Technology Semiconductors Semiconductors ΔResidual (Lag 1, Residual) -3.346678 5% -3.33776 True
153 ED EIX Utilities Utilities Utilities - Regulated Electric Utilities - Regulated Electric ΔResidual (Lag 1, Residual) -3.340379 5% -3.33776 True
154 ANSS ROP Technology Technology Software - Application Software - Application ΔResidual (Lag 1, Residual) -3.339765 5% -3.33776 True
155 INTU CRM Technology Technology Software - Application Software - Application ΔResidual (Lag 1, Residual) -3.338404 5% -3.33776 True

156 rows × 12 columns

In [19]:
""" Notebook Reference 2.2 """

# Stationarity test results for all 3 analysed cointegrating pairs
if run_batch:
    display(df_filtered[(df_filtered["Ticker A"] == "ITW") & (df_filtered["Ticker B"] == "NDSN") |
                 (df_filtered["Ticker A"] == "CSX") & (df_filtered["Ticker B"] == "UNP") |
                 (df_filtered["Ticker A"] == "MA") & (df_filtered["Ticker B"] == "V")])
Ticker A Ticker B Ticker A Sector Ticker B Sector Ticker A Industry Ticker B Industry Regressand Regressor t-statistic Significance Level Critical Value Is Stationary
13 ITW NDSN Industrials Industrials Specialty Industrial Machinery Specialty Industrial Machinery ΔResidual (Lag 1, Residual) -4.859267 5% -3.33776 True
35 MA V Financial Services Financial Services Credit Services Credit Services ΔResidual (Lag 1, Residual) -4.267122 5% -3.33776 True
54 CSX UNP Industrials Industrials Railroads Railroads ΔResidual (Lag 1, Residual) -3.998575 5% -3.33776 True
In [20]:
""" Notebook Reference 3.0 """

# Create Bivariate Engle Granger class 
EG_2 = BivariateEngleGranger()

# Initialise first pair based on economic reasoning for cointegration to exist (Visa on Mastercard)
ticker_2_a = "NDSN"
ticker_2_b = "ITW"
start_date_2 = "2020-01-01"
end_date_2 = "2024-11-29"

EG_2.initialise_single_procedure(ticker_2_a, ticker_2_b, start_date_2, end_date_2, benchmark=benchmark)

EG_2.run_single_procedure(include_strategy_backtest=False)
Price regression summary 
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist)
0 NDSN Constant 0.213509 0.016416 13.006075 0.0
1 NDSN ITW 0.900522 0.012602 71.458003 0.0

Timeseries plots
No description has been provided for this image

Cointegrated Augmented Dickey-Fuller test 
Regressand Regressor t-statistic Significance Level Critical Value Is Stationary
0 ΔResidual (Lag 1, Residual) -3.342836 1% -3.905337 False
1 ΔResidual (Lag 1, Residual) -3.342836 5% -3.341086 True
2 ΔResidual (Lag 1, Residual) -3.342836 10% -3.047889 True

Error Correction Model fitting 
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist) Significant at 5%
0 ΔNDSN ΔITW 0.835860 0.026776 31.216192 0.000000 True
1 ΔNDSN (Lag 1, Residuals) -0.019452 0.005604 -3.471023 0.000536 True

Error Correction Model reverse fitting 
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist) Significant at 5%
0 ΔITW ΔNDSN 0.528123 0.016918 31.216192 0.000000 True
1 ΔITW (Lag 1, Residuals) 0.013444 0.004460 3.014533 0.002626 True

Fit to Ornstein-Uhlenbeck Stochastic Differential Equation 
Theta: 5.0446

Half-life in years: 0.1374 years
Half-life in working days: 34.6258 days

Equilibrium level μ_e: 0.0007542416915065826
Equilibirum level μ_e can be compared to the AR(1) fitting intercept: 1.4948461051488972e-05

Sum Squared Errors: 0.3698966810538704

Annualised Variance: 0.0014678439724359936
Diffusion in Ornstein-Uhlenbeck SDE (sigma_ou): 0.614288828482776
Diffusion in equilibrium to dictate entry trade signals (sigma_eq): 0.19339469140191462

Diffusion of sample residuals (note the difference): 0.01730640004838421


Grid search optimisation results for Z 
Maximum return occurs with Z=0.5
Z Total Trades Total Return
0 0.30 13 1.342951
1 0.35 12 1.569871
2 0.40 12 1.750467
3 0.45 11 1.635997
4 0.50 11 1.990894
5 0.55 9 1.613325
6 0.60 8 1.553289
7 0.65 7 1.453028
8 0.70 7 1.505447
9 0.75 6 1.201024
10 0.80 6 1.368124
11 0.85 6 1.422050
12 0.90 5 1.201392
13 0.95 4 1.071924
14 1.00 3 0.782388
15 1.05 2 0.506785
16 1.10 1 0.312007
17 1.15 1 0.312007
18 1.20 1 0.528210
19 1.25 1 0.528210
20 1.30 1 0.528210
21 1.35 1 0.528210
22 1.40 1 0.528210

Backtest plots for optimal Z
No description has been provided for this image
In [21]:
""" Notebook Reference 4.0 """

# Create Bivariate Engle Granger class 
EG_3 = BivariateEngleGranger()

# Initialise first pair based on economic reasoning for cointegration to exist (Visa on Mastercard)
ticker_3_a = "CSX"
ticker_3_b = "UNP"
start_date_3 = "2020-01-01"
end_date_3 = "2024-11-29"

EG_3.initialise_single_procedure(ticker_3_a, ticker_3_b, start_date_3, end_date_3, benchmark=benchmark)

EG_3.run_single_procedure(include_strategy_backtest=False)
Price regression summary 
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist)
0 CSX Constant 0.057725 0.012142 4.754235 0.000002
1 CSX UNP 1.012661 0.009663 104.796748 0.000000

Timeseries plots
No description has been provided for this image

Cointegrated Augmented Dickey-Fuller test 
Regressand Regressor t-statistic Significance Level Critical Value Is Stationary
0 ΔResidual (Lag 1, Residual) -4.03121 1% -3.905337 True
1 ΔResidual (Lag 1, Residual) -4.03121 5% -3.341086 True
2 ΔResidual (Lag 1, Residual) -4.03121 10% -3.047889 True

Error Correction Model fitting 
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist) Significant at 5%
0 ΔCSX ΔUNP 0.844746 0.020291 41.631719 0.000000 True
1 ΔCSX (Lag 1, Residuals) -0.026577 0.006557 -4.053136 0.000054 True

Error Correction Model reverse fitting 
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist) Significant at 5%
0 ΔUNP ΔCSX 0.691707 0.016615 41.631719 0.000000 True
1 ΔUNP (Lag 1, Residuals) 0.023972 0.005934 4.039803 0.000057 True

Fit to Ornstein-Uhlenbeck Stochastic Differential Equation 
Theta: 7.3731

Half-life in years: 0.0940 years
Half-life in working days: 23.6907 days

Equilibrium level μ_e: 0.0026604582299424107
Equilibirum level μ_e can be compared to the AR(1) fitting intercept: 7.671235069806655e-05

Sum Squared Errors: 0.24804949826984413

Annualised Variance: 0.0009843234058327147
Diffusion in Ornstein-Uhlenbeck SDE (sigma_ou): 0.5053491274305242
Diffusion in equilibrium to dictate entry trade signals (sigma_eq): 0.13159909784537355

Diffusion of sample residuals (note the difference): 0.014172148608094478


Grid search optimisation results for Z 
Maximum return occurs with Z=0.35
Z Total Trades Total Return
0 0.30 23 2.372543
1 0.35 23 2.602428
2 0.40 18 2.063860
3 0.45 17 2.044833
4 0.50 16 2.137940
5 0.55 14 2.067121
6 0.60 12 1.897633
7 0.65 10 1.503726
8 0.70 8 1.073950
9 0.75 8 1.143794
10 0.80 6 0.864475
11 0.85 5 0.721138
12 0.90 5 0.771628
13 0.95 3 0.468718
14 1.00 3 0.482161
15 1.05 3 0.496929
16 1.10 2 0.315182
17 1.15 2 0.330486
18 1.20 1 0.193382
19 1.25 1 0.202391
20 1.30 1 0.202391
21 1.35 0 0.000000
22 1.40 0 0.000000

Backtest plots for optimal Z
No description has been provided for this image
In [22]:
""" Notebook Reference 4.1 """

# Trading data timeseries
df_formatted = df_trades.copy()
df_formatted.index = df_formatted.index.date

df_formatted.tail().T

# also can be accessed via EG_reverse.optimal_strategy
Out[22]:
2024-11-21 2024-11-22 2024-11-25 2024-11-26 2024-11-27
Residual -0.040337 -0.020938 -0.021804 -0.006917 -0.011596
EqResidual -0.000104 -0.000104 -0.000104 -0.000104 -0.000104
UpperBound 0.025837 0.025837 0.025837 0.025837 0.025837
LowerBound -0.026045 -0.026045 -0.026045 -0.026045 -0.026045
UpperBreach False False False False False
LowerBreach True False False False False
Position Long Long Long Long Long
Position_t-1 Long Long Long Long Long
IsPositionChanged False False False False False
EnterShort False False False False False
EnterLong False False False False False
ExitTrade False False False False False
MA 1.74596 1.765484 1.78494 1.791313 1.804532
V 1.67979 1.679899 1.697623 1.690197 1.705808
MA_returns 0.004995 0.011182 0.01102 0.00357 0.00738
V_returns 0.008165 0.000065 0.010551 -0.004374 0.009236
MA_cum_returns 0.74596 0.765484 0.78494 0.791313 0.804532
V_cum_returns 0.67979 0.679899 0.697623 0.690197 0.705808
Benchmark 1.825962 1.832294 1.837829 1.848345 1.841319
BenchmarkReturn 0.00534 0.003468 0.00302 0.005722 -0.003801
PortfolioReturn -0.004367 0.011108 -0.001077 0.008585 -0.00321
CumReturn 1.472471 1.499935 1.497243 1.518683 1.510598
CumTrades 27 27 27 27 27
In [23]:
""" Notebook Reference 5.0 """

# Plot rolling beta with respect to S&P500 excess returns
EG_reverse.plot_sp500_xs_rets_rolling_beta(df_trades)
No description has been provided for this image
In [24]:
""" Notebook Reference 5.1 """

# Create tearsheet from pyfolio
EG_reverse.create_pyfolio_returns_tear_sheet(df_trades)
Start date2020-01-03
End date2024-11-27
Total months58
Backtest
Annual return 20.663%
Cumulative returns 151.06%
Annual volatility 11.464%
Sharpe ratio 1.70
Calmar ratio 3.05
Stability 0.98
Max drawdown -6.785%
Omega ratio 1.43
Sortino ratio 2.80
Skew 0.62
Kurtosis 6.93
Tail ratio 1.32
Daily value at risk -1.367%
Alpha 0.22
Beta -0.01
Worst drawdown periods Net drawdown in % Peak date Valley date Recovery date Duration
0 6.79 2024-09-09 2024-09-25 2024-11-06 43
1 5.72 2021-05-25 2021-08-31 2021-10-28 113
2 4.68 2021-03-04 2021-03-24 2021-04-29 41
3 4.67 2022-01-03 2022-01-24 2022-01-28 20
4 4.46 2024-07-29 2024-08-13 2024-09-06 30
No description has been provided for this image
In [25]:
""" Notebook Reference 6.0 """

training_pct = 0.8
iso_format = "%Y-%m-%d"

dt_start = dt.datetime.strptime(start_date, iso_format)
dt_end = dt.datetime.strptime(end_date, iso_format)
dt_live = (dt_start + (dt_end - dt_start) * training_pct).date()
dt_live = dt.datetime.strftime(dt_live, iso_format)

EG_reverse_live = BivariateEngleGranger()

EG_reverse_live.initialise_single_procedure(ticker_b, ticker_a, start_date, end_date, benchmark=benchmark,
                                            live_start_date=dt_live)

EG_reverse_live.run_single_procedure()
Price regression summary (training dataset)
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist)
0 MA Constant -0.072170 0.011835 -6.097874 1.540575e-09
1 MA V 1.085424 0.010402 104.349112 0.000000e+00

Timeseries plots
No description has been provided for this image

Cointegrated Augmented Dickey-Fuller test (training dataset)
Regressand Regressor t-statistic Significance Level Critical Value Is Stationary
0 ΔResidual (Lag 1, Residual) -3.942318 1% -3.907571 True
1 ΔResidual (Lag 1, Residual) -3.942318 5% -3.342328 True
2 ΔResidual (Lag 1, Residual) -3.942318 10% -3.048750 True

Error Correction Model fitting (training dataset)
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist) Significant at 5%
0 ΔMA ΔV 1.031159 0.015153 68.04959 0.000000 True
1 ΔMA (Lag 1, Residuals) -0.035081 0.008379 -4.18658 0.000031 True

Error Correction Model reverse fitting (training dataset)
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist) Significant at 5%
0 ΔV ΔMA 0.799541 0.011749 68.049590 0.000000 True
1 ΔV (Lag 1, Residuals) 0.028426 0.007389 3.847302 0.000127 True

Fit to Ornstein-Uhlenbeck Stochastic Differential Equation (training dataset)
Theta: 9.0295

Half-life in years: 0.0768 years
Half-life in working days: 19.3448 days

Equilibrium level μ_e: -0.0006493993650472896
Equilibirum level μ_e can be compared to the AR(1) fitting intercept: -2.2856847827644935e-05

Sum Squared Errors: 0.08668701147939578

Annualised Variance: 0.00034399607729918957
Diffusion in Ornstein-Uhlenbeck SDE (sigma_ou): 0.29971688372263994
Diffusion in equilibrium to dictate entry trade signals (sigma_eq): 0.07052855559176234

Diffusion of sample residuals (note the difference): 0.009366957358786884


Grid search optimisation results for Z (training dataset)
Maximum return as at 2023-12-06 occurs with Z=0.5
Z Total Trades Total Return
0 0.30 22 0.871378
1 0.35 20 0.855440
2 0.40 18 0.871241
3 0.45 15 0.737326
4 0.50 15 0.878736
5 0.55 13 0.755202
6 0.60 11 0.647694
7 0.65 11 0.793047
8 0.70 10 0.778065
9 0.75 10 0.794879
10 0.80 8 0.623814
11 0.85 8 0.651470
12 0.90 7 0.622868
13 0.95 6 0.496464
14 1.00 5 0.441255
15 1.05 4 0.356345
16 1.10 3 0.262346
17 1.15 2 0.182008
18 1.20 2 0.182008
19 1.25 2 0.182008
20 1.30 0 0.000000
21 1.35 0 0.000000
22 1.40 0 0.000000

Backtest plots for optimal Z
No description has been provided for this image

Rolling beta with respect to S&P500 excess returns
No description has been provided for this image

Tearsheet generation
In-sample Out-of-sample All
MA cumulative returns 0.396632 0.304790 0.822312
V cumulative returns 0.378871 0.247023 0.719484
Benchmark cumulative returns 0.406353 0.318596 0.854411
Start date2020-01-03
End date2024-11-27
In-sample months47
Out-of-sample months11
In-sample Out-of-sample All
Annual return 17.45% 13.723% 16.695%
Cumulative returns 87.874% 13.433% 113.111%
Annual volatility 11.311% 10.217% 11.097%
Sharpe ratio 1.48 1.31 1.45
Calmar ratio 2.48 2.05 2.37
Stability 0.98 0.60 0.99
Max drawdown -7.042% -6.706% -7.042%
Omega ratio 1.40 1.35 1.39
Sortino ratio 2.38 1.95 2.29
Skew 0.53 -0.48 0.38
Kurtosis 6.75 9.23 7.17
Tail ratio 1.31 1.45 1.30
Daily value at risk -1.359% -1.234% -1.334%
Alpha 0.18 0.17 0.18
Beta -0.02 -0.09 -0.02
Worst drawdown periods Net drawdown in % Peak date Valley date Recovery date Duration
0 7.04 2020-03-16 2020-03-20 2020-03-25 8
1 6.71 2024-07-29 2024-09-25 2024-11-06 73
2 5.69 2020-03-25 2020-05-18 2020-07-31 93
3 5.37 2021-06-22 2021-08-31 2021-10-28 93
4 4.58 2021-03-04 2021-03-24 2021-04-29 41
No description has been provided for this image
In [26]:
""" Notebook Reference 6.1 """

training_pct_2 = 0.9

dt_start_2 = dt.datetime.strptime(start_date_2, iso_format)
dt_end_2 = dt.datetime.strptime(end_date_2, iso_format)
dt_live_2 = (dt_start_2 + (dt_end_2 - dt_start_2) * training_pct_2).date()
dt_live_2 = dt_live_2 + dt.timedelta(1)  # ensure weekday
dt_live_2 = dt.datetime.strftime(dt_live_2, iso_format)

EG_2_live = BivariateEngleGranger()

EG_2_live.initialise_single_procedure(ticker_2_a, ticker_2_b, start_date_2, end_date_2, benchmark=benchmark,
                                            live_start_date=dt_live_2)

EG_2_live.run_single_procedure()
Price regression summary (training dataset)
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist)
0 NDSN Constant 0.169577 0.018372 9.230152 0.0
1 NDSN ITW 0.939180 0.014429 65.088949 0.0

Timeseries plots
No description has been provided for this image

Cointegrated Augmented Dickey-Fuller test (training dataset)
Regressand Regressor t-statistic Significance Level Critical Value Is Stationary
0 ΔResidual (Lag 1, Residual) -3.188227 1% -3.906343 False
1 ΔResidual (Lag 1, Residual) -3.188227 5% -3.341645 False
2 ΔResidual (Lag 1, Residual) -3.188227 10% -3.048277 True

Error Correction Model fitting (training dataset)
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist) Significant at 5%
0 ΔNDSN ΔITW 0.830481 0.028640 28.996920 0.000000 True
1 ΔNDSN (Lag 1, Residuals) -0.019179 0.005887 -3.257978 0.001156 True

Error Correction Model reverse fitting (training dataset)
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist) Significant at 5%
0 ΔITW ΔNDSN 0.519519 0.017916 28.996920 0.000000 True
1 ΔITW (Lag 1, Residuals) 0.014226 0.004659 3.053613 0.002315 True

Fit to Ornstein-Uhlenbeck Stochastic Differential Equation (training dataset)
Theta: 5.0897

Half-life in years: 0.1362 years
Half-life in working days: 34.3192 days

Equilibrium level μ_e: 0.0017432530159920232
Equilibirum level μ_e can be compared to the AR(1) fitting intercept: 3.4855387743761135e-05

Sum Squared Errors: 0.35113941955030853

Annualised Variance: 0.0013934103950409068
Diffusion in Ornstein-Uhlenbeck SDE (sigma_ou): 0.5985642344520687
Diffusion in equilibrium to dictate entry trade signals (sigma_eq): 0.18760809468764453

Diffusion of sample residuals (note the difference): 0.01778600065823378


Grid search optimisation results for Z (training dataset)
Maximum return as at 2024-06-03 occurs with Z=0.4
Z Total Trades Total Return
0 0.30 14 1.372022
1 0.35 13 1.471466
2 0.40 13 1.760997
3 0.45 10 1.429118
4 0.50 10 1.586998
5 0.55 10 1.627069
6 0.60 9 1.513179
7 0.65 9 1.734533
8 0.70 7 1.298593
9 0.75 7 1.407398
10 0.80 6 1.118309
11 0.85 5 0.954931
12 0.90 5 0.987970
13 0.95 5 1.143826
14 1.00 4 0.859951
15 1.05 1 0.287490
16 1.10 1 0.287490
17 1.15 1 0.287490
18 1.20 1 0.496540
19 1.25 1 0.496540
20 1.30 1 0.496540
21 1.35 1 0.496540
22 1.40 1 0.496540

Backtest plots for optimal Z
No description has been provided for this image

Rolling beta with respect to S&P500 excess returns
No description has been provided for this image

Tearsheet generation
In-sample Out-of-sample All
NDSN cumulative returns 0.459989 0.134140 0.655832
ITW cumulative returns 0.478444 0.164233 0.721253
Benchmark cumulative returns 0.633275 0.135394 0.854411
Start date2020-01-03
End date2024-11-27
In-sample months52
Out-of-sample months5
In-sample Out-of-sample All
Annual return 25.931% 16.035% 24.892%
Cumulative returns 176.1% 7.656% 197.238%
Annual volatility 19.924% 11.34% 19.228%
Sharpe ratio 1.26 1.37 1.25
Calmar ratio 0.83 4.77 0.80
Stability 0.94 0.79 0.95
Max drawdown -31.151% -3.359% -31.151%
Omega ratio 1.34 1.35 1.34
Sortino ratio 2.06 2.45 2.06
Skew 0.87 1.35 0.90
Kurtosis 31.07 5.61 32.41
Tail ratio 1.23 1.30 1.21
Daily value at risk -2.411% -1.367% -2.327%
Alpha 0.26 0.11 0.25
Beta 0.12 0.20 0.12
Worst drawdown periods Net drawdown in % Peak date Valley date Recovery date Duration
0 31.15 2020-01-27 2020-03-16 2020-05-06 73
1 14.20 2020-12-14 2021-05-19 2021-12-16 264
2 8.48 2020-06-04 2020-06-16 2020-07-02 21
3 7.62 2022-06-24 2022-08-29 2022-10-24 87
4 7.40 2023-02-23 2023-05-01 2023-05-23 64
No description has been provided for this image
In [27]:
""" Notebook Reference 6.2 """

training_pct_3 = 0.8

dt_start_3 = dt.datetime.strptime(start_date_3, iso_format)
dt_end_3 = dt.datetime.strptime(end_date_3, iso_format)
dt_live_3 = (dt_start_3 + (dt_end_3 - dt_start_3) * training_pct_3).date()
dt_live_3 = dt.datetime.strftime(dt_live_3, iso_format)

EG_live_3 = BivariateEngleGranger()

EG_live_3.initialise_single_procedure(ticker_3_a, ticker_3_b, start_date_3, end_date_3, benchmark=benchmark,
                                            live_start_date=dt_live_3)

EG_live_3.run_single_procedure()
Price regression summary (training dataset)
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist)
0 CSX Constant -0.017441 0.014391 -1.211934 0.225828
1 CSX UNP 1.080624 0.011969 90.289016 0.000000

Timeseries plots
No description has been provided for this image

Cointegrated Augmented Dickey-Fuller test (training dataset)
Regressand Regressor t-statistic Significance Level Critical Value Is Stationary
0 ΔResidual (Lag 1, Residual) -3.646531 1% -3.907571 False
1 ΔResidual (Lag 1, Residual) -3.646531 5% -3.342328 True
2 ΔResidual (Lag 1, Residual) -3.646531 10% -3.048750 True

Error Correction Model fitting (training dataset)
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist) Significant at 5%
0 ΔCSX ΔUNP 0.851009 0.022113 38.484818 0.000000 True
1 ΔCSX (Lag 1, Residuals) -0.026118 0.007402 -3.528601 0.000437 True

Error Correction Model reverse fitting (training dataset)
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist) Significant at 5%
0 ΔUNP ΔCSX 0.705442 0.018330 38.484818 0.000000 True
1 ΔUNP (Lag 1, Residuals) 0.026339 0.006729 3.913994 0.000097 True

Fit to Ornstein-Uhlenbeck Stochastic Differential Equation (training dataset)
Theta: 7.8486

Half-life in years: 0.0883 years
Half-life in working days: 22.2552 days

Equilibrium level μ_e: 0.0007818878130983756
Equilibirum level μ_e can be compared to the AR(1) fitting intercept: 2.397685844123404e-05

Sum Squared Errors: 0.20726600787140548

Annualised Variance: 0.000822484158219863
Diffusion in Ornstein-Uhlenbeck SDE (sigma_ou): 0.4623725739591276
Diffusion in equilibrium to dictate entry trade signals (sigma_eq): 0.11670248169204087

Diffusion of sample residuals (note the difference): 0.014483901711097261


Grid search optimisation results for Z (training dataset)
Maximum return as at 2023-12-06 occurs with Z=0.35
Z Total Trades Total Return
0 0.30 20 2.130865
1 0.35 20 2.445544
2 0.40 17 2.163963
3 0.45 15 1.958459
4 0.50 13 1.758139
5 0.55 10 1.249244
6 0.60 9 1.186348
7 0.65 8 0.968103
8 0.70 8 1.004119
9 0.75 8 1.086027
10 0.80 6 0.826931
11 0.85 6 0.883036
12 0.90 4 0.588863
13 0.95 4 0.603807
14 1.00 4 0.629231
15 1.05 4 0.666909
16 1.10 4 0.698949
17 1.15 4 0.715592
18 1.20 3 0.542043
19 1.25 2 0.352981
20 1.30 1 0.205846
21 1.35 1 0.205888
22 1.40 1 0.214327

Backtest plots for optimal Z
No description has been provided for this image

Rolling beta with respect to S&P500 excess returns
No description has been provided for this image

Tearsheet generation
In-sample Out-of-sample All
CSX cumulative returns 0.451784 0.102607 0.600747
UNP cumulative returns 0.397278 0.075754 0.503127
Benchmark cumulative returns 0.406353 0.318596 0.854411
Start date2020-01-03
End date2024-11-27
In-sample months47
Out-of-sample months11
In-sample Out-of-sample All
Annual return 37.099% 18.074% 33.063%
Cumulative returns 244.554% 17.685% 305.491%
Annual volatility 17.851% 14.147% 17.173%
Sharpe ratio 1.86 1.25 1.75
Calmar ratio 2.96 2.14 2.64
Stability 0.94 0.73 0.97
Max drawdown -12.526% -8.429% -12.526%
Omega ratio 1.54 1.27 1.48
Sortino ratio 3.79 2.00 3.43
Skew 3.53 0.38 3.22
Kurtosis 31.13 2.77 29.53
Tail ratio 1.28 1.44 1.30
Daily value at risk -2.118% -1.713% -2.045%
Alpha 0.39 0.19 0.34
Beta 0.03 0.01 0.03
Worst drawdown periods Net drawdown in % Peak date Valley date Recovery date Duration
0 12.53 2020-05-26 2020-10-16 2020-10-22 108
1 10.74 2023-03-28 2023-06-30 2023-07-26 87
2 8.43 2024-07-18 2024-09-10 2024-10-10 61
3 7.59 2023-07-28 2023-08-11 2023-09-15 36
4 7.54 2021-03-29 2021-04-22 2021-06-23 63
No description has been provided for this image
In [28]:
""" Notebook Reference A """

# Reverse procedure
EG_2_reverse = BivariateEngleGranger()

EG_2_reverse.initialise_single_procedure(ticker_2_b, ticker_2_a, start_date_2, end_date_2)

EG_2_reverse.run_single_procedure(include_strategy_backtest=False)
Price regression summary 
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist)
0 ITW Constant 0.059630 0.017362 3.434488 0.000613
1 ITW NDSN 0.894338 0.012516 71.458003 0.000000

Timeseries plots
No description has been provided for this image

Cointegrated Augmented Dickey-Fuller test 
Regressand Regressor t-statistic Significance Level Critical Value Is Stationary
0 ΔResidual (Lag 1, Residual) -2.871235 1% -3.905337 False
1 ΔResidual (Lag 1, Residual) -2.871235 5% -3.341086 False
2 ΔResidual (Lag 1, Residual) -2.871235 10% -3.047889 False

Error Correction Model fitting 
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist) Significant at 5%
0 ΔITW ΔNDSN 0.526770 0.016906 31.159211 0.000000 True
1 ΔITW (Lag 1, Residuals) -0.012839 0.004476 -2.868169 0.004199 True

Error Correction Model reverse fitting 
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist) Significant at 5%
0 ΔNDSN ΔITW 0.836297 0.026839 31.159211 0.000000 True
1 ΔNDSN (Lag 1, Residuals) 0.015296 0.005642 2.711016 0.006801 True

Fit to Ornstein-Uhlenbeck Stochastic Differential Equation 
Theta: 4.0217

Half-life in years: 0.1724 years
Half-life in working days: 43.4330 days

Equilibrium level μ_e: 0.006045824874519758
Equilibirum level μ_e can be compared to the AR(1) fitting intercept: 9.571954645833436e-05

Sum Squared Errors: 0.32200586781489704

Annualised Variance: 0.0012778010627575278
Diffusion in Ornstein-Uhlenbeck SDE (sigma_ou): 0.5719895969854134
Diffusion in equilibrium to dictate entry trade signals (sigma_eq): 0.20168328404844763

Diffusion of sample residuals (note the difference): 0.016147244229477498


Grid search optimisation results for Z 
Maximum return occurs with Z=0.8
Z Total Trades Total Return
0 0.30 12 1.027454
1 0.35 11 1.174491
2 0.40 11 1.315646
3 0.45 9 1.174695
4 0.50 9 1.409522
5 0.55 9 1.565439
6 0.60 6 1.274837
7 0.65 6 1.350699
8 0.70 6 1.443080
9 0.75 6 1.595527
10 0.80 6 1.659393
11 0.85 5 1.391715
12 0.90 5 1.536322
13 0.95 4 1.254886
14 1.00 2 0.615963
15 1.05 1 0.352958
16 1.10 0 0.000000
17 1.15 0 0.000000
18 1.20 0 0.000000
19 1.25 0 0.000000
20 1.30 0 0.000000
21 1.35 0 0.000000
22 1.40 0 0.000000

Backtest plots for optimal Z
No description has been provided for this image
In [29]:
""" Notebook Reference B """

# Reverse procedure
EG_3_reverse = BivariateEngleGranger()

EG_3_reverse.initialise_single_procedure(ticker_3_b, ticker_3_a, start_date_3, end_date_3)

EG_3_reverse.run_single_procedure(include_strategy_backtest=False)
Price regression summary 
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist)
0 UNP Constant 0.074419 0.011275 6.600476 6.070744e-11
1 UNP CSX 0.887748 0.008471 104.796748 0.000000e+00

Timeseries plots
No description has been provided for this image

Cointegrated Augmented Dickey-Fuller test 
Regressand Regressor t-statistic Significance Level Critical Value Is Stationary
0 ΔResidual (Lag 1, Residual) -3.958171 1% -3.905337 True
1 ΔResidual (Lag 1, Residual) -3.958171 5% -3.341086 True
2 ΔResidual (Lag 1, Residual) -3.958171 10% -3.047889 True

Error Correction Model fitting 
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist) Significant at 5%
0 ΔUNP ΔCSX 0.690572 0.016600 41.601749 0.000000 True
1 ΔUNP (Lag 1, Residuals) -0.026213 0.006331 -4.140157 0.000037 True

Error Correction Model reverse fitting 
Regressand Regressor Coefficient Standard Error t-statistic p-value (t-dist) Significant at 5%
0 ΔCSX ΔUNP 0.845628 0.020327 41.601749 0.000000 True
1 ΔCSX (Lag 1, Residuals) 0.026151 0.007015 3.727681 0.000202 True

Fit to Ornstein-Uhlenbeck Stochastic Differential Equation 
Theta: 7.1829

Half-life in years: 0.0965 years
Half-life in working days: 24.3179 days

Equilibrium level μ_e: -0.0010107860547276194
Equilibirum level μ_e can be compared to the AR(1) fitting intercept: -2.8404291721322972e-05

Sum Squared Errors: 0.2143081069770612

Annualised Variance: 0.0008504289959407191
Diffusion in Ornstein-Uhlenbeck SDE (sigma_ou): 0.4695473265130407
Diffusion in equilibrium to dictate entry trade signals (sigma_eq): 0.12388375364621934

Diffusion of sample residuals (note the difference): 0.0131730342579215


Grid search optimisation results for Z 
Maximum return occurs with Z=0.55
Z Total Trades Total Return
0 0.30 18 1.610536
1 0.35 17 1.680345
2 0.40 16 1.684594
3 0.45 16 1.999339
4 0.50 15 1.977044
5 0.55 15 2.169895
6 0.60 12 1.665035
7 0.65 9 1.067647
8 0.70 8 1.062838
9 0.75 8 1.146533
10 0.80 8 1.190833
11 0.85 6 0.870547
12 0.90 6 0.899228
13 0.95 3 0.431090
14 1.00 3 0.436525
15 1.05 3 0.459070
16 1.10 2 0.316727
17 1.15 2 0.318598
18 1.20 2 0.329116
19 1.25 2 0.337375
20 1.30 1 0.126249
21 1.35 1 0.126249
22 1.40 0 0.000000

Backtest plots for optimal Z
No description has been provided for this image